diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6d20ef271b..9090e51f05 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -18,7 +18,7 @@ jobs:
image: ghcr.io/elementary/docker:${{ matrix.version }}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Install Dependencies
run: |
apt update
@@ -46,11 +46,11 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Set up QEMU for aarch64 emulation
if: ${{ matrix.arch != 'x86_64' }}
- uses: docker/setup-qemu-action@v2
+ uses: docker/setup-qemu-action@v3
with:
platforms: arm64
@@ -73,7 +73,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Lint
run: io.elementary.vala-lint -d .
diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml
index 7800ff902c..3f5087d51e 100644
--- a/.github/workflows/merge.yml
+++ b/.github/workflows/merge.yml
@@ -17,7 +17,7 @@ jobs:
apt-get install git -y
- name: Clone repository
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
token: ${{ secrets.GIT_USER_TOKEN }}
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index fc7c648857..6d9a340a70 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release')
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: elementary/actions/release@master
env:
GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}"
diff --git a/data/Application.css b/data/Application.css
index 4020d41d60..f607b3d3ea 100644
--- a/data/Application.css
+++ b/data/Application.css
@@ -20,3 +20,52 @@ textview.scrubber {
border: 0;
}
+.fuzzy-popover {
+ padding-top: 0.5rem;
+ padding-bottom: 1rem;
+}
+
+.fuzzy-popover entry {
+ margin-left: 1rem;
+ margin-right: 1rem;
+}
+
+.fuzzy-popover scrolledwindow {
+ margin-top: 1rem;
+}
+
+.fuzzy-list {
+ background-color: transparent;
+}
+
+.fuzzy-item {
+ padding: 0.5rem;
+ margin-left: 10px;
+ margin-right: 10px;
+ background-color: transparent;
+}
+
+.fuzzy-item.preselect-fuzzy,
+.fuzzy-item:hover {
+ border-radius: 0.5rem;
+}
+
+.fuzzy-item:hover {
+ background-color: @theme_unfocused_selected_bg_color;
+}
+
+.fuzzy-item.preselect-fuzzy {
+ background-color: @selected_bg_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;
+}
diff --git a/data/code.metainfo.xml.in b/data/code.metainfo.xml.in
index d4ded035c5..0e3fa26c8e 100644
--- a/data/code.metainfo.xml.in
+++ b/data/code.metainfo.xml.in
@@ -29,10 +29,10 @@
- https://raw.githubusercontent.com/elementary/code/7.1.0/data/screenshot.png
+ https://raw.githubusercontent.com/elementary/code/7.2.0/data/screenshot.png
- https://raw.githubusercontent.com/elementary/code/7.1.0/data/screenshot-dark.png
+ https://raw.githubusercontent.com/elementary/code/7.2.0/data/screenshot-dark.png
@@ -66,6 +66,45 @@
contact_AT_elementary.io
+
+
+ Improvements:
+
+ - When opening a file in Code from the commandline or another app, a line/char position or selection range may be specified
+ - Add a fuzzy-find plugin which finds files in all open projects
+ - Save and restore the state of the terminal pane
+
+ Minor updates:
+
+ - "Find in Folder" now works for all folders and text files, not only ".vala" files
+ - "Follow System Style" is now fully respected
+ - The "--new-tab" commandline option now works
+ - The symbol pane width is now synchronised and saved
+ - Project folders are automatically closed if they are externally renamed, moved or deleted
+ - Fixed temporary backup files persisting under some circumstances
+ - The Show-Replace action has been improved
+ - Updated translations
+
+
+
+ Terminal extension open in current directory
+ Add fuzzy-finder-like way of opening documents within the active project
+ Leave terminal open when all tabs are closed
+ Expose "Go To Line" feature externally
+ Terminal automatically "cd" to project folder in the sidebar
+ Sidebar may show incorrect project structure
+ Searching within a folder should ignore global filters
+ New Document tab label changes when another tab is closed
+ Synchronise and save symbol outline width
+ A backup file remains after closing a document that has trailing spaces
+ System theme change not fully respected if Code already running
+ Highlighted text isn't used with Ctrl-R shortcut
+ "new-tab" command line option not working
+ Text view not refocused after pressing Escape in Search bar
+ Open Folder Button in Welcome View doesn't work
+
+
+
Improvements:
diff --git a/data/io.elementary.code.gschema.xml b/data/io.elementary.code.gschema.xml
index 24085f447f..400fe64e48 100644
--- a/data/io.elementary.code.gschema.xml
+++ b/data/io.elementary.code.gschema.xml
@@ -23,11 +23,6 @@
The saved state of the window.
The saved state of the window.
-
- (-1, -1)
- Window position
- Most recent window position (x, y)
-
(850, 550)
Most recent window size
@@ -53,6 +48,16 @@
Symbol outline visibility
Whether or not the symbol outline is visible
+
+ 160
+ Symbol outline width
+ Width of the symbol outline sidebar
+
+
+ false
+ Terminal visibility
+ Whether or not the terminal pane is visible
+
''
Last opened path
@@ -147,6 +152,11 @@
Remember the last focused document.
Restore the focused document from a previous session when opening Code.
+
+ ''
+ The default build directory's relative path.
+ The directory, relative to the project root, at which to open the terminal pane and where to run build commands by default.
+
false
Request dark Gtk stylesheet variant
diff --git a/meson.build b/meson.build
index 57876f8ce9..76541ff9d8 100644
--- a/meson.build
+++ b/meson.build
@@ -2,7 +2,7 @@ project(
'io.elementary.code',
'vala', 'c',
meson_version: '>= 0.58.0',
- version: '7.1.0'
+ version: '7.2.0'
)
add_project_arguments([
diff --git a/plugins/fuzzy-search/file-item.vala b/plugins/fuzzy-search/file-item.vala
new file mode 100644
index 0000000000..62d5a6e466
--- /dev/null
+++ b/plugins/fuzzy-search/file-item.vala
@@ -0,0 +1,58 @@
+/*
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ * SPDX-FileCopyrightText: 2023 elementary, Inc.
+ *
+ * Authored by: Marvin Ahlgrimm
+ * Colin Kiama
+ */
+
+public class FileItem : Gtk.ListBoxRow {
+ private SearchResult result;
+
+ public string filepath {
+ get {
+ return result.full_path;
+ }
+ }
+ public FileItem (SearchResult res, bool should_distinguish_project = false) {
+ this.get_style_context ().add_class ("fuzzy-item");
+ this.get_style_context ().add_class ("flat");
+
+ result = res;
+ Icon icon;
+ 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 filename_label = new Gtk.Label (Path.get_basename (result.relative_path));
+ filename_label.halign = Gtk.Align.START;
+
+ try {
+ var fi = File.new_for_path (result.full_path);
+ var info = fi.query_info ("standard::*", 0);
+ icon = ContentType.get_icon (info.get_content_type ());
+ } catch (Error e) {
+ icon = ContentType.get_icon ("text/plain");
+ }
+
+ var image = new Gtk.Image.from_gicon (icon, Gtk.IconSize.DND);
+ image.get_style_context ().add_class ("fuzzy-file-icon");
+
+ path_box.add (filename_label);
+ path_box.add (path_label);
+
+ var container_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 1) {
+ valign = Gtk.Align.CENTER
+ };
+
+ container_box.add (image);
+ container_box.add (path_box);
+
+ this.child = container_box;
+ }
+}
diff --git a/plugins/fuzzy-search/fuzzy-finder.vala b/plugins/fuzzy-search/fuzzy-finder.vala
new file mode 100644
index 0000000000..e54dfea182
--- /dev/null
+++ b/plugins/fuzzy-search/fuzzy-finder.vala
@@ -0,0 +1,316 @@
+/*
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ * SPDX-FileCopyrightText: 2023 elementary, Inc.
+ *
+ * Authored by: Marvin Ahlgrimm
+ * Colin Kiama
+ */
+
+const int SEPARATOR_BONUS = 30; // bonus if match occurs after a separator
+const int SEQUENTIAL_BONUS = 40; // bonus for adjacent matches
+const int CURRENT_PROJECT_PRIORITY_BONUS = 40; // Bonus if search result is for current project
+const int CAMEL_BONUS = 30; // bonus if match is uppercase and prev is lower
+const int FIRST_LETTER_BONUS = 15; // bonus if the first letter is matched
+const int LEADING_LETTER_PENALTY = -5; // penalty applied for every letter in str before the first match
+const int MAX_LEADING_LETTER_PENALTY = -15; // maximum penalty for leading letters
+const int UNMATCHED_LETTER_PENALTY = -1;
+
+public class Scratch.Services.FuzzyFinder {
+ private class RecursiveFinder {
+ int recursion_limit;
+ int max_matches;
+ int recursion_count;
+
+ public RecursiveFinder (int limit = 10, int mx_mtchs = 40) {
+ recursion_limit = limit;
+ max_matches = mx_mtchs;
+ recursion_count = 0;
+ }
+
+ private bool limit_reached () {
+ return recursion_count >= recursion_limit;
+ }
+
+ public SearchResult fuzzy_match_recursive (string pattern, uint dir_length, string str, GLib.Cancellable cancellable) {
+ var matches = new Gee.ArrayList ();
+ return fuzzy_match_recursive_internal (pattern, dir_length, str, 0, 0, 0, cancellable, matches);
+ }
+
+ private SearchResult fuzzy_match_recursive_internal (string pattern,
+ uint dir_length,
+ string str,
+ int pattern_current_index,
+ int str_current_index,
+ int next_match,
+ GLib.Cancellable cancellable,
+ Gee.ArrayList matches,
+ Gee.ArrayList? src_matches = null) {
+ var out_score = 0;
+ // Recursion params
+ bool recursive_match = false;
+ var best_recursive_matches = new Gee.ArrayList ();
+ var best_recursive_score = 0;
+ // Loop through pattern and str looking for a match.
+ bool first_match = true;
+ bool allowed_separators = true;
+ recursion_count++;
+ if (cancellable.is_cancelled () || limit_reached ()) {
+ return new SearchResult (false, out_score);
+ }
+
+ // Return if we reached ends of strings.
+ if (pattern_current_index == pattern.length || str_current_index == str.length) {
+ return new SearchResult (false, out_score);
+ }
+
+ while (pattern_current_index < pattern.length && str_current_index < str.length) {
+ if (cancellable.is_cancelled ()) {
+ return new SearchResult (false, out_score);
+ }
+
+ var lower_case_char = pattern.get_char (pattern_current_index).tolower ();
+ var lower_case_str_char = str.get_char (str_current_index).tolower ();
+
+
+ // Match found.
+ if (lower_case_char == lower_case_str_char) {
+ // specified directory must match at start
+ if (dir_length > 0 && pattern_current_index == 0) {
+ if ( str_current_index > 0 && str.get_char (str_current_index - 1).tolower () != Path.DIR_SEPARATOR) {
+ break;
+ }
+ }
+
+ allowed_separators = false;
+ if (next_match >= max_matches) {
+ return new SearchResult (false, out_score);
+ }
+
+ if (first_match && src_matches != null) {
+ matches.clear ();
+ matches.insert_all (0, src_matches);
+ first_match = false;
+ }
+
+ var recursive_matches = new Gee.ArrayList ();
+ var recursive_result_search = fuzzy_match_recursive_internal (
+ pattern,
+ dir_length,
+ str,
+ pattern_current_index,
+ str_current_index + 1,
+ next_match,
+ cancellable,
+ recursive_matches,
+ matches
+ );
+
+ if (recursive_result_search.found) {
+ // Pick best recursive score.
+ if (!recursive_match || recursive_result_search.score > best_recursive_score) {
+ best_recursive_matches.clear ();
+ best_recursive_matches.insert_all (0, recursive_matches);
+ best_recursive_score = recursive_result_search.score;
+ }
+ recursive_match = true;
+ }
+
+ if (matches.size <= next_match) {
+ matches.add (str_current_index);
+ }
+
+ ++next_match;
+ ++pattern_current_index;
+ } else if (pattern_current_index > 0 && pattern_current_index <= dir_length) { // specified dir must match sequentially
+ break;
+ } else if (lower_case_str_char == Path.DIR_SEPARATOR && !allowed_separators) { // no splitting across directories
+ break;
+ }
+
+ ++str_current_index;
+ }
+
+ var matched = pattern_current_index == pattern.length;
+ if (matched) {
+ out_score = 100;
+
+ // Apply leading letter penalty
+ var penalty = LEADING_LETTER_PENALTY * matches[0];
+ penalty =
+ penalty < MAX_LEADING_LETTER_PENALTY
+ ? MAX_LEADING_LETTER_PENALTY
+ : penalty;
+ out_score += penalty;
+
+ //Apply unmatched penalty
+ var unmatched = str.length - next_match;
+ out_score += UNMATCHED_LETTER_PENALTY * unmatched;
+
+ // Apply ordering bonuses
+ for (var i = 0; i < next_match; i++) {
+ if (cancellable.is_cancelled ()) {
+ return new SearchResult (false, out_score);
+ }
+
+ var current_index = matches[i];
+
+ if (i > 0) {
+ var previous_index = matches[i - 1];
+
+ if (current_index == previous_index + 1) {
+ out_score += SEQUENTIAL_BONUS;
+ }
+ }
+
+ // Check for bonuses based on neighbor character value.
+ if (current_index > 0) {
+ // Camel case
+ var neighbor = str[current_index - 1];
+ var curr = str[current_index];
+ if (neighbor != neighbor.toupper () && curr != curr.tolower ()) {
+ out_score += CAMEL_BONUS;
+ }
+
+ bool is_neighbour_separator = neighbor == '_' || neighbor == ' ';
+ if (is_neighbour_separator) {
+ out_score += SEPARATOR_BONUS;
+ }
+ } else {
+ // First letter
+ out_score += FIRST_LETTER_BONUS;
+ }
+ }
+
+ // Return best result
+ if (out_score <= 0) {
+ return new SearchResult (false, out_score);
+ } else if (recursive_match && (!matched || best_recursive_score > out_score)) {
+ // Recursive score is better than "this"
+ matches.insert_all (0, best_recursive_matches);
+ out_score = best_recursive_score;
+ return new SearchResult (true, out_score);
+ } else if (matched) {
+ // "this" score is better than recursive
+ return new SearchResult (true, out_score);
+ } else {
+ return new SearchResult (false, out_score);
+ }
+ }
+ return new SearchResult (false, out_score);
+ }
+ }
+
+ int recursion_limit;
+ int max_matches;
+ Gee.HashMap project_paths;
+
+ public FuzzyFinder (Gee.HashMap pps, int limit = 10, int mx_mtchs = 256) {
+ max_matches = mx_mtchs;
+ recursion_limit = limit;
+ project_paths = pps;
+ }
+
+ public async Gee.ArrayList fuzzy_find_async (string search_str, uint dir_length,
+ string current_project,
+ GLib.Cancellable cancellable) {
+ var results = new Gee.ArrayList ();
+
+ SourceFunc callback = fuzzy_find_async.callback;
+ new Thread ("fuzzy-find", () => {
+ results = fuzzy_find (search_str, dir_length, current_project, cancellable);
+ Idle.add ((owned) callback);
+ });
+
+ yield;
+ return results;
+ }
+
+ public Gee.ArrayList fuzzy_find (string search_str, uint dir_length,
+ string current_project,
+ GLib.Cancellable cancellable) {
+ var results = new Gee.ArrayList ();
+ var projects = project_paths.values.to_array ();
+
+ for (int i = 0; i < projects.length; i++) {
+ if (cancellable.is_cancelled ()) {
+ if (results.size <= 20) {
+ return results;
+ }
+
+ return (Gee.ArrayList) results.slice (0, 20);
+ }
+
+ var project = projects[i];
+ var iter = project.relative_file_paths.iterator ();
+
+ while (iter.next () && !cancellable.is_cancelled ()) {
+ var path = iter.get ();
+ SearchResult path_search_result;
+ SearchResult filename_search_result;
+
+ // If there is more than one project prepend the project name
+ // to the front of the path
+ // This helps to search for specific files only in one project, e.g.
+ // "code/fuzfind" will probably only return fuzzy_finder.vala from this project
+ // even if their is a "fuzzy_finder" file in another project
+ var project_name = "";
+
+ project_name = project_paths.size > 1 ? Path.get_basename (project.root_path) : "";
+ if (dir_length > 0 || project_paths.size == 1) {
+ path_search_result = fuzzy_match (search_str, dir_length, path, cancellable);
+ } else {
+ path_search_result = fuzzy_match (search_str, dir_length, @"$project_name/$path", cancellable);
+ }
+
+ if (dir_length == 0) {
+ var filename = Path.get_basename (path);
+ filename_search_result = fuzzy_match (search_str, dir_length, filename, cancellable);
+ } else {
+ filename_search_result = new SearchResult (false, 0);
+ }
+
+ var root_path = project.root_path;
+
+ if (filename_search_result.found) {
+ filename_search_result.relative_path = path;
+ filename_search_result.full_path = @"$root_path/$path";
+ filename_search_result.project = project_name;
+ filename_search_result.score += project.root_path == current_project
+ ? CURRENT_PROJECT_PRIORITY_BONUS
+ : 0;
+
+ results.add (filename_search_result);
+ } else if (path_search_result.found) {
+ path_search_result.relative_path = path;
+ path_search_result.full_path = @"$root_path/$path";
+ path_search_result.project = project_name;
+ path_search_result.score = (int) (path_search_result.score * 0.2) +
+ (project.root_path == current_project
+ ? CURRENT_PROJECT_PRIORITY_BONUS
+ : 0);
+
+ results.add (path_search_result);
+ }
+ }
+
+ if (cancellable.is_cancelled ()) {
+ return results;
+ }
+ }
+
+ results.sort ((a, b) => {
+ return b.score - a.score;
+ });
+
+ if (results.size <= 20) {
+ return results;
+ }
+
+ return (Gee.ArrayList) results.slice (0, 20);
+ }
+
+ private SearchResult fuzzy_match (string pattern, uint dir_length, string str, GLib.Cancellable cancellable) {
+ var finder = new RecursiveFinder (recursion_limit, max_matches);
+ return finder.fuzzy_match_recursive (pattern, dir_length, str, cancellable);
+ }
+}
diff --git a/plugins/fuzzy-search/fuzzy-search-indexer.vala b/plugins/fuzzy-search/fuzzy-search-indexer.vala
new file mode 100644
index 0000000000..4c02bd3443
--- /dev/null
+++ b/plugins/fuzzy-search/fuzzy-search-indexer.vala
@@ -0,0 +1,315 @@
+/*
+* SPDX-License-Identifier: GPL-3.0-or-later
+* SPDX-FileCopyrightText: 2023 elementary, Inc.
+*
+* Authored by: Colin Kiama
+*/
+const long SECONDS_IN_MICROSECONDS = 1000000; // 1 Million microseconds = 1 second;
+
+public enum IndexerMessageType {
+ INITIAL,
+ PROJECT_UPDATE
+}
+
+public enum IndexerStatus {
+ INITIALISING,
+ INITIAL_PROCESSING,
+ IDLE,
+ PROCESSING
+}
+
+public enum ProjectUpdateType {
+ ADDED,
+ REMOVED,
+ FILE_CREATED,
+ DIRECTORY_CREATED,
+ FILE_DELETED
+}
+
+public interface IndexerMessage : GLib.Object {
+ public abstract IndexerMessageType message_type { get; construct; }
+}
+
+public class InitialIndexRequest : GLib.Object, IndexerMessage {
+ public IndexerMessageType message_type { get; construct; }
+ public string project_path { get; construct; }
+
+ public InitialIndexRequest (string project_path) {
+ Object (
+ message_type: IndexerMessageType.INITIAL,
+ project_path: project_path
+ );
+ }
+}
+
+public class ProjectUpdate : GLib.Object, IndexerMessage {
+ public IndexerMessageType message_type { get; construct; }
+ public ProjectUpdateType update_type { get; construct; }
+ public string source_path { get; construct; }
+ public string? destination_path { get; construct; }
+ public string? project_path { get; construct; }
+
+ public ProjectUpdate (ProjectUpdateType update_type, string source_path, string? destination_path = null) {
+ Object (
+ message_type: IndexerMessageType.PROJECT_UPDATE,
+ update_type: update_type,
+ source_path: source_path,
+ destination_path: destination_path
+ );
+ }
+}
+
+public class Scratch.Services.FuzzySearchIndexer : GLib.Object {
+ public Gee.HashMap project_paths { get; private set; }
+
+ private Gee.ArrayList initial_indexing_queue;
+ private GLib.Settings folder_settings;
+ private GLib.Cancellable cancellable;
+ private Gee.ConcurrentList processing_queue;
+ private IndexerStatus status;
+
+ public FuzzySearchIndexer (GLib.Cancellable cancellable) {
+ this.cancellable = cancellable;
+ status = IndexerStatus.INITIALISING;
+ initial_indexing_queue = new Gee.ArrayList ();
+ processing_queue = new Gee.ConcurrentList ();
+ project_paths = new Gee.HashMap ();
+
+ folder_settings = new GLib.Settings ("io.elementary.code.folder-manager");
+ folder_settings.changed["opened-folders"].connect (handle_opened_projects_change);
+ }
+
+ public void handle_folder_item_change (GLib.File source, GLib.File? dest, GLib.FileMonitorEvent event) {
+ switch (event) {
+ case GLib.FileMonitorEvent.CREATED:
+ string path = source.get_path ();
+ bool is_directory = FileUtils.test (path, GLib.FileTest.IS_DIR);
+
+ var project_update = new ProjectUpdate (
+ is_directory ? ProjectUpdateType.DIRECTORY_CREATED : ProjectUpdateType.FILE_CREATED,
+ path
+ );
+
+ processing_queue.add (project_update);
+ break;
+ case GLib.FileMonitorEvent.DELETED:
+ string path = source.get_path ();
+
+ var project_update = new ProjectUpdate (ProjectUpdateType.FILE_DELETED, path);
+ processing_queue.add (project_update);
+ break;
+ default:
+ break;
+ }
+ }
+
+ public async void start_async () {
+ string[] initial_projects = folder_settings.get_strv ("opened-folders");
+ if (initial_projects != null) {
+ foreach (unowned string path in initial_projects) {
+ initial_indexing_queue.add (new InitialIndexRequest (path));
+ }
+ }
+
+ new Thread (null, () => {
+ while (cancellable.is_cancelled () == false) {
+ switch (status) {
+ case IndexerStatus.INITIALISING:
+ if (initial_indexing_queue.size < 1 ) {
+ status = IndexerStatus.IDLE;
+ debug ("Find Project Files: Indexer is now idle!\n");
+ break;
+ }
+
+ if (initial_indexing_queue.size > 0) {
+ process_initial_indexing_requests_async.begin (
+ initial_indexing_queue,
+ project_paths,
+ (obj, res) => {
+ process_initial_indexing_requests_async.end (res);
+ status = IndexerStatus.IDLE;
+ });
+
+ status = IndexerStatus.INITIAL_PROCESSING;
+ debug ("Find Project Files: Indexer is now doing initial processing!");
+ }
+
+ break;
+ // Indexer initialization is complete, now waiting for incoming messages to process.
+ case IndexerStatus.IDLE:
+ if (processing_queue.size > 0) {
+ var first_item = processing_queue.get (0);
+ process_next_message_async.begin (first_item, (obj, res) => {
+ process_next_message_async.end (res);
+ processing_queue.remove (first_item);
+ status = IndexerStatus.IDLE;
+ debug ("Find Project Files: Indexer is now idle!");
+ });
+
+ status = IndexerStatus.PROCESSING;
+ debug ("Find Project Files: Indexer now processing!");
+ }
+ break;
+ case IndexerStatus.INITIAL_PROCESSING:
+ case IndexerStatus.PROCESSING:
+ break;
+ default:
+ break;
+ }
+
+ Thread.usleep (1 * SECONDS_IN_MICROSECONDS);
+ }
+
+ folder_settings.changed["opened-folders"].disconnect (handle_opened_projects_change);
+ Idle.add (start_async.callback);
+ });
+
+ yield;
+ }
+
+ private async void process_next_message_async (IndexerMessage message) {
+ switch (message.message_type) {
+ case IndexerMessageType.PROJECT_UPDATE:
+ process_project_update_async.begin ((ProjectUpdate) message, (obj, res) => {
+ process_project_update_async.end (res);
+ });
+
+ break;
+ default:
+ break;
+ }
+ }
+
+ private async void process_project_update_async (ProjectUpdate message) {
+ switch (message.update_type) {
+ case ProjectUpdateType.ADDED:
+ add_project_async.begin (message, (obj, res) => {
+ add_project_async.end (res);
+ debug ("Find Project Files: Added project: %s", message.source_path);
+ });
+
+ break;
+ case ProjectUpdateType.REMOVED:
+ remove_project (message);
+ debug ("Find Project Files: Removed project: %s", message.source_path);
+ break;
+ case ProjectUpdateType.FILE_CREATED:
+ add_file (message);
+ debug ("Find Project Files: Added file: %s", message.source_path);
+
+ break;
+ case ProjectUpdateType.DIRECTORY_CREATED:
+ add_directory_async.begin (message, (obj, res) => {
+ add_directory_async.end (res);
+ debug ("Find Project Files: Added directory: %s", message.source_path);
+ });
+
+ break;
+ case ProjectUpdateType.FILE_DELETED:
+ remove_file (message);
+ debug ("Find Project Files: Deleted directory: %s", message.source_path);
+ break;
+ }
+ }
+
+ private void remove_file (ProjectUpdate message) {
+ string path = message.source_path;
+ string project_key = get_project_path_of_file (path);
+ if (project_key == null) {
+ return;
+ }
+
+ Services.SearchProject project_search = project_paths[project_key];
+ project_search.remove_file (path, this.cancellable);
+ processing_queue.remove (message);
+ }
+
+ private void add_file (ProjectUpdate message) {
+ string path = message.source_path;
+ string project_key = get_project_path_of_file (path);
+ if (project_key == null) {
+ return;
+ }
+
+ Services.SearchProject project_search = project_paths[project_key];
+ project_search.add_file (path, this.cancellable);
+ processing_queue.remove (message);
+ }
+
+ private async void add_directory_async (ProjectUpdate message) {
+ string path = message.source_path;
+ string project_key = get_project_path_of_file (path);
+ if (project_key == null) {
+ return;
+ }
+
+ Services.SearchProject project_search = project_paths[project_key];
+ project_search.add_directory_async.begin (path, this.cancellable, (obj, res) => {
+ project_search.add_directory_async.end (res);
+ processing_queue.remove (message);
+ });
+ }
+
+ private async void add_project_async (ProjectUpdate message) {
+ string path = message.source_path;
+ var monitor = Services.GitManager.get_monitored_repository (path);
+ var project_search = new Services.SearchProject (path, monitor);
+ project_paths[path] = project_search;
+
+ project_search.parse_async.begin (path, this.cancellable, (obj, res) => {
+ project_search.parse_async.end (res);
+ processing_queue.remove (message);
+ });
+ }
+
+ private void remove_project (ProjectUpdate message) {
+ string path = message.source_path;
+ project_paths.unset (path);
+ }
+
+ private void handle_opened_projects_change () {
+ string[] opened_projects_array = folder_settings.get_strv ("opened-folders");
+ var opened_projects = new Gee.ArrayList.wrap (opened_projects_array);
+ // Handle project additions
+ foreach (string project in opened_projects) {
+ if (project_paths.keys.contains (project) == false) {
+ processing_queue.add (new ProjectUpdate (ProjectUpdateType.ADDED, project));
+ }
+ }
+
+ // Handle project removals
+ foreach (string project in project_paths.keys) {
+ if (opened_projects.contains (project) == false) {
+ processing_queue.add ( new ProjectUpdate (ProjectUpdateType.REMOVED, project));
+ }
+ }
+ }
+
+ private async void process_initial_indexing_requests_async (
+ Gee.ArrayList request_queue,
+ Gee.HashMap project_paths) {
+ for (int i = 0; i < request_queue.size; i++) {
+ var request = request_queue[i];
+ var monitor = Services.GitManager.get_monitored_repository (request.project_path);
+ var project_search = new Services.SearchProject (request.project_path, monitor);
+
+ project_paths[request.project_path] = project_search;
+ project_search.parse_async.begin (request.project_path, cancellable, (obj, res) => {
+ project_search.parse_async.end (res);
+ request_queue.remove (request);
+ });
+ }
+ }
+
+ private string? get_project_path_of_file (string file_path) {
+ var iter = project_paths.keys.iterator ();
+ while (iter.next ()) {
+ string project_path = iter.get ();
+ if (file_path.has_prefix (project_path)) {
+ return project_path;
+ }
+ }
+
+ return null;
+ }
+}
diff --git a/plugins/fuzzy-search/fuzzy-search-popover.vala b/plugins/fuzzy-search/fuzzy-search-popover.vala
new file mode 100644
index 0000000000..a6e5f8d533
--- /dev/null
+++ b/plugins/fuzzy-search/fuzzy-search-popover.vala
@@ -0,0 +1,298 @@
+/*
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ * SPDX-FileCopyrightText: 2023 elementary, Inc.
+ *
+ * Authored by: Marvin Ahlgrimm
+ * Colin Kiama
+ */
+
+public class Scratch.FuzzySearchPopover : Gtk.Popover {
+ 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;
+ public Scratch.MainWindow current_window { get; construct; }
+ public bool sidebar_is_visible { get; set; }
+
+ public signal void open_file (string filepath);
+ public signal void close_search ();
+
+ public FuzzySearchPopover (Scratch.Services.FuzzySearchIndexer search_indexer, Scratch.MainWindow window) {
+ Object (
+ modal: true,
+ relative_to: window.document_view,
+ width_request: 500,
+ current_window: window
+ );
+
+ int height;
+ current_window.get_size (null, out height);
+ window_height = height;
+
+ fuzzy_finder = new Services.FuzzyFinder (search_indexer.project_paths);
+ indexer = search_indexer;
+ items = new Gee.ArrayList ();
+ cancellables = new Gee.LinkedList ();
+
+ // Limit the shown results if the window height is too small
+ if (window_height > 400) {
+ max_items = 5;
+ } else {
+ max_items = 3;
+ }
+
+ scrolled.set_max_content_height (45 /* height */ * max_items);
+ }
+
+ 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;
+ }
+ }
+ }
+
+ construct {
+ pointing_to = { 0, 32, 1, 1 };
+ this.get_style_context ().add_class ("fuzzy-popover");
+
+ title_label = new Gtk.Label (_("Find project files"));
+ title_label.halign = Gtk.Align.START;
+ title_label.get_style_context ().add_class ("h4");
+
+ search_term_entry = new Gtk.SearchEntry ();
+ search_term_entry.halign = Gtk.Align.FILL;
+ search_term_entry.hexpand = true;
+
+ search_result_container = new Gtk.ListBox () {
+ selection_mode = Gtk.SelectionMode.NONE,
+ activate_on_single_click = true,
+ can_focus = false
+ };
+
+ search_result_container.get_style_context ().add_class ("fuzzy-list");
+
+ 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,
+ get_current_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 ();
+ }
+ });
+
+ var entry_layout = new Gtk.Box (Gtk.Orientation.VERTICAL, 0);
+ entry_layout.valign = Gtk.Align.START;
+
+ entry_layout.add (title_label);
+ entry_layout.add (search_term_entry);
+ search_term_entry.valign = Gtk.Align.START;
+
+ scrolled = new Gtk.ScrolledWindow (null, null) {
+ propagate_natural_height = true,
+ hexpand = true,
+ };
+
+ scrolled.add (search_result_container);
+
+ var box = new Gtk.Box (Gtk.Orientation.VERTICAL, 0);
+ box.pack_start (entry_layout, false, false);
+ box.pack_end (scrolled, true, true);
+ box.show_all ();
+
+ scrolled.hide ();
+ this.add (box);
+ }
+
+ 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/fuzzy-search/fuzzy-search-project.vala b/plugins/fuzzy-search/fuzzy-search-project.vala
new file mode 100644
index 0000000000..f88b005361
--- /dev/null
+++ b/plugins/fuzzy-search/fuzzy-search-project.vala
@@ -0,0 +1,149 @@
+/*
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ * SPDX-FileCopyrightText: 2023 elementary, Inc.
+ *
+ * Authored by: Marvin Ahlgrimm
+ * Authored by: Colin Kiama
+ */
+
+public class Scratch.Services.SearchProject {
+ public string root_path { get; private set; }
+ public Gee.HashSet relative_file_paths { get; private set; }
+
+ private MonitoredRepository? monitored_repo;
+
+ public SearchProject (string root, MonitoredRepository? repo) {
+ root_path = root;
+ monitored_repo = repo;
+ relative_file_paths = new Gee.HashSet ();
+ }
+
+ public async void parse_async (string path, GLib.Cancellable cancellable) {
+ new Thread (null, () => {
+ parse_async_internal.begin (path, cancellable, (obj, res) => {
+ parse_async_internal.end (res);
+ });
+
+ Idle.add (parse_async.callback);
+ });
+
+ yield;
+ }
+
+ public void remove_file (string path, GLib.Cancellable cancellable) {
+ if (cancellable.is_cancelled ()) {
+ return;
+ }
+
+ string subpath = path.replace (root_path, "");
+ string deleted_path = subpath.substring (1, subpath.length - 1);
+
+ // Remove File
+ if (relative_file_paths.contains (deleted_path)) {
+ relative_file_paths.remove (deleted_path);
+ return;
+ }
+
+ Gee.Iterator iter = relative_file_paths.iterator ();
+
+ // Remove directory
+ while (iter.next ()) {
+ var relative_path = iter.get ();
+ if (relative_path.has_prefix (deleted_path)) {
+ iter.remove ();
+ }
+ }
+ }
+
+ public void add_file (string path, GLib.Cancellable cancellable) {
+ if (cancellable.is_cancelled ()) {
+ return;
+ }
+
+ try {
+ // Don't use paths which are ignored from .gitignore
+ if (monitored_repo != null && monitored_repo.path_is_ignored (path)) {
+ return;
+ }
+ } catch (Error e) {
+ warning ("An error occurred while checking if item '%s' is git-ignored: %s", path, e.message);
+ }
+
+ string subpath = path.replace (root_path, "");
+ relative_file_paths.add (subpath.substring (1, subpath.length - 1));
+ }
+
+ public async void add_directory_async (string path, GLib.Cancellable cancellable) {
+ parse_async_internal.begin (path, cancellable, (obj, res) => {
+ parse_async_internal.end (res);
+ });
+ }
+
+ private async void parse_async_internal (string path, GLib.Cancellable cancellable) {
+ if (cancellable.is_cancelled ()) {
+ return;
+ }
+
+ try {
+ // Ignore dot-prefixed directories
+ string path_basename = Path.get_basename (path);
+ if (FileUtils.test (path, GLib.FileTest.IS_DIR) && path_basename.has_prefix (".")) {
+ return;
+ }
+
+ try {
+ // Don't use paths which are ignored from .gitignore
+ if (monitored_repo != null && monitored_repo.path_is_ignored (path)) {
+ return;
+ }
+ } catch (Error e) {
+ warning ("An error occurred while checking if item '%s' is git-ignored: %s", path, e.message);
+ }
+
+ var dir = Dir.open (path);
+ var name = dir.read_name ();
+
+ while (name != null) {
+ if (cancellable.is_cancelled ()) {
+ return;
+ }
+
+ var new_search_path = "";
+ if (path.has_suffix (GLib.Path.DIR_SEPARATOR_S)) {
+ new_search_path = path.substring (0, path.length - 1);
+ } else {
+ new_search_path = path;
+ }
+
+ parse_async_internal.begin (
+ new_search_path + GLib.Path.DIR_SEPARATOR_S + name,
+ cancellable,
+ (obj, res) => {
+ parse_async_internal.end (res);
+ });
+
+ name = dir.read_name ();
+ }
+ } catch (FileError e) {
+ // This adds branch is reached when a non-directory was reached, i.e. is a file
+ // If a file was reached, add it's relative path (starting after the project root path)
+ // to the list.
+
+ // Relative paths are used because the longer the path is the less accurate are the results
+ if (check_if_valid_path_to_add (path)) {
+ string subpath = path.replace (root_path, "");
+ relative_file_paths.add (subpath.substring (1, subpath.length - 1));
+ }
+ }
+ }
+
+ private bool check_if_valid_path_to_add (string path) {
+ try {
+ File file = File.new_for_path (path);
+ var file_info = file.query_info ("standard::*", 0);
+ return Utils.check_if_valid_text_file (path, file_info);
+ } catch (Error e) {
+ return false;
+ }
+ }
+}
diff --git a/plugins/fuzzy-search/fuzzy-search.plugin b/plugins/fuzzy-search/fuzzy-search.plugin
new file mode 100644
index 0000000000..57b3e4f42e
--- /dev/null
+++ b/plugins/fuzzy-search/fuzzy-search.plugin
@@ -0,0 +1,9 @@
+[Plugin]
+Module=fuzzy-search
+Loader=C
+IAge=1
+Name=Find Project Files
+Description=Fuzzy search for files in all open projects (Show using ALT + F)
+Icon=system-search
+Authors=Marvin Ahlgrimm;Colin Kiama
+Copyright=Copyright © 2021 Marvin Ahlgrimm
diff --git a/plugins/fuzzy-search/fuzzy-search.vala b/plugins/fuzzy-search/fuzzy-search.vala
new file mode 100644
index 0000000000..ea07cd4e52
--- /dev/null
+++ b/plugins/fuzzy-search/fuzzy-search.vala
@@ -0,0 +1,121 @@
+/*
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ * SPDX-FileCopyrightText: 2023 elementary, Inc.
+ *
+ * Authored by: Marvin Ahlgrimm
+ */
+
+
+public class Scratch.Plugins.FuzzySearch: Peas.ExtensionBase, Peas.Activatable {
+ public Object object { owned get; construct; }
+ private const uint ACCEL_KEY = Gdk.Key.F;
+ private const Gdk.ModifierType ACCEL_MODTYPE = Gdk.ModifierType.MOD1_MASK;
+
+ private Scratch.Services.FuzzySearchIndexer indexer;
+ private MainWindow window = null;
+ private Scratch.Services.Interface plugins;
+ private Gtk.EventControllerKey key_controller;
+ private Gtk.MenuItem fuzzy_menuitem;
+ private GLib.Cancellable cancellable;
+
+ public void update_state () {
+
+ }
+
+ public void activate () {
+ plugins = (Scratch.Services.Interface) object;
+
+ plugins.hook_window.connect ((w) => {
+ if (window != null) {
+ return;
+ }
+
+ cancellable = new GLib.Cancellable ();
+ indexer = new Scratch.Services.FuzzySearchIndexer (cancellable);
+
+ indexer.start_async.begin ((obj, res) => {
+ indexer.start_async.end (res);
+ });
+
+ window = w;
+ key_controller = new Gtk.EventControllerKey (window) {
+ propagation_phase = BUBBLE
+ };
+
+ key_controller.key_pressed.connect (on_window_key_press_event);
+
+ fuzzy_menuitem = new Gtk.MenuItem.with_label (_("Find Project Files"));
+ var child = ((Gtk.Bin)fuzzy_menuitem).get_child ();
+ if (child is Gtk.AccelLabel) {
+ ((Gtk.AccelLabel)child).set_accel (ACCEL_KEY, ACCEL_MODTYPE);
+ }
+
+ fuzzy_menuitem.activate.connect (fuzzy_find);
+ fuzzy_menuitem.show ();
+ window.sidebar.project_menu.append (fuzzy_menuitem);
+ });
+
+ plugins.hook_folder_item_change.connect ((src, dest, event) => {
+ if (indexer == null) {
+ return;
+ }
+
+ indexer.handle_folder_item_change (src, dest, event);
+ });
+ }
+
+ bool on_window_key_press_event (uint keyval, uint keycode, Gdk.ModifierType state) {
+ /* f shows fuzzy search dialog */
+ switch (Gdk.keyval_to_upper (keyval)) {
+ case ACCEL_KEY:
+ if (state == ACCEL_MODTYPE) {
+ fuzzy_find ();
+ return true;
+ }
+
+ break;
+ default:
+ return false;
+ }
+
+ return false;
+ }
+
+ private void fuzzy_find () {
+ var settings = new GLib.Settings ("io.elementary.code.folder-manager");
+
+ string[] opened_folders = settings.get_strv ("opened-folders");
+ if (opened_folders == null || opened_folders.length < 1) {
+ return;
+ }
+
+ var popover = new Scratch.FuzzySearchPopover (indexer, window);
+ popover.open_file.connect ((filepath) => {
+ var file = new Scratch.FolderManager.File (filepath);
+ var doc = new Scratch.Services.Document (window.actions, file.file);
+
+ window.open_document (doc);
+ popover.popdown ();
+ });
+
+ popover.close_search.connect (() => popover.popdown ());
+ popover.popup ();
+ }
+
+ public void deactivate () {
+ key_controller.key_pressed.disconnect (on_window_key_press_event);
+ window.sidebar.project_menu.remove (fuzzy_menuitem);
+ if (cancellable != null) {
+ cancellable.cancel ();
+ }
+ }
+}
+
+[ModuleInit]
+public void peas_register_types (GLib.TypeModule module) {
+ var objmodule = module as Peas.ObjectModule;
+ objmodule.register_extension_type (
+ typeof (Peas.Activatable),
+ typeof (Scratch.Plugins.FuzzySearch)
+ );
+}
diff --git a/plugins/fuzzy-search/meson.build b/plugins/fuzzy-search/meson.build
new file mode 100644
index 0000000000..5a717fcd1f
--- /dev/null
+++ b/plugins/fuzzy-search/meson.build
@@ -0,0 +1,38 @@
+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',
+]
+
+module_deps = [
+ codecore_dep,
+]
+
+shared_module(
+ module_name,
+ module_files,
+ dependencies: module_deps,
+ install: true,
+ install_dir: join_paths(pluginsdir, module_name),
+)
+
+custom_target(module_name + '.plugin_merge',
+ input: module_name + '.plugin',
+ output: module_name + '.plugin',
+ command : [msgfmt,
+ '--desktop',
+ '--keyword=Description',
+ '--keyword=Name',
+ '-d' + join_paths(meson.source_root (), 'po', 'plugins'),
+ '--template=@INPUT@',
+ '-o@OUTPUT@',
+ ],
+ install : true,
+ install_dir: join_paths(pluginsdir, module_name),
+)
diff --git a/plugins/fuzzy-search/search-result.vala b/plugins/fuzzy-search/search-result.vala
new file mode 100644
index 0000000000..62105ad71a
--- /dev/null
+++ b/plugins/fuzzy-search/search-result.vala
@@ -0,0 +1,22 @@
+/*
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ * SPDX-FileCopyrightText: 2023 elementary, Inc.
+ *
+ * Authored by: Marvin Ahlgrimm
+ */
+
+public class SearchResult {
+ public string full_path;
+ public string relative_path;
+ public string project;
+ public bool found;
+ public int score;
+
+ public SearchResult (bool fo, int sc) {
+ full_path = "";
+ relative_path = "";
+ project = "";
+ found = fo;
+ score = sc;
+ }
+}
diff --git a/plugins/meson.build b/plugins/meson.build
index aa8891eb76..906dcd0780 100644
--- a/plugins/meson.build
+++ b/plugins/meson.build
@@ -10,3 +10,4 @@ subdir('preserve-indent')
subdir('spell')
subdir('vim-emulation')
subdir('word-completion')
+subdir('fuzzy-search')
diff --git a/po/aa.po b/po/aa.po
index 9a3c6c930e..dc79460fe6 100644
--- a/po/aa.po
+++ b/po/aa.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:00+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ab.po b/po/ab.po
index 9a3c6c930e..dc79460fe6 100644
--- a/po/ab.po
+++ b/po/ab.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:00+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ae.po b/po/ae.po
index 0660a1f871..0f6be65f44 100644
--- a/po/ae.po
+++ b/po/ae.po
@@ -1,94 +1,102 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -127,7 +135,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -137,84 +145,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -234,251 +250,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -497,18 +518,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -563,71 +584,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -691,20 +704,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/af.po b/po/af.po
index c1df44f0cf..dd65359c4d 100644
--- a/po/af.po
+++ b/po/af.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2017-04-09 21:07+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: Afrikaans \n"
@@ -18,92 +18,100 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:00+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Nuwe Blad"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Nuwe Venster"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Find…"
msgid "Find on Page…"
msgstr "Vind…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Steek terminaal weg"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Wys terminaal"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Alle lêers"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Teks lêers"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Kanselleer"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -142,7 +150,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -152,84 +160,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Stoor lêers op gewysiging"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Automatiese inkeping"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Inkeping Wydte"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Sluit"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Onderstreep bypassende hakies"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Lyn wydte gids"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Persoonlike font"
@@ -249,78 +265,83 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
#, fuzzy
msgid "Other Actions"
msgstr "Ander formate"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
msgid "New"
msgstr "Nuwe Blad"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "Teks lêers"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -328,120 +349,120 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Nuwe dokument"
msgstr[1] "Nuwe dokument"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
#, fuzzy
msgid "Cancel Loading"
msgstr "Kanselleer"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Stoor wysigings voor dokument %s toegemaak word"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "Maak toe sonder om te stoor"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Stoor"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
msgid "Saving to “%s” failed."
msgstr "Stoor wysigings voor dokument %s toegemaak word"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Stoor lêer"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Nuwe dokument"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
msgid "You may not have permission to read the file."
msgstr "Die \"%s\" lêer kan nie gelees word nie. Dalk is dit korrup"
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -453,7 +474,7 @@ msgstr ""
"Die plek wat die \"%s\" lêer bevat is ontkoppel. Wil jy op 'n ander plek "
"stoor?"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” was deleted and there are unsaved changes."
@@ -461,55 +482,55 @@ msgstr "Die \"%s\" lêer was verwyder. Wil jy dit in elk geval stoor?"
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "Die \"%s\" lêer was verwyder. Wil jy dit in elk geval stoor?"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "Oplaai"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save changes elsewhere"
msgid "Save Document elsewhere"
@@ -530,18 +551,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, fuzzy, c-format
msgid "Text file from %s:%d"
msgstr "Teks lêers"
@@ -601,72 +622,64 @@ msgid_plural "%d Tabs"
msgstr[0] "Nuwe Blad"
msgstr[1] "Nuwe Blad"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Wys terminaal"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Steek terminaal weg"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "Stoor lêer"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -730,20 +743,20 @@ msgstr "Vervang"
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ak.po b/po/ak.po
index 2e4bda4779..c1aa21e87d 100644
--- a/po/ak.po
+++ b/po/ak.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2017-04-09 20:11+0000\n"
"Last-Translator: aberba \n"
"Language-Team: LANGUAGE \n"
@@ -13,92 +13,100 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:00+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Tab Foforɔ"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Window Foforɔ"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Printe"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
msgid "Find on Page…"
msgstr "Bue file"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
msgid "Hide Projects Sidebar"
msgstr "Bue file"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Gyae"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -137,7 +145,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -147,84 +155,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -244,80 +260,85 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
#, fuzzy
msgid "Open In"
msgstr "Bue file"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
msgid "Find in Folder…"
msgstr "Bue file"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
msgid "New"
msgstr "Tab Foforɔ"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "File foforɔ"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
msgid "Close Other Folders"
msgstr "Bue file"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -325,124 +346,124 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Document Foforɔ"
msgstr[1] "Document Foforɔ"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
msgid "Find in Project…"
msgstr "Bue file"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
#, fuzzy
msgid "Cancel Loading"
msgstr "Gyae"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Wopɛ sɛ wo kora %s to hɔ ansa wadum no anaa?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
#, fuzzy
msgid "If you don't save, changes will be permanently lost."
msgstr ""
"Sɛ wo ankora anto hɔ a, wo bɛ hwere nsesayɛ a waya no animmoho 4 a atwam no "
"koraa."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "Dum no. Mempɛ sɛ wo kora no"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Kora"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
msgid "Saving to “%s” failed."
msgstr "Wopɛ sɛ wo kora %s to hɔ ansa wadum no anaa?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Kora file no"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Document Foforɔ"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
msgid "You may not have permission to read the file."
msgstr "File %s antumi ambue. Ebia na asɛe anaa wo nni ho kwan sɛ wo bue."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -453,7 +474,7 @@ msgid ""
msgstr ""
"Bɛbi a file %s wɔ no nnya mmounte yɛ. Wopɛ sɛ wo kora no baabi fofor anaa?"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -465,13 +486,13 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "File %s nni akoraɛ biara mu. Wo pɛ sɛ wo kora to hɔ anna?"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -481,42 +502,42 @@ msgstr ""
"Dwumadi foforɔ ayɛ nsesaɛ wɔ %s mu. Wopɛ sɛ wo hwɛ nsesaɛ no ansa na wakora "
"no bio anaa?"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Toa so"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save changes elsewhere"
msgid "Save Document elsewhere"
@@ -537,18 +558,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, fuzzy, c-format
msgid "Text file from %s:%d"
msgstr "Yɛ ntwerɛe foforɔ firi "
@@ -603,72 +624,64 @@ msgid_plural "%d Tabs"
msgstr[0] "Tab Foforɔ"
msgstr[1] "Tab Foforɔ"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Fa ma"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "Bue file"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -732,20 +745,20 @@ msgstr "Si ananmu"
msgid "Replace all"
msgstr "Sesa ne nyinaa"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/am.po b/po/am.po
index 02744e0e16..1a1fcb3972 100644
--- a/po/am.po
+++ b/po/am.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-21 13:39+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: Amharic \n"
@@ -18,98 +18,106 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:00+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "አዲስ ንዑስ መስኮት"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "አዲስ መስኮት"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "የ እትሙን መረጃ ማተሚያ እና መውጫ"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "የመፈለጊያ ባሩን መደበቂያ"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "ፎልደር መክፈቻ"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "የመፈለጊያ ባሩን መደበቂያ"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Project templates"
msgid "Show Projects Sidebar"
msgstr "የ እቅድ ቴምፕሌቶች"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "ምልክቶች"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "ሁሉንም ፋይሎች"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "የጽሁፍ ፋይሎች"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "አንዳንድ ፋይሎች መክፈቻ"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "መክፈቻ"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "መሰረዣ"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_መክፈቻ"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_መሰረዣ"
@@ -151,7 +159,7 @@ msgstr ""
msgid "Create Branch"
msgstr "የ ስክራች ማሰናጃዎች መቀየሪያ"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "ምርጫዎች"
@@ -161,84 +169,94 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "ፋይሎች በሚቀየሩ ጊዜ ማስቀመጫ:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "ራሱ በራሱ ማስረጊያ:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "የ ንዑስ መስኮት ስፋት:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "እቅድ"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "ባህሪ"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "ግንኙነት"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "መዝጊያ"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "ተጨማሪዎች"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "ተመሳሳይ ቅንፎችን ማድመቂያ:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "የ መስመር ስፋት ምምሪያ:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -258,84 +276,89 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
#, fuzzy
msgid "Open In"
msgstr "መክፈቻ"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
#, fuzzy
msgid "Other Actions"
msgstr "ለሎች አቀራረቦች"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "ፎልደሮች"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Folder…"
msgstr "ፎልደር መክፈቻ"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
#, fuzzy
msgid "Folder"
msgstr "ፎልደሮች"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
msgid "New"
msgstr "አዲስ ንዑስ መስኮት"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "አዲስ ፋይል"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "ፎልደር መዝጊያ"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
#| msgid "Close Folder"
msgid "Close Other Folders"
msgstr "ፎልደር መዝጊያ"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -343,184 +366,184 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "አዲስ ሰነድ"
msgstr[1] "አዲስ ሰነድ"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Project…"
msgstr "ፎልደር መክፈቻ"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
msgid "New Branch…"
msgstr "የ ስክራች ማሰናጃዎች መቀየሪያ"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
#, fuzzy
msgid "Branch"
msgstr "የ ስክራች ማሰናጃዎች መቀየሪያ"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
#, fuzzy
msgid "Cancel Loading"
msgstr "መሰረዣ"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "ሳያስቀምጡ መዝጊያ"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "ማስቀመጫ"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "ፋይል ማስቀመጫ"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "አዲስ ሰነድ"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "ይቀጥሉ"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "መጫኛ"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -543,18 +566,18 @@ msgstr "ምልክቶች"
msgid "No Project Selected"
msgstr "የ እቅድ ቴምፕሌቶች"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, fuzzy, c-format
msgid "Text file from %s:%d"
msgstr "የጽሁፍ ፋይሎች"
@@ -614,74 +637,66 @@ msgid_plural "%d Tabs"
msgstr[0] "አዲስ ንዑስ መስኮት"
msgstr[1] "አዲስ ንዑስ መስኮት"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "ፋይል መክፈቻ"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "የ እቅድ ቴምፕሌቶች"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "ይህን ፋይል ማስቀመጫ"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "ይህን ፋይል በ ሌላ ስም ማስቀመጫ"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "ይህን ፋይል እንደነበር መመለሻ"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "ማካፈያ"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
#, fuzzy
msgid "Zoom Out"
msgstr "ማሳያ"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "ማሳያ 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
#, fuzzy
msgid "Zoom In"
msgstr "ማሳያ"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "ፎልደር መክፈቻ"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -747,20 +762,20 @@ msgstr "መቀየሪያ"
msgid "Replace all"
msgstr "ኩሉንም መቀየሪያ"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
@@ -1018,9 +1033,6 @@ msgstr ""
#~ msgid "Files"
#~ msgstr "ፋይሎች"
-#~ msgid "Project"
-#~ msgstr "እቅድ"
-
#~ msgid "Bookmarks"
#~ msgstr "ምልክት ማድረጊያዎች"
diff --git a/po/an.po b/po/an.po
index 60134dd403..1afb1f9206 100644
--- a/po/an.po
+++ b/po/an.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-21 13:36+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:00+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,75 +258,80 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -318,178 +339,178 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Nueu Decumento"
msgstr[1] "Nueu Decumento"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Alzar os camios de o decumento dinantes de trancar"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
#, fuzzy
msgid "If you don't save, changes will be permanently lost."
msgstr "Si no alzas, os camios d´os 4 segundos zaguers se ´n trafegueran"
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "Trancar sin alzar"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
msgid "Saving to “%s” failed."
msgstr "Alzar os camios de o decumento dinantes de trancar"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Nueu Decumento"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -508,18 +529,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -574,71 +595,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -702,20 +715,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index 2a5b1948de..4a1b0b94d2 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2021-09-06 18:12+0000\n"
"Last-Translator: aalhaif \n"
"Language-Team: Arabic \n"
@@ -20,99 +20,107 @@ msgstr ""
"X-Generator: Weblate 4.4.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:00+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "لسان جديد"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "نافذة جديدة"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "اطبع معلومات الاصدار وقم بالاغلاق"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr "[ملف...]"
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "كود"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "كود"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "إخفاء شريط البحث"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Open project folder…"
msgid "Find on Page…"
msgstr "فتح مجلد المشروع…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "إخفاء شريط البحث"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "اظهر المعاينة"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "ازالة الاماكن الوهمية المنشأة من قبل ( vala parser )"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "اخفي الطرفية"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "اظهر الطرفية"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "كل الملفات"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "ملفات نصية"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "فتح بعض الملفات"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "إفتح"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "الغاء"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_فتح"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_الغاء"
@@ -151,7 +159,7 @@ msgstr "اسم الفرع يجب أن يكون مميز وأن يتبع قواع
msgid "Create Branch"
msgstr "إنشاء فرع"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "التفضيلات"
@@ -161,85 +169,95 @@ msgid ""
"current line"
msgstr "القص أو النسخ بدون تحديد شيء معين سينسخ أو يقص كامل السطر الحالي"
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "عام"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "إحفظ الملفات عند تغييرها:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "القص/النسخ الذكي للأسطر:"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "التبويبات"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "التعرف التلقائي على المسافات الفارغة:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "ادخل مسافات بدلا من tabs:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "عرض التبويب:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project templates"
+msgid "Projects"
+msgstr "قوالب المشروع"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "السلوك"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "الواجهة"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "اغلق"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "الامتدادات"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "المحرر"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "إبراز الاقواس :"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
#, fuzzy
msgid "Line wrap:"
msgstr "تنزيل المؤشر لسطر جديد بسبب امتلاء السطر السابق:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "اظهر خارطة مصغرة:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "دليل سمك الخط:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "الخط"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "خط مخصص:"
@@ -259,70 +277,75 @@ msgstr "لا تسترجعه"
msgid "Restore Anyway"
msgstr "استرجع على اية حال"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "تطبيقات أخرى…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "إفتح في"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "اجراءات اخرى"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "إعادة التسمية"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "انقل الى سلة المهملات"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "المجلدات"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
#| msgid "Open project folder…"
msgid "Find in Folder…"
msgstr "فتح مجلد المشروع…"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "مجلد"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "ملف فارغ"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "جديد"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "ملف غير مسمى"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "ملف جديد"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "أغلق المجلد"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "اغلق المجلدات الاخرى"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
@@ -333,7 +356,7 @@ msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -345,7 +368,7 @@ msgstr[3] "مُستند جديد"
msgstr[4] "مُستند جديد"
msgstr[5] "مُستند جديد"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
@@ -356,124 +379,124 @@ msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
#| msgid "Open project folder…"
msgid "Find in Project…"
msgstr "فتح مجلد المشروع…"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
#| msgid "%s, Modified"
msgid "Modified"
msgstr "%s, المعدل"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
#| msgid "Branch"
msgid "New Branch…"
msgstr "تفرع"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "تفرع"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s ليس بملف نصي"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "الشيفرة البرمجية لن يحمل نوع الملفات هذا."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "حمل على أي حال"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, fuzzy, c-format
#| msgid "Loading File \"%s\" Is Taking a Long Time"
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "جاري العمل على الملف “%s” قد يستغرق بعض الوقت"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "الرجاء الانتظار بينما الشيفرة البرمجية يقوم بتحميل الملف."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "الغاء التحميل"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
#| msgid "Save changes to \"%s\" before closing?"
msgid "Save changes to “%s” before closing?"
msgstr "حفظ التغيرات الخاصة بـ “%s” قبل اﻹغلاق؟"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr "إن لم تحفظ فستختفى نهائيا جميع التغيرات."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "اغلق بدون حفظ"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "إحفظ"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
#| msgid "Save changes to \"%s\" before closing?"
msgid "Saving to “%s” failed."
msgstr "حفظ التغيرات الخاصة بـ “%s” قبل اﻹغلاق؟"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "حفظ الملف"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "مُستند جديد"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, fuzzy, c-format
#| msgid "Search for text in “%s”"
msgid "Cannot read text in file “%s”"
msgstr "بحث عن نص في ”%s“"
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
#| msgid "It may be corrupt or you don't have permission to read it."
msgid "You may not have permission to read the file."
msgstr "قد يكون تالفا أو أنك ليس لديك الصلاحيات لقراءته."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
#, fuzzy
#| msgid "Load Anyway"
msgid "Show Anyway"
msgstr "حمل على أي حال"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -483,7 +506,7 @@ msgid ""
"changes."
msgstr "المكان يحتوي على الملف “%s” ولم يكن مركبا. هل تريد حفظه فيه مكان آخر؟"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -495,13 +518,13 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "الملف “%s” قد تم حذفه. هل تريد حفظه على اية حال؟"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -511,44 +534,44 @@ msgstr ""
"الملف “%s” قد تم تعديله من طرف خارجي. هل تريد إعادة تحميله أم تريد اكمال "
"التعديل عليه؟"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "استمرار"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "رفع"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -571,18 +594,18 @@ msgstr "ازالة الاماكن الوهمية المنشأة من قبل ( va
msgid "No Project Selected"
msgstr "قوالب المشروع"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "ملف نصي من %s:%d"
@@ -651,73 +674,65 @@ msgstr[3] "%d تبويبات"
msgstr[4] "%d تبويبات"
msgstr[5] "%d تبويبات"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "إفتح ملفاً"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "قوالب المشروع"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "حفظ هذا الملف"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "احفظ هذا الملف باسم آخر"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "إستعد هذا الملف"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "المشاركه"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "تصغير للخارج"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "تكبير مقاس 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "تكبير للداخل"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "اظهر الطرفية"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "القائمة"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "اخفي الطرفية"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
#| msgid "Open Folder"
msgid "Open Folder…"
msgstr "افتح مجلد"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "طي الكل"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "ترتيب بالأبجدية"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "إدارة مجلدات المشروع"
@@ -785,20 +800,20 @@ msgstr "إستبدال"
msgid "Replace all"
msgstr "استبدال الكل"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "رتب الأسطر التي تم اختيارها"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "تحويل لتعليق"
diff --git a/po/as.po b/po/as.po
index c189ddecec..d15c3930c9 100644
--- a/po/as.po
+++ b/po/as.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ast.po b/po/ast.po
index c189ddecec..d15c3930c9 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/av.po b/po/av.po
index c189ddecec..d15c3930c9 100644
--- a/po/av.po
+++ b/po/av.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ay.po b/po/ay.po
index c189ddecec..d15c3930c9 100644
--- a/po/ay.po
+++ b/po/ay.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/az.po b/po/az.po
index e34017d448..08edb12be3 100644
--- a/po/az.po
+++ b/po/az.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/be.po b/po/be.po
index b51512cc38..dd49cea4de 100644
--- a/po/be.po
+++ b/po/be.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2016-03-03 17:53+0000\n"
"Last-Translator: Dmitry Taranovich \n"
"Language-Team: LANGUAGE \n"
@@ -13,98 +13,106 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Стварыць укладку"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Стварыць акно"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Надрукаваць інфармацыю аб версіі і выйсці"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Схаваць поле пошуку"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "Адкрыць тэчку"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Схаваць поле пошуку"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Паказаць перадпрагляд"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "Сімвалы"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Схаваць Тэрмінал"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Паказаць Тэрмінал"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Усе файлы"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Тэкставыя файлы"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Адкрыць некалькі файлаў"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Адкрыць"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Скасаваць"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Адкрыць"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Адмяніць"
@@ -146,7 +154,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Змяніць параметры Scratch"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Параметры"
@@ -156,88 +164,98 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Захоўваць файлы пры змяненні:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Аўтаматычнае структураванне:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Устаўляць прабелы замест табуляцый:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
#, fuzzy
#| msgid "Strip trailing whitespace on save"
msgid "Strip trailing whitespace:"
msgstr "Пазбаўляцца ад задняга прабела пры захоўванні"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Шырыня ўкладкі:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "Праект"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Паводзіны"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Інтэрфейс"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Закрыць"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Пашырэнні"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Падсвечваць парныя дужкі:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Разрыў радку:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
#, fuzzy
#| msgid "Strip trailing whitespace"
msgid "Visible whitespace:"
msgstr "Пазбаўленне ад задняга прабела"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Напраўляючая шырыні радку:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Асабісты шрыфт:"
@@ -257,84 +275,89 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
#, fuzzy
msgid "Open In"
msgstr "Адкрыць"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
#, fuzzy
msgid "Other Actions"
msgstr "Іншыя фарматы"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Тэчкі"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Folder…"
msgstr "Адкрыць тэчку"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
#, fuzzy
msgid "Folder"
msgstr "Тэчкі"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
msgid "New"
msgstr "Стварыць укладку"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "Стварыць файл"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Закрыць тэчку"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
#| msgid "Close Folder"
msgid "Close Other Folders"
msgstr "Закрыць тэчку"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -342,128 +365,128 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Новы дакумент"
msgstr[1] "Новы дакумент"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Project…"
msgstr "Адкрыць тэчку"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
msgid "New Branch…"
msgstr "Змяніць параметры Scratch"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
#, fuzzy
msgid "Branch"
msgstr "Змяніць параметры Scratch"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
#, fuzzy
msgid "Cancel Loading"
msgstr "Скасаваць"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Захаваць змены ў дакуменце %s перад закрыццём?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
#, fuzzy
msgid "If you don't save, changes will be permanently lost."
msgstr ""
"Калі вы не захаваеце, змены за апошнія 4 секунды будуць назаўсёды страчаны."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "Закрыць не захоўваючы"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Захаваць"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
msgid "Saving to “%s” failed."
msgstr "Захаваць змены ў дакуменце %s перад закрыццём?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Захаваць файл"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Новы дакумент"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
msgid "You may not have permission to read the file."
msgstr ""
"Немагчыма прачытаць файл \"%s\". Магчыма, ён сапсаваны альбо Вы не маеце "
"патрэбных прывілеяў, каб яго прачытаць."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -473,7 +496,7 @@ msgid ""
"changes."
msgstr "Месца з файлам \"%s\" адмацавана. Жадаеце захаваць у іншым месцы?"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -485,13 +508,13 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "Файл \"%s\" быў выдалены. Захаваць усё роўна?"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -501,44 +524,44 @@ msgstr ""
"Файл \"%s\" быў зменены знешнім прыкладаннем. Загрузіць яго зноў ці "
"працягнуць рэдагаванне?"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Працягваць"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "Загрузіць"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save changes elsewhere"
msgid "Save Document elsewhere"
@@ -561,18 +584,18 @@ msgstr "Сімвалы"
msgid "No Project Selected"
msgstr "Шаблоны праектаў"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, fuzzy, c-format
msgid "Text file from %s:%d"
msgstr "Тэкставы файл з "
@@ -634,74 +657,66 @@ msgid_plural "%d Tabs"
msgstr[0] "Стварыць укладку"
msgstr[1] "Стварыць укладку"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Адкрыць файл"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Шаблоны праектаў"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Захаваць гэты файл"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Захаваць гэты файл з іншай назвай"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Аднавіць гэты файл"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Падзяліцца"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
#, fuzzy
msgid "Zoom Out"
msgstr "Маштабіраваць"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Маштаб 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
#, fuzzy
msgid "Zoom In"
msgstr "Маштабіраваць"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Паказаць Тэрмінал"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Схаваць Тэрмінал"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "Адкрыць тэчку"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -767,20 +782,20 @@ msgstr "Замяніць"
msgid "Replace all"
msgstr "Замяніць усё"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
@@ -1121,9 +1136,6 @@ msgstr "%s - Дапаўненне слоў"
#~ msgid "Files"
#~ msgstr "Файлы"
-#~ msgid "Project"
-#~ msgstr "Праект"
-
#~ msgid "Bookmarks"
#~ msgstr "Закладкі"
diff --git a/po/bg.po b/po/bg.po
index ebcbc06f1d..d5cdd3adfe 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/bi.po b/po/bi.po
index c189ddecec..d15c3930c9 100644
--- a/po/bi.po
+++ b/po/bi.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/bm.po b/po/bm.po
index c189ddecec..d15c3930c9 100644
--- a/po/bm.po
+++ b/po/bm.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/bn.po b/po/bn.po
index 6423519b4d..25479b79e3 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2017-01-21 09:06+0000\n"
"Last-Translator: Hasan Sumon \n"
"Language-Team: LANGUAGE \n"
@@ -13,98 +13,106 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "নতুন ট্যাব"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "নতুন উইন্ডো"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "ভার্সন এর তথ্য মুদ্রণ করে প্রস্থান করুন"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "অনুসন্ধান বার লুকিয়ে রাখুন"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "একটি ফোল্ডার খুলুন"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "অনুসন্ধান বার লুকিয়ে রাখুন"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "প্রিভিউ দেখান"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "চিহ্নসমূহ"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "টার্মিনাল লুকিয়ে রাখুন"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "টার্মিনাল দেখান"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "সব ফাইল"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "টেক্সট ফাইলসমূহ"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "কিছু ফাইল খুলুন"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "খুলুন"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "বাতিল করুন"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_খুলুন"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_বাতিল"
@@ -146,7 +154,7 @@ msgstr ""
msgid "Create Branch"
msgstr "স্ক্র্যাচ সেটিংস পরিবর্তন করুন"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "পছন্দসমূহ"
@@ -156,88 +164,98 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "সাধারন"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "ফাইল সংরক্ষণ করুন যখনঃ"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "ট্যাবসমূহ"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "স্বয়ংক্রিয় ইনডেন্টেশানঃ"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "ট্যাব এর বদলে স্পেস ব্যবহার করুনঃ"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
#, fuzzy
#| msgid "Strip trailing whitespace on save"
msgid "Strip trailing whitespace:"
msgstr "স্ট্রিপ ট্রেইলিং হোয়াইটস্পেস অন সেভ"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "ট্যাব এর প্রস্থঃ"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "প্রজেক্ট"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "বৈশিষ্ট্য"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "ইন্টারফেস"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "বন্ধ করুন"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "এক্সটেনশানসমূহ"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "সম্পাদক"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "একই ধরনের ব্র্যাকেট হাইলাইট করুনঃ"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "লাইন মোড়ানোঃ"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
#, fuzzy
#| msgid "Strip trailing whitespace"
msgid "Visible whitespace:"
msgstr "স্ট্রিপ ট্রেইলিং হোয়াইটস্পেস"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "ছোট ম্যাপ দেখানঃ"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "লাইন এর প্রস্থ নির্দেশিকাঃ"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "কাস্টম ফন্টঃ"
@@ -257,84 +275,89 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
#, fuzzy
msgid "Open In"
msgstr "খুলুন"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
#, fuzzy
msgid "Other Actions"
msgstr "অন্যান্য ফরম্যাটসমূহ"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "ফোল্ডারসমূহ"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Folder…"
msgstr "একটি ফোল্ডার খুলুন"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
#, fuzzy
msgid "Folder"
msgstr "ফোল্ডারসমূহ"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
msgid "New"
msgstr "নতুন ট্যাব"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "নতুন ফাইল"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "ফোল্ডার বন্ধ করুন"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
#| msgid "Close Folder"
msgid "Close Other Folders"
msgstr "ফোল্ডার বন্ধ করুন"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -342,129 +365,129 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "নতুন ডকুমেন্ট"
msgstr[1] "নতুন ডকুমেন্ট"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Project…"
msgstr "একটি ফোল্ডার খুলুন"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
msgid "New Branch…"
msgstr "স্ক্র্যাচ সেটিংস পরিবর্তন করুন"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
#, fuzzy
msgid "Branch"
msgstr "স্ক্র্যাচ সেটিংস পরিবর্তন করুন"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
#, fuzzy
msgid "Cancel Loading"
msgstr "বাতিল করুন"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
msgid "Save changes to “%s” before closing?"
msgstr "বন্ধ করার আগে ডকুমেন্টে %s সংরক্ষণ করতে চান?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
#, fuzzy
msgid "If you don't save, changes will be permanently lost."
msgstr ""
"যদি আপনি সংরক্ষণ না করেন, তাহলে গত ৪ সেকেন্ডের পরিবর্তনগুলো স্থায়ীভাবে হারিয়ে "
"যাবে।"
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "সংরক্ষণ না করে বন্ধ করুন"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "সংরক্ষণ করুন"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
msgid "Saving to “%s” failed."
msgstr "বন্ধ করার আগে ডকুমেন্টে %s সংরক্ষণ করতে চান?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "ফাইল সংরক্ষণ করুন"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "নতুন ডকুমেন্ট"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
msgid "You may not have permission to read the file."
msgstr ""
"\"%s\" ফাইলটি নির্ণয় করে যাচ্ছেনা। হয়ত এটি নষ্ট\n"
"অথবা আপনার প্রয়োজনীয় অনুমতি নেই।"
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -476,7 +499,7 @@ msgstr ""
"\"%s\" ফাইলটি যে অবস্থা এ ছিল সে লোকেশানটি সরিয়ে নেয়া হয়েছে। আপনি কী অন্য "
"কোথায় সংরক্ষণ করতে চান?"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -488,13 +511,13 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "\"%s\" ফাইলটি মুছে দেওয়া হয়েছিলো। যাই হোক আপনি কি এটি সংরক্ষণ করতে চান?"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -504,44 +527,44 @@ msgstr ""
"\"%s\" ফাইলটি একটি এক্সটার্নাল এপ্লিকেশান কর্তৃক পরিবর্তিত হয়েছে। আপনি কী ফাইলটিকে "
"পুনরায় লোড করে সম্পাদনা চালিয়ে যেতে চান?"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "পরবর্তী"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "আপলোড"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save changes elsewhere"
msgid "Save Document elsewhere"
@@ -564,18 +587,18 @@ msgstr "চিহ্নসমূহ"
msgid "No Project Selected"
msgstr "প্রজেক্ট টেম্পলেটসমূহ"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, fuzzy, c-format
msgid "Text file from %s:%d"
msgstr "টেক্সট ফাইল এখান থেকে "
@@ -637,74 +660,66 @@ msgid_plural "%d Tabs"
msgstr[0] "নতুন ট্যাব"
msgstr[1] "নতুন ট্যাব"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "একটি ফাইল খুলুন"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "প্রজেক্ট টেম্পলেটসমূহ"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "এই ফাইলটি সংরক্ষণ করুন"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "এই ফাইলটি ভিন্ন নামে সংরক্ষণ করুন"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "ফাইলটি পূর্বাবস্থায় নিয়ে যান"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "শেয়ার করুন"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
#, fuzzy
msgid "Zoom Out"
msgstr "বড় আকারে প্রদর্শন"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "১:১ অনুপাতে বড় করে প্রদর্শন"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
#, fuzzy
msgid "Zoom In"
msgstr "বড় আকারে প্রদর্শন"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "টার্মিনাল দেখান"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "টার্মিনাল লুকিয়ে রাখুন"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "একটি ফোল্ডার খুলুন"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -770,20 +785,20 @@ msgstr "প্রতিস্থাপন"
msgid "Replace all"
msgstr "সব প্রতিস্থাপন করুন"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
@@ -1202,9 +1217,6 @@ msgstr "%s - শব্দ পরিপূরণ"
#~ msgid "Files"
#~ msgstr "ফাইলসমূহ"
-#~ msgid "Project"
-#~ msgstr "প্রজেক্ট"
-
#~ msgid "Bookmarks"
#~ msgstr "বুকমার্কসমূহ"
diff --git a/po/bo.po b/po/bo.po
index f33ed4fa23..72e4c7e240 100644
--- a/po/bo.po
+++ b/po/bo.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2019-08-29 15:22+0000\n"
"Last-Translator: གངས་རྒྱན། \n"
"Language-Team: Tibetan \n"
@@ -14,91 +14,99 @@ msgstr ""
"X-Generator: Weblate 3.7.1\n"
"X-Launchpad-Export-Date: 2017-05-03 06:03+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "Code"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -137,7 +145,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -147,84 +155,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -244,248 +260,253 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -504,18 +525,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -570,71 +591,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -698,20 +711,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/br.po b/po/br.po
index c189ddecec..d15c3930c9 100644
--- a/po/br.po
+++ b/po/br.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/bs.po b/po/bs.po
index afd261a915..d1cafba61b 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-11-05 00:09+0000\n"
"Last-Translator: Elvis Mujanović \n"
"Language-Team: Bosnian \n"
"Language-Team: Catalan \n"
"Language: ca\n"
@@ -16,93 +16,101 @@ 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 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Pestanya nova"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Finestra nova"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Imprimeix informació de la versió i surt"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr "[FITXER…]"
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr "Codi (%s)"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Codi"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Amaga la barra de cerca"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr "Troba a la pàgina…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr "Amaga la barra lateral de projectes"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr "Mostra la barra lateral de projectes"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr "Amaga el contorn del símbol"
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr "Mostra el contorn del símbol"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Amaga el terminal"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Mostra el terminal"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Tots els fitxers"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Fitxers de text"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Obriu alguns fitxers"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Obre"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Cancel·la"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Obre"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Cancel·la"
@@ -143,7 +151,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Crea'n una branca"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Preferències"
@@ -155,84 +163,92 @@ msgstr ""
"Retallar o copiar sense una selecció activa tallarà o copiarà tota la línia "
"actual."
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr "Directori de construcció per defecte"
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "General"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Desa els fitxers quan es produeixin canvis:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "Línies de retall / còpia intel·ligents:"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Pestanyes"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Sagnat automàtic:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Inserir espais en comptes de tabulacions:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr "Suprimeix els espais en blanc al final:"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Amplada del tabulador:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr "Projectes"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Comportament"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Interfície"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Tanca"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Extensions"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Editor"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Realça la parella de claudàtors:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Ajust de línia:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr "Espai en blanc visible:"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "Mostra el minimapa:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Guia d'amplada de línia:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "Lletra"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Tipus de lletra personalitzada:"
@@ -254,192 +270,197 @@ msgstr "No el restauris"
msgid "Restore Anyway"
msgstr "Restaura'l tanmateix"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr "Obre al plafó del terminal"
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "Una altra aplicació…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "Obre amb"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "Altres accions"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "Canvia'n el nom"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "Mou a la paperera"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Carpetes"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr "Troba a la carpeta…"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "Carpeta"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "Fitxer buit"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "Nou"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "carpeta sense nom"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "fitxer nou"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Tanca la carpeta"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "Tanca altres carpetes"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] "Tanca %u document obert"
msgstr[1] "Tanca %u documents oberts"
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] "Amaga %u document obert"
msgstr[1] "Amaga %u documents oberts"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] "Restaura %u document amagat"
msgstr[1] "Restaura %u documents amagats"
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr "Troba al projecte…"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr "Modificat"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr "Error en crear una branca nova: %s"
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr "Branca nova…"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "Branca"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s no és un fitxer de text"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "El Codi no carregarà aquest tipus de fitxer."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "Carrega'l tanmateix"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "La càrrega del fitxer %s està trigant molt."
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "Si us plau, espereu mentre el Codi carrega el fitxer."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "Cancel·la la càrrega"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Voleu desar els canvis fets a %s abans de tancar-lo?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr "Si no deseu el document, els canvis es perdran permanentment."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "Tanca'l sense desar-lo"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Desa"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr "No s'ha pogut desar a %s."
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Desa el fitxer"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Document nou"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr "No es pot desar aquest document a %s"
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr "No es pot llegir el text del fitxer %s"
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr "És possible que no tingueu permís per llegir el fitxer."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr "El fitxer pot estar malmès o pot no ser un fitxer de text."
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr "Mostra'l tanmateix"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
@@ -447,24 +468,24 @@ msgid ""
msgstr ""
"La ubicació que conté el fitxer %s s'ha desmuntat i hi ha canvis no desats."
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr "S'ha suprimit el fitxer %s i hi ha canvis no desats."
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr "El fitxer %s no té permís d'escriptura."
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr "El fitxer %s ha estat modificat per una aplicació externa."
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
@@ -472,38 +493,38 @@ msgstr ""
"També hi ha canvis no desats. Si torneu a carregar el document, se "
"sobreescriuran els canvis no desats."
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
"El document ha canviat externament des de l'última vegada que el vau desar."
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
"“%s” no es pot desar aquí. En voleu deseu un duplicat en un altre lloc?"
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr "Ignora-ho"
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr "Desa'n un duplicat…"
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Continua"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr "Torna a carregar"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr "Sobreescriu"
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr "Desa el document en un altre lloc"
@@ -522,18 +543,18 @@ msgstr "Simbols"
msgid "No Project Selected"
msgstr "No hi ha cap projecte seleccionat"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr "Projecte de Git actiu: %s"
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr "Filtra els projectes"
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "Fitxer de text de %s:%d"
@@ -588,71 +609,63 @@ msgid_plural "%d Tabs"
msgstr[0] "%d pestanya"
msgstr[1] "%d pestanyes"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Obre un fitxer"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Plantilles de projectes"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Desa aquest fitxer"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Desa aquest fitxer amb un nom diferent"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Restaura aquest fitxer"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Comparteix"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "Allunya"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Ampliació 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "Apropa"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr "Segueix l'estil del sistema"
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Mostra el terminal"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "Menú"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Amaga el terminal"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr "Obre una carpeta…"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "Replega-ho tot"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "Per ordre alfabètic"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "Gestioneu les carpetes de projectes"
@@ -716,20 +729,20 @@ msgstr "Reemplaça"
msgid "Replace all"
msgstr "Reemplaça-ho tot"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr "%d de %d"
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr "sense resultats"
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "Classifica les línies seleccionades"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "Commuta el comentari"
@@ -1184,9 +1197,6 @@ msgstr "%s - Compleció de paraules"
#~ msgid "Files"
#~ msgstr "Fitxers"
-#~ msgid "Project"
-#~ msgstr "Projecte"
-
#~ msgid "Bookmarks"
#~ msgstr "Adreces d'interès"
diff --git a/po/ca@valencia.po b/po/ca@valencia.po
index c40e0453d2..c95a97bc8e 100644
--- a/po/ca@valencia.po
+++ b/po/ca@valencia.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Новая вкладка"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,252 +258,257 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
msgid "New"
msgstr "Новая вкладка"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -506,18 +527,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -572,71 +593,63 @@ msgid_plural "%d Tabs"
msgstr[0] "Новая вкладка"
msgstr[1] "Новая вкладка"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -700,20 +713,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ch.po b/po/ch.po
index c189ddecec..d15c3930c9 100644
--- a/po/ch.po
+++ b/po/ch.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ckb.po b/po/ckb.po
index 8201efb6a6..1c9c94f9e0 100644
--- a/po/ckb.po
+++ b/po/ckb.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/cr.po b/po/cr.po
index c189ddecec..d15c3930c9 100644
--- a/po/cr.po
+++ b/po/cr.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index cd5ffc83b8..d26caa6c03 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2023-07-19 08:07+0000\n"
"Last-Translator: Jakub Kyzr \n"
"Language-Team: Czech \n"
@@ -19,90 +19,98 @@ msgstr ""
"X-Generator: Weblate 4.17\n"
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Nová karta"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Nové okno"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Zobrazit informace o verzi a ukončit"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr "[SOUBOR…]"
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr "Code (%s)"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Skrýt vyhledávací panel"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr "Najít na stránce…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr "Skrýt panel projektů"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr "Zobrazit panel projektů"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr "Skrýt přehled symbolů"
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr "Zobrazit přehled symbolů"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Skrýt terminál"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Zobrazit terminál"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Všechny soubory"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Textové soubory"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Otevřít nějaké soubory"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Otevřít"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Zrušit"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Otevřít"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Zrušit"
@@ -143,7 +151,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Vytvořit větev"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Předvolby"
@@ -154,84 +162,94 @@ msgid ""
msgstr ""
"Vyjmutí/kopírování bez vybrání vyjme/zkopíruje celý řádek na stávající pozici"
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "Obecné"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Automaticky ukládat soubory po upravení:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "Chytré vyjímání/kopírování řádků:"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Tabulátory"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Automatické odsazování:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Vkládat mezery místo tabulátorů:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr "Odstraňovat koncové mezery:"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Šířka tabulátoru:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "Projekt"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Chování"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Rozhraní"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Zavřít"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Rozšíření"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Editor"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Zvýraznit odpovídající závorky:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Zalamovat řádky:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr "Viditelný prázdný znak:"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "Zobrazit mini mapu:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Vodítko délky řádku:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "Písmo"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Vlastní písmo:"
@@ -251,68 +269,73 @@ msgstr "Neobnovovat"
msgid "Restore Anyway"
msgstr "Přesto obnovit"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "Jiná aplikace…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "Otevřít v"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "Ostatní akce"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "Přejmenovat"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "Přesunout do Koše"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Složky"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr "Vyhledat ve složce…"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "Složka"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "Prázdný soubor"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "Nový"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "složka bez názvu"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "nový soubor"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Zavřít složku"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "Zavřít ostatní složky"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
@@ -320,7 +343,7 @@ msgstr[0] "Zavřít %u otevřený dokument"
msgstr[1] "Zavřít %u otevřené dokumenty"
msgstr[2] "Zavřít %u otevřených dokumentů"
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
@@ -328,7 +351,7 @@ msgstr[0] "Skrýt %u otevřený dokument"
msgstr[1] "Skrýt %u otevřené dokumenty"
msgstr[2] "Skrýt %u otevřených dokumentů"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
@@ -336,110 +359,110 @@ msgstr[0] "Obnovit %u skrytý dokument"
msgstr[1] "Obnovit %u skryté dokumenty"
msgstr[2] "Obnovit %u skrytých dokumentů"
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr "Vyhledat projekt…"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr "Změněno"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr "Chyba při vytváření nové větve: „%s“"
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr "Nová větev…"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "Větev"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s není textový soubor"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "Code nenačte tento typ souboru."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "Přesto načíst"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "Načítání souboru „%s“ trvá hodně dlouho"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "Prosím počkejte, než Code načte soubor."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "Zrušit načítání"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Uložit před ukončením změny do „%s“?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr "Pokud neuložíte, změny budou nenávratně ztraceny."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "Zavřít bez uložení"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Uložit"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr "Ukládání do „%s“ selhalo."
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Uložit soubor"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Nový dokument"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr "Nelze uložit tento dokument do %s"
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr "Nelze načíst text ze souboru „%s“"
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr "Možná nemáte oprávnění k přečtění tohoto souboru."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr "Soubor může být poškozený nebo se nemusí jednat o textový soubor"
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr "Přesto zobrazit"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
@@ -447,24 +470,24 @@ msgid ""
msgstr ""
"Úložiště obsahující soubor „%s“ bylo odpojeno a existují neuložené změny."
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr "Soubor „%s“ byl mezitím smazán a existují neuložené změny."
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr "Soubor „%s“ je chráněn proti zápisu."
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr "Soubor „%s“ byl mezitím pozměněn jinou aplikací"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
@@ -472,36 +495,36 @@ msgstr ""
"Existují neuložené změny. Opětovné načtení dokumentu přepíše tyto neuložené "
"změny."
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr "Tento dokument byl od posledního uložení pozměněn jinou aplikací."
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr "Soubor „%s“ nemůže být uložen zde. Chcete jeho kopii uložit jinam?"
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr "Ignorovat"
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr "Uložit kopii…"
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Pokračovat"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr "Znovu načíst"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr "Přepsat"
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr "Uložit dokument jinam"
@@ -520,18 +543,18 @@ msgstr "Symboly"
msgid "No Project Selected"
msgstr "Nevybrán žádný projekt"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr "Aktivní Git projekt: %s"
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr "Filtrovat projekty"
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "Textový soubor z %s:%d"
@@ -588,71 +611,63 @@ msgstr[0] "%d tabulátor"
msgstr[1] "%d tabulátory"
msgstr[2] "%d tabulátorů"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Otevřít soubor"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Šablony projektu"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Uložit"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Uložit soubor pod jiným názvem"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Obnovit tento soubor"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Sdílet"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "Oddálit"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Původní velikost"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "Přiblížit"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr "Podle vzhledu systému"
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Zobrazit terminál"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "Menu"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Skrýt terminál"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr "Otevřít složku…"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "Sbalit vše"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "Řadit podle abecedy"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "Spravovat složky projektu"
@@ -716,20 +731,20 @@ msgstr "Nahradit"
msgid "Replace all"
msgstr "Nahradit vše"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr "%d z %d"
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr "nic nenalezeno"
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "Seřadit vybrané řádky"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "Zobraz/nezobraz. komentář"
@@ -1183,9 +1198,6 @@ msgstr "%s – dokončování slov"
#~ msgid "Files"
#~ msgstr "Správce souborů"
-#~ msgid "Project"
-#~ msgstr "Projekt"
-
#~ msgid "Bookmarks"
#~ msgstr "Záložky"
diff --git a/po/cu.po b/po/cu.po
index 0660a1f871..0f6be65f44 100644
--- a/po/cu.po
+++ b/po/cu.po
@@ -1,94 +1,102 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -127,7 +135,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -137,84 +145,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -234,251 +250,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -497,18 +518,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -563,71 +584,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -691,20 +704,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/cv.po b/po/cv.po
index a4d3207f25..31dda9853d 100644
--- a/po/cv.po
+++ b/po/cv.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-21 13:37+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Çĕнĕ вкладка"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Çĕнĕ чÿрече"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Верси информацине пичетле те тух"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "вăйран кăлар"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,76 +258,81 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
msgid "New"
msgstr "Çĕнĕ вкладка"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -319,122 +340,122 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Çĕнĕ документ"
msgstr[1] "Çĕнĕ документ"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
#, fuzzy
msgid "Cancel Loading"
msgstr "вăйран кăлар"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
msgid "Save changes to “%s” before closing?"
msgstr "%s документра улăштарнисене упраса хăвармалла-и хупиччен?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
#, fuzzy
msgid "If you don't save, changes will be permanently lost."
msgstr ""
"Енчен те упраса хăвармастăр пулсан, юлашки 4 çеккунтри улшăнусем çухалаççе."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "Упраса хăвармасăрах хуп"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Упраса хăвар"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
msgid "Saving to “%s” failed."
msgstr "%s документра улăштарнисене упраса хăвармалла-и хупиччен?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Файл упраса хăвар"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Çĕнĕ документ"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
msgid "You may not have permission to read the file."
msgstr "Вулаймастăп \"%s\" файла. Тен вăл ваннă"
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -444,7 +465,7 @@ msgid ""
"changes."
msgstr "\"%s\" файл вырнаçнă вырăна кăларнă. Урăх вырăна упраса хăвармалла-и?"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” was deleted and there are unsaved changes."
@@ -452,53 +473,53 @@ msgstr "\"%s\" файла шăлса тасатнă. Çапах упраса х
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "\"%s\" файла шăлса тасатнă. Çапах упраса хăвармалла-и ăна?"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -517,18 +538,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -583,72 +604,64 @@ msgid_plural "%d Tabs"
msgstr[0] "Çĕнĕ вкладка"
msgstr[1] "Çĕнĕ вкладка"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "Файл упраса хăвар"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -712,20 +725,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/cy.po b/po/cy.po
index d471b3bcbc..934852fd31 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:03+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/da.po b/po/da.po
index b584633f83..7a85747e7e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2020-05-30 10:11+0000\n"
"Last-Translator: Rantyrant \n"
"Language-Team: Danish \n"
@@ -19,99 +19,107 @@ msgstr ""
"X-Generator: Weblate 3.9.1\n"
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Nyt faneblad"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Nyt Vindue"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Print versionsinfo og afslut"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "Code"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Skjul søgelinjen"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Open project folder…"
msgid "Find on Page…"
msgstr "Åbn projekt mappe…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Skjul søgelinjen"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Vis forhåndsvisning"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "No Symbols Found"
msgid "Show Symbol Outline"
msgstr "Ingen Symboler Fundet"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Skjul terminal"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Vis terminal"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Alle filer"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Tekstfiler"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Åbn nogle filer"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Åbn"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Annuller"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Åbn"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Annuller"
@@ -157,7 +165,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Branch"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Præferencer"
@@ -169,88 +177,98 @@ msgstr ""
"Klip eller kopiering uden en aktiv selektion vil klippe eller kopiere hele "
"den nuværende linje"
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "Generalt"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Gem filer ved ændring:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "Smart klip/kopi af linjer:"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Faneblade"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Automatisk indrykning:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Indsæt mellemrum i stedet for tab:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
#, fuzzy
#| msgid "Strip trailing whitespace on save"
msgid "Strip trailing whitespace:"
msgstr "Fjern efterstillede mellemrum når der gemmes"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Tab bredde:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "Projekt"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Opførsel"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Brugergrænseflade"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Luk"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Udvidelser"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Redigering"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Fremhæv matchende klammer (brackets):"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Linjeombrydning:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
#, fuzzy
#| msgid "Strip trailing whitespace"
msgid "Visible whitespace:"
msgstr "Fjern overskydende mellemrum"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "Vis minikort:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Linje bredde guide:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "Font"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Tilpasset skrifttype:"
@@ -271,77 +289,82 @@ msgstr "Genskab Ikke"
msgid "Restore Anyway"
msgstr "Indlæs Alligevel"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "Anden Applikation…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "Åbn I"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "Andre Handlinger"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "Omdøb"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "Flyt til Skrald"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Mapper"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
#| msgid "Open project folder…"
msgid "Find in Folder…"
msgstr "Åbn projekt mappe…"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "Mappe"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "Tom Fil"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "Ny"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "unavngivet mappe"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "ny fil"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Luk Mappen"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "Luk Andre Mapper"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -349,131 +372,131 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Nyt Dokument"
msgstr[1] "Nyt Dokument"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
#| msgid "Open project folder…"
msgid "Find in Project…"
msgstr "Åbn projekt mappe…"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
#| msgid "%s, Modified"
msgid "Modified"
msgstr "%s, Modificeret"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
#| msgid "Branch"
msgid "New Branch…"
msgstr "Branch"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "Branch"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s Er Ikke En Tekstfil"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "Code kan ikke indlæse denne type fil."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "Indlæs Alligevel"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, fuzzy, c-format
#| msgid "Loading File \"%s\" Is Taking a Long Time"
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "Indlæsning af Filen \"%s\" Tager Lang Tid"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "Vent venligst, mens Code indlæser filen."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "Annuller Indlæsning"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
#| msgid "Save changes to \"%s\" before closing?"
msgid "Save changes to “%s” before closing?"
msgstr "Gem ændringer til dokumentet \"%s\", inden lukning?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr "Hvis ikke du gemmer, vil ændringer gå tabt permanent."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "Luk uden at gemme"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Gem"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
#| msgid "Save changes to \"%s\" before closing?"
msgid "Saving to “%s” failed."
msgstr "Gem ændringer til dokumentet \"%s\", inden lukning?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Gem fil"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Nyt Dokument"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
#| msgid "It may be corrupt or you don't have permission to read it."
msgid "You may not have permission to read the file."
msgstr ""
"Den kan være beskadiget, eller du kan mangle tilladelse til at læse den."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
#, fuzzy
#| msgid "Load Anyway"
msgid "Show Anyway"
msgstr "Indlæs Alligevel"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -485,7 +508,7 @@ msgstr ""
"Placeringen som indeholder filen \"%s\" blev afmonteret. Vil du gemme et "
"andet sted?"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -497,13 +520,13 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "Filen \"%s\" blev slettet. Vil du gemme den alligevel?"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -513,44 +536,44 @@ msgstr ""
"Filen \"%s\" var ændret af en anden applikation. Vil du indlæse den igen "
"eller fortsætte med dine ændringer?"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Fortsæt"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "Upload"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -573,18 +596,18 @@ msgstr "Symboler"
msgid "No Project Selected"
msgstr "Projekt skabeloner"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "Tekstfil fra %s:%d"
@@ -645,73 +668,65 @@ msgid_plural "%d Tabs"
msgstr[0] "%d Faneblad"
msgstr[1] "%d Faneblade"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Åbn en fil"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Projekt skabeloner"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Gem denne fil"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Gem denne fil med et andet navn"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Genskab denne fil"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Del"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "Zoom Ud"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Zoom 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "Zoom Ind"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Vis terminal"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "Menu"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Skjul terminal"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
#| msgid "Open Folder"
msgid "Open Folder…"
msgstr "Åben Mappe"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "Skjul Alle"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "Alfabetisér"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "Administrer projektmapper"
@@ -777,20 +792,20 @@ msgstr "Erstat"
msgid "Replace all"
msgstr "Erstat alle"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "Sorter Valgte Linjer"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "Slå Kommentarer til/fra"
@@ -1245,9 +1260,6 @@ msgstr "%s - Fuldførsel af ord"
#~ msgid "Files"
#~ msgstr "Filer"
-#~ msgid "Project"
-#~ msgstr "Projekt"
-
#~ msgid "Bookmarks"
#~ msgstr "Bogmærker"
diff --git a/po/de.po b/po/de.po
index c921b5f62c..6c0847787a 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
-"PO-Revision-Date: 2023-07-14 18:07+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
+"PO-Revision-Date: 2024-01-21 21:11+0000\n"
"Last-Translator: Uwe S \n"
"Language-Team: German \n"
"Language: de\n"
@@ -16,93 +16,101 @@ 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 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Neuer Tab"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Neues Fenster"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Versionsinformation anzeigen und beenden"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr "[DATEI…]"
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr "Code (%s)"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Suchleiste ausblenden"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr "Auf Seite suchen …"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr "Projektleiste ausblenden"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr "Projektleiste anzeigen"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr "Gliederungsymbole ausblenden"
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr "Gliederungsymbole anzeigen"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Terminal ausblenden"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Terminal anzeigen"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr "%s – %s"
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Alle Dateien"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Textdateien"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Datei öffnen"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Öffnen"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Abbrechen"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Öffnen"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Abbrechen"
@@ -142,7 +150,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Zweig erstellen"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Einstellungen"
@@ -154,84 +162,94 @@ msgstr ""
"Beim Ausschneiden oder Kopieren ohne eine aktive Auswahl wird die gesamte "
"aktuelle Zeile ausgeschnitten oder kopiert"
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "Allgemein"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Dateien bei Änderungen speichern:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "Intelligentes Ausschneiden/Kopieren von Zeilen:"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Tabulatoren"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Automatisches Einrücken:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Leerzeichen anstelle von Tabulatoren einfügen:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr "Leerzeichen am Zeilenende entfernen:"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Tabulatorbreite:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "Projekt"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Verhalten"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Oberfläche"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Schließen"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Erweiterungen"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Editor"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Zusammengehörende Klammern hervorheben:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Zeilenumbruch:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr "Sichtbarer Weißraum:"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "Miniaturansicht zeigen:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Zeilenbreitenführungslinie:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "Schriftart"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Benutzerdefinierte Schrift:"
@@ -253,195 +271,200 @@ msgstr "Nicht wiederherstellen"
msgid "Restore Anyway"
msgstr "Trotzdem wiederherstellen"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr "In Terminal-Pane öffnen"
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "Andere Anwendung…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "Öffnen in"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "Andere Aktionen"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "Umbenennen"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "In den Papierkorb verschieben"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Ordner"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr "Im Ordner suchen …"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "Ordner"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "Leere Datei"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "Neu"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "unbenannter Ordner"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "neue Datei"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Ordner schließen"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "Andere Ordner schließen"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] "%u geöffnetes Dokument schließen"
msgstr[1] "%u geöffnete Dokumente schließen"
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] "%u geöffnetes Dokument ausblenden"
msgstr[1] "%u geöffnete Dokumente ausblenden"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] "%u ausgeblendetes Dokument wiederherstellen"
msgstr[1] "%u ausgeblendete Dokumente wiederherstellen"
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr "Im Projekt suchen …"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr "Geändert"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr "Fehler beim Erstellen eines neuen Zweigs: »%s«"
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr "Neuer Zweig …"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "Branch"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s ist keine Textdatei"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "Code wird diesen Dateityp nicht laden."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "Trotzdem laden"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "Das Laden von »%s« dauert sehr lange"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "Bitte warten Sie, während Code die Datei lädt."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "Laden abbrechen"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Änderungen am Dokument »%s« vor dem Schließen speichern?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
"Wenn Sie nicht speichern, gehen Ihre Änderungen unwiderruflich verloren."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "Schließen ohne zu speichern"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Speichern"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr "Speichern in »%s« fehlgeschlagen."
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Datei speichern"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Neues Dokument"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr "Dieses Dokument konnte nicht in %s gespeichert werden"
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr "Kein Text in Datei »%s« gelesen"
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
"Sie verfügen möglicherweise nicht über die benötigten Rechte zum Lesen der "
"Datei."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr "Die Datei ist möglicherweise beschädigt oder keine Textdatei"
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr "Trotzdem anzeigen"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
@@ -450,7 +473,7 @@ msgstr ""
"Der Ort, an dem sich die Datei »%s« befindet, wurde ausgehängt; es sind "
"ungespeicherte Änderungen vorhanden."
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
@@ -458,17 +481,17 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr "Datei »%s« ist schreibgeschützt."
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr "Die Datei »%s« wurde von einer anderen Anwendung bearbeitet"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
@@ -476,40 +499,40 @@ msgstr ""
"Es sind außerdem ungespeicherte Ändeungen vorhanden. Ein erneutes Laden des "
"Dokuments wird diese Änderungen überschreiben."
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
"Das Dokument wurde von einem anderen Programm geändert, nachdem Sie es "
"zuletzt gespeichert haben."
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
"»%s« konnte hier nicht gespeichert werden. Eine Kopie an anderem Ort "
"speichern?"
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr "Ignorieren"
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr "Kopie speichern …"
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Fortfahren"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr "Neu laden"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr "Überschreiben"
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr "Dokument an anderem Ort speichern"
@@ -528,18 +551,18 @@ msgstr "Symbole"
msgid "No Project Selected"
msgstr "Kein Projekt ausgewählt"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr "Aktives Git-Projekt: %s"
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr "Projekte filtern"
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "Textdatei aus %s:%d"
@@ -594,71 +617,63 @@ msgid_plural "%d Tabs"
msgstr[0] "%d Tabulator"
msgstr[1] "%d Tabulatoren"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Datei öffnen"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Projektvorlagen"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Diese Datei speichern"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Diese Datei unter anderem Namen speichern"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Diese Datei wiederherstellen"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Freigeben"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "Verkleinern"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Normale Ansichtsgröße"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "Vergrößern"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr "Systemstil verwenden"
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Terminal anzeigen"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "Menü"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Terminal ausblenden"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr "Ordner öffnen …"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "Alle einklappen"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "Alphabetisieren"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "Projektordner verwalten"
@@ -722,20 +737,20 @@ msgstr "Ersetzen"
msgid "Replace all"
msgstr "Alle ersetzen"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr "%d von %d"
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr "keine Ergebnisse"
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "Markierte Zeilen sortieren"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "Kommentar umschalten"
@@ -1217,9 +1232,6 @@ msgstr "%s – Wortvervollständigung"
#~ msgid "Files"
#~ msgstr "Dateien"
-#~ msgid "Project"
-#~ msgstr "Projekt"
-
#~ msgid "Bookmarks"
#~ msgstr "Lesezeichen"
diff --git a/po/dv.po b/po/dv.po
index c189ddecec..d15c3930c9 100644
--- a/po/dv.po
+++ b/po/dv.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/dz.po b/po/dz.po
index c189ddecec..d15c3930c9 100644
--- a/po/dz.po
+++ b/po/dz.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ee.po b/po/ee.po
index c189ddecec..d15c3930c9 100644
--- a/po/ee.po
+++ b/po/ee.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/el.po b/po/el.po
index b71b6f48d1..4e61995736 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2019-09-10 14:54+0000\n"
"Last-Translator: Daniel Foré \n"
"Language-Team: Greek \n"
@@ -19,99 +19,107 @@ msgstr ""
"X-Generator: Weblate 3.7.1\n"
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Νέα Καρτέλα"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Νέο Παράθυρο"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Εκτύπωση πληροφοριών έκδοσης και έξοδος"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "Κώδικας"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Κώδικας"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Απόκρυψη γραμμής αναζήτησης"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "Άνοιγμα ενός φακέλου"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Απόκρυψη γραμμής αναζήτησης"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Εμφάνιση προεπισκόπησης"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "Σύμβολα"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Απόκρυψη τερματικού"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Προβολή τερματικού"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Όλα τα αρχεία"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Αρχεία κειμένου"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Άνοιγμα μερικών αρχείων"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Άνοιγμα"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Ακύρωση"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Άνοιγμα"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Ακύρωση"
@@ -154,7 +162,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Αλλαγή ρυθμίσεων του Scratch"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Προτιμήσεις"
@@ -164,88 +172,98 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "Γενικά"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Αποθήκευση αρχείων όταν μεταβάλλονται:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Καρτέλες"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Αυτόματη εσοχή:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Εισαγωγή κενών αντί για καρτέλες:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
#, fuzzy
#| msgid "Strip trailing whitespace on save"
msgid "Strip trailing whitespace:"
msgstr "Αφαίρεση κενών από το τέλος των γραμμών κατά την αποθήκευση"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Πλάτος καρτέλας:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "Έργο"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Συμπεριφορά"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Περιβάλλον Χρήστη"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Κλείσιμο"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Επεκτάσεις"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Συντάκτης"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Επισήμανση ζεύγων αγκυλών:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Αναδίπλωση γραμμών:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
#, fuzzy
#| msgid "Strip trailing whitespace"
msgid "Visible whitespace:"
msgstr "Αφαίρεση κενών από το τέλος των γραμμών"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Οδηγός πλάτους γραμμής:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "Γραμματοσειρά"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Προσαρμοσμένη γραμματοσειρά:"
@@ -265,84 +283,89 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "Άλλη εφαρμογή…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
#, fuzzy
msgid "Open In"
msgstr "Άνοιγμα"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
#, fuzzy
msgid "Other Actions"
msgstr "Άλλες μορφές"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "Μετονομασία"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "Μετακίνηση στον κάδο"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Φάκελοι"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Folder…"
msgstr "Άνοιγμα ενός φακέλου"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
#, fuzzy
msgid "Folder"
msgstr "Φάκελοι"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "Άδειο αρχείο"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
msgid "New"
msgstr "Νέα Καρτέλα"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "φάκελος χωρίς τίτλο"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "Νέο αρχείο"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Κλείσιμο φακέλου"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
#| msgid "Close Folder"
msgid "Close Other Folders"
msgstr "Κλείσιμο φακέλου"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -350,129 +373,129 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Νέο έγγραφο"
msgstr[1] "Νέο έγγραφο"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Project…"
msgstr "Άνοιγμα ενός φακέλου"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
msgid "New Branch…"
msgstr "Αλλαγή ρυθμίσεων του Scratch"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
#, fuzzy
msgid "Branch"
msgstr "Αλλαγή ρυθμίσεων του Scratch"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "Το %s δεν είναι αρχείο κειμένου"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "Ο κώδικας δεν μπορεί να φορτώσει αυτόν τον τύπο αρχείου."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "Φόρτωσέ το"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "Παρακαλώ περιμένετε όσο ο κώδικας φορτώνει το αρχείο."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
#, fuzzy
msgid "Cancel Loading"
msgstr "Ακύρωση"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Αποθήκευση των αλλαγών στο έγγραφο %s πριν την έξοδο;"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
#, fuzzy
msgid "If you don't save, changes will be permanently lost."
msgstr ""
"Αν δεν αποθηκεύσετε, οι αλλαγές των τελευταίων 4 δευτερολέπτων θα χαθούν "
"μόνιμα."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "Κλείσιμο χωρίς αποθήκευση"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Αποθήκευση"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
msgid "Saving to “%s” failed."
msgstr "Αποθήκευση των αλλαγών στο έγγραφο %s πριν την έξοδο;"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Αποθήκευση Αρχείου"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Νέο έγγραφο"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
msgid "You may not have permission to read the file."
msgstr "Ίσως δεν έχετε τα απαραίτητα δικαιώματα."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
#, fuzzy
#| msgid "Load Anyway"
msgid "Show Anyway"
msgstr "Φόρτωσέ το"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -484,7 +507,7 @@ msgstr ""
"Η τοποθεσία που περιέχει το αρχείο \"%s\" δεν μπορεί να βρεθεί. Θέλετε να "
"αποθηκεύσετε σε κάποια άλλη τοποθεσία;"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -496,14 +519,14 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr ""
"Το αρχείο \"%s\" έχει διαγραφεί. Θέλετε να το αποθηκεύσετε ούτως ή άλλως;"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -513,44 +536,44 @@ msgstr ""
"Το αρχείο \"%s\" τροποποιήθηκε από κάποια άλλη εφαρμογή. Θέλετε να το "
"φορτώσετε ξανά ή να συνεχίσετε την επεξεργασία;"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Συνέχεια"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "Μεταφόρτωση"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -573,18 +596,18 @@ msgstr "Σύμβολα"
msgid "No Project Selected"
msgstr "Πρότυπα έργων"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, fuzzy, c-format
msgid "Text file from %s:%d"
msgstr "Αρχείο κειμένου από "
@@ -646,74 +669,66 @@ msgid_plural "%d Tabs"
msgstr[0] "Νέα Καρτέλα"
msgstr[1] "Νέα Καρτέλα"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Άνοιγμα αρχείου"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Πρότυπα έργων"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Αποθήκευση αυτού του αρχείου"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Αποθήκευση αυτού του αρχείου με διαφορετικό όνομα"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Επαναφορά αυτού του αρχείου"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Κοινή χρήση"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
#, fuzzy
msgid "Zoom Out"
msgstr "Μεγέθυνση"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Μεγέθυνση 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
#, fuzzy
msgid "Zoom In"
msgstr "Μεγέθυνση"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Προβολή τερματικού"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "Μενού"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Απόκρυψη τερματικού"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "Άνοιγμα ενός φακέλου"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -779,20 +794,20 @@ msgstr "Αντικατάσταση"
msgid "Replace all"
msgstr "Αντικατάσταση Όλων"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
@@ -1197,9 +1212,6 @@ msgstr "%s - Συμπλήρωση Λέξεων"
#~ msgid "Files"
#~ msgstr "Αρχεία"
-#~ msgid "Project"
-#~ msgstr "Έργο"
-
#~ msgid "Bookmarks"
#~ msgstr "Σελιδοδείκτες"
diff --git a/po/en_AU.po b/po/en_AU.po
index 6c4072a476..2d75118046 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2019-09-10 14:54+0000\n"
"Last-Translator: Daniel Foré \n"
"Language-Team: English (Australia) \n"
"Language-Team: English (Canada) \n"
"Language-Team: English (United Kingdom) \n"
@@ -17,93 +17,101 @@ 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 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:04+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "New Tab"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "New Window"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Print version info and exit"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr "[FILE…]"
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr "Code (%s)"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Hide search bar"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr "Find on Page…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr "Hide Projects Sidebar"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr "Show Projects Sidebar"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr "Hide Symbol Outline"
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr "Show Symbol Outline"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Hide Terminal"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Show Terminal"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "All files"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Text files"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Open some files"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Open"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Cancel"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Open"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Cancel"
@@ -142,7 +150,7 @@ msgstr "The branch name must be unique and follow Git naming rules."
msgid "Create Branch"
msgstr "Create Branch"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Preferences"
@@ -154,84 +162,92 @@ msgstr ""
"Cutting or copying without an active selection will cut or copy the entire "
"current line"
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr "Default build directory"
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "General"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Save files when changed:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "Smart cut/copy lines:"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Tabs"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Automatic indentation:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Insert spaces instead of tabs:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr "Strip trailing whitespace:"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Tab width:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr "Projects"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Behaviour"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Interface"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Close"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Extensions"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Editor"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Highlight matching square brackets:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Line wrap:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr "Visible whitespace:"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "Show Mini Map:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Line width guide:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "Font"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Custom font:"
@@ -251,192 +267,197 @@ msgstr "Don't Restore"
msgid "Restore Anyway"
msgstr "Restore Anyway"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr "Open in Terminal Pane"
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "Other Application…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "Open In"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "Other Actions"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "Rename"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "Move to Rubbish Bin"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Folders"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr "Find in Folder…"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "Folder"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "Empty File"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "New"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "untitled folder"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "new file"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Close Folder"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "Close Other Folders"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] "Close %u Open Document"
msgstr[1] "Close %u Open Documents"
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] "Hide %u Open Document"
msgstr[1] "Hide %u Open Documents"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] "Restore %u Hidden Document"
msgstr[1] "Restore %u Hidden Documents"
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr "Find in Project…"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr "Modified"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr "Error while creating new branch: “%s”"
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr "New Branch…"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "Branch"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s Is Not a Text File"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "Code will not load this type of file."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "Load Anyway"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "Loading File “%s” Is Taking a Long Time"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "Please wait while Code is loading the file."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "Cancel Loading"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Save changes to “%s” before closing?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr "If you don't save, changes will be permanently lost."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "Close Without Saving"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Save"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr "Saving to “%s” failed."
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Save File"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "New Document"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr "Cannot save this document to %s"
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr "Cannot read text in file “%s”"
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr "You may not have permission to read the file."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr "The file may be corrupt or may not be a text file"
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr "Show Anyway"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
@@ -445,24 +466,24 @@ msgstr ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr "File “%s” was deleted and there are unsaved changes."
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr "File “%s” does not have write permission."
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr "File “%s” was modified by an external application"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
@@ -470,36 +491,36 @@ msgstr ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr "The document changed externally since you last saved it."
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr "“%s” can't be saved here. Save a duplicate somewhere else?"
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr "Ignore"
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr "Save Duplicate…"
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Continue"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr "Reload"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr "Overwrite"
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr "Save Document elsewhere"
@@ -518,18 +539,18 @@ msgstr "Symbols"
msgid "No Project Selected"
msgstr "No Project Selected"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr "Active Git project: %s"
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr "Filter projects"
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "Text file from %s:%d"
@@ -584,71 +605,63 @@ msgid_plural "%d Tabs"
msgstr[0] "%d Tab"
msgstr[1] "%d Tabs"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Open a file"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Project templates"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Save this file"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Save this file with a different name"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Restore this file"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Share"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "Zoom Out"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Zoom 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "Zoom In"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr "Follow System Style"
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Show Terminal"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "Menu"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Hide Terminal"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr "Open Folder…"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "Collapse All"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "Alphabetise"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "Manage project folders"
@@ -712,20 +725,20 @@ msgstr "Replace"
msgid "Replace all"
msgstr "Replace all"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr "%d of %d"
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr "no results"
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "Sort Selected Lines"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "Toggle Comment"
@@ -1165,9 +1178,6 @@ msgstr "%s - Word Completion"
#~ msgid "Files"
#~ msgstr "Files"
-#~ msgid "Project"
-#~ msgstr "Project"
-
#~ msgid "Bookmarks"
#~ msgstr "Bookmarks"
diff --git a/po/eo.po b/po/eo.po
index 217b1e1675..74f7b67e68 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2020-03-14 21:09+0000\n"
"Last-Translator: Shtonchjo \n"
"Language-Team: Esperanto \n"
"Language-Team: Spanish \n"
@@ -19,99 +19,107 @@ msgstr ""
"X-Generator: Weblate 4.4.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:03+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Pestaña nueva"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Ventana nueva"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Mostrar información de la versión y salir"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr "[ARCHIVO…]"
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "Code"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Ocultar la barra de búsqueda"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Find in Project…"
msgid "Find on Page…"
msgstr "Buscar en el proyecto…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Ocultar la barra de búsqueda"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Mostrar previsualización"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "No Symbols Found"
msgid "Show Symbol Outline"
msgstr "No se encontró ningún símbolo"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Ocultar terminal"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Mostrar terminal"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Todos los archivos"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Archivos de texto"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Abra algunos archivos"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Abrir"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Cancelar"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Abrir"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Cancelar"
@@ -152,7 +160,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Crear rama"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Preferencias"
@@ -164,88 +172,98 @@ msgstr ""
"Cortar o copiar sin una selección activa cortará o copiará todo el renglón "
"actual"
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "General"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Guardar archivos al modificarlos:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "Corte y copia inteligente de renglones:"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Tabulaciones"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Sangría automática:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Insertar espacios en lugar de tabuladores:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
#, fuzzy
#| msgid "Strip trailing whitespace on save"
msgid "Strip trailing whitespace:"
msgstr "Eliminar espacios en blanco al guardar"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Anchura del tabulador:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "Proyecto"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Comportamiento"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Interfaz"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Cerrar"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Extensiones"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Editor"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Resaltar corchetes correspondientes:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Ajuste de renglones:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
#, fuzzy
#| msgid "Strip trailing whitespace"
msgid "Visible whitespace:"
msgstr "Eliminar espacios en blanco"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "Mostrar el minimapa:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Guía de longitud de renglón:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "Tipo de letra"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Tipo de letra personalizado:"
@@ -266,75 +284,80 @@ msgstr "No restaurar"
msgid "Restore Anyway"
msgstr "Cargar de todos modos"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "Otra aplicación…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "Abrir en"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "Otras acciones"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "Cambiar nombre"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "Mover a la papelera"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Carpetas"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr "Buscar en carpeta…"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "Carpeta"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "Archivo vacío"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "Nuevo"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "carpeta sin título"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "archivo nuevo"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Cerrar carpeta"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "Cerrar otras carpetas"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -342,125 +365,125 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Documento nuevo"
msgstr[1] "Documento nuevo"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr "Buscar en el proyecto…"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr "Modificado"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr "Error al crear una rama nueva: «%s»"
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr "Rama nueva…"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "Rama"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s no es un archivo de texto"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "Code no cargará este tipo de archivo."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "Cargar de todos modos"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, fuzzy, c-format
#| msgid "Loading File \"%s\" Is Taking a Long Time"
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "La carga del archivo «%s» está demorando mucho"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "Espere mientras Code carga el archivo."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "Cancelar carga"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
#| msgid "Save changes to \"%s\" before closing?"
msgid "Save changes to “%s” before closing?"
msgstr "¿Quiere guardar los cambios del documento «%s» antes de cerrar?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr "Si no guarda el documento, los cambios se perderán permanentemente."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "Cerrar sin guardar"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Guardar"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
#| msgid "Save changes to \"%s\" before closing?"
msgid "Saving to “%s” failed."
msgstr "¿Quiere guardar los cambios del documento «%s» antes de cerrar?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Guardar archivo"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Documento nuevo"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, fuzzy, c-format
#| msgid "Search for text in “%s”"
msgid "Cannot read text in file “%s”"
msgstr "Buscar texto en «%s»"
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
#| msgid "It may be corrupt or you don't have permission to read it."
msgid "You may not have permission to read the file."
msgstr "Tal vez esté dañado o no tenga los permisos necesarios para leerlo."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
#, fuzzy
#| msgid "Load Anyway"
msgid "Show Anyway"
msgstr "Cargar de todos modos"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -472,7 +495,7 @@ msgstr ""
"La ubicación que contiene el archivo «%s» fue desmontada. ¿Quiere guardarlo "
"en otra ubicación?"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -484,13 +507,13 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "El archivo «%s» fue eliminado. ¿Quiere guardarlo de todos modos?"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -500,44 +523,44 @@ msgstr ""
"El archivo «%s» fue modificado por una aplicación externa. ¿Quiere cargarlo "
"nuevamente o continuar editándolo?"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Continuar"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "Enviar"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -558,18 +581,18 @@ msgstr "Símbolos"
msgid "No Project Selected"
msgstr "Ningún proyecto ha sido seleccionado"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr "Proyecto Git activo: %s"
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr "Filtrar proyectos"
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "Archivo de texto de %s:%d"
@@ -630,73 +653,65 @@ msgid_plural "%d Tabs"
msgstr[0] "%d tabulador"
msgstr[1] "%d tabuladores"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Abrir un archivo"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Plantillas de proyectos"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Guardar este archivo"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Guardar este archivo con otro nombre"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Restaurar este archivo"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Compartir"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "Alejar"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Escala 1∶1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "Acercar"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Mostrar terminal"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "Menú"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Ocultar terminal"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
#| msgid "Open Folder"
msgid "Open Folder…"
msgstr "Abrir carpeta"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "Contraer todo"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "Por orden alfabético"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "Gestionar carpetas de proyecto"
@@ -766,20 +781,20 @@ msgstr "Reemplazar"
msgid "Replace all"
msgstr "Reemplazar todo"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr "sin resultados"
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "Ordenar líneas seleccionadas"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "Alternar comentario"
@@ -1301,9 +1316,6 @@ msgstr "%s. Compleción de palabras"
#~ msgid "Files"
#~ msgstr "Archivos"
-#~ msgid "Project"
-#~ msgstr "Proyecto"
-
#~ msgid "Bookmarks"
#~ msgstr "Marcadores"
diff --git a/po/et.po b/po/et.po
index 154c4b1757..65c3cc75df 100644
--- a/po/et.po
+++ b/po/et.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2016-06-14 15:42+0000\n"
"Last-Translator: Kristjan Vool \n"
"Language-Team: Estonian \n"
@@ -18,98 +18,106 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Uus kaart"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Uus aken"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Prindi versiooni teave ja välju"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Peida leidmise tööriistariba"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "Ava kaust"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Peida leidmise tööriistariba"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Näita eelvaadet"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "Sümbolid"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Peida terminal"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Näita terminali"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Kõik Failid"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Tekstifailid"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Faili avamine"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Ava"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Loobu"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Ava"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Loobu"
@@ -152,7 +160,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Scratch'i eelistuste muutmine"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Eelistused"
@@ -162,88 +170,98 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "Üldine"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Faili muudatuste automaatne salvestamine:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Kaardid"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Automaatne taandus:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Vahemärkide lisamine tab'i märgi asemel:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
#, fuzzy
#| msgid "Strip trailing whitespace on save"
msgid "Strip trailing whitespace:"
msgstr "Salvestamisel ei lisata faili lõppu tühja rida"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Tab - klahvi laius vahemärkidena:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "Projektid:"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Käitumine"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Välimus"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Sulge"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Pluginad"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Redaktor"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Sobivuste esiletõstmine:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Teksti murdmine:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
#, fuzzy
#| msgid "Strip trailing whitespace"
msgid "Visible whitespace:"
msgstr "Viimase tühja rea ärajätmine"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "Pisikuva kuvamine:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Abistav lehe laius:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Kohandatud kirjatüüp:"
@@ -263,84 +281,89 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
#, fuzzy
msgid "Open In"
msgstr "Ava"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
#, fuzzy
msgid "Other Actions"
msgstr "Teised formaadid"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Kaustad"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Folder…"
msgstr "Ava kaust"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
#, fuzzy
msgid "Folder"
msgstr "Kaustad"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
msgid "New"
msgstr "Uus kaart"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "Loo fail"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Sulge kaust"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
#| msgid "Close Folder"
msgid "Close Other Folders"
msgstr "Sulge kaust"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -348,129 +371,129 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Uus fail"
msgstr[1] "Uus fail"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Project…"
msgstr "Ava kaust"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
msgid "New Branch…"
msgstr "Scratch'i eelistuste muutmine"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
#, fuzzy
msgid "Branch"
msgstr "Scratch'i eelistuste muutmine"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
#, fuzzy
msgid "Cancel Loading"
msgstr "Loobu"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Kas salvestada faili %s muudatused enne sulgemist?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
#, fuzzy
msgid "If you don't save, changes will be permanently lost."
msgstr ""
"Kui sa ei salvesta, siis viimase 4 sekundi jooksul tehtud muudatused lähevad "
"kaotsi."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "Sulge ilma salvestamata"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Salvesta"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
msgid "Saving to “%s” failed."
msgstr "Kas salvestada faili %s muudatused enne sulgemist?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Faili salvestamine"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Uus fail"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
msgid "You may not have permission to read the file."
msgstr ""
"Faili \"%s\" polnud võimalik lugeda. See võib olla rikutud\n"
"või sul puuduvad selle lugemiseks vajalikud õigused."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -481,7 +504,7 @@ msgid ""
msgstr ""
"Faili \"%s\" sisaldav asukoht haagiti lahti. Soovid teise kohta salvestada?"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -493,13 +516,13 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "Fail \"%s\" kustutati. Soovid sellegipoolest salvestada?"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -509,44 +532,44 @@ msgstr ""
"Faili \"%s\" muudeti teise rakenduse poolt. Soovid sa selle uuesti laadida "
"või jätkata juba tehtud muudatustega?"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Katkesta"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "Laadi üles"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -569,18 +592,18 @@ msgstr "Sümbolid"
msgid "No Project Selected"
msgstr "Projektide mallid"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, fuzzy, c-format
msgid "Text file from %s:%d"
msgstr "Tekstifail asukohast "
@@ -642,74 +665,66 @@ msgid_plural "%d Tabs"
msgstr[0] "Uus kaart"
msgstr[1] "Uus kaart"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Ava fail"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Projektide mallid"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Salvesta"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Salvesta teise nimega..."
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Taasta algne fail"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Jaga"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
#, fuzzy
msgid "Zoom Out"
msgstr "Suurendus"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Suurendus 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
#, fuzzy
msgid "Zoom In"
msgstr "Suurendus"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Näita terminali"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Peida terminal"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "Ava kaust"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -775,20 +790,20 @@ msgstr "Asenda"
msgid "Replace all"
msgstr "Asenda kõik"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
@@ -1211,9 +1226,6 @@ msgstr "%s - sõnade lõpetamine"
#~ msgid "Files"
#~ msgstr "Failid:"
-#~ msgid "Project"
-#~ msgstr "Projektid:"
-
#~ msgid "Bookmarks"
#~ msgstr "Järjehoidjad:"
diff --git a/po/eu.po b/po/eu.po
index af41aa36b4..f3cb3c1a09 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2016-09-11 21:29+0000\n"
"Last-Translator: Thadah Denyse \n"
"Language-Team: Basque \n"
@@ -18,98 +18,106 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Fitxa berria"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Leiho berria"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Ezkutatu bilaketa-barra"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "Ireki karpeta"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Ezkutatu bilaketa-barra"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Erakutsi aurreikuspena"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "Ikurrak"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Ezkutatu terminala"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Erakutsi terminala"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Fitxategi guztiak"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Testu-fitxategiak"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Fitxategi batzuk ireki"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Ireki"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Utzi"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Ireki"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Utzi"
@@ -152,7 +160,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Aldatu Scratch-en ezarpenak"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Hobespenak"
@@ -162,88 +170,98 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "Orokorra"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Gorde fitxategiak aldatzean:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Fitxak"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Koska automatikoa:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Txertatu zuriuneak tabuladoreen ordez:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
#, fuzzy
#| msgid "Strip trailing whitespace on save"
msgid "Strip trailing whitespace:"
msgstr "Garbitu amaierako zuriunea gordetzerakoan"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Tabuladorearen zabalera:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "Proiektua"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Portaera"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Interfazea"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Itxi"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Hedapenak"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Editorea"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Nabarmendu parentesi pareak:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Lerro-doipena:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
#, fuzzy
#| msgid "Strip trailing whitespace"
msgid "Visible whitespace:"
msgstr "Garbitu amaierako zuriunea"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Lerro-zabaleraren gida:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Letra-tipo pertsonalizatua:"
@@ -263,84 +281,89 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
#, fuzzy
msgid "Open In"
msgstr "Ireki"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
#, fuzzy
msgid "Other Actions"
msgstr "Beste formatuak"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Karpetak"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Folder…"
msgstr "Ireki karpeta"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
#, fuzzy
msgid "Folder"
msgstr "Karpetak"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
msgid "New"
msgstr "Fitxa berria"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "Fitxategi berria"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Itxi karpeta"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
#| msgid "Close Folder"
msgid "Close Other Folders"
msgstr "Itxi karpeta"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -348,132 +371,132 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Dokumentu berria"
msgstr[1] "Dokumentu berria"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Project…"
msgstr "Ireki karpeta"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
msgid "New Branch…"
msgstr "Aldatu Scratch-en ezarpenak"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
#, fuzzy
msgid "Branch"
msgstr "Aldatu Scratch-en ezarpenak"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
#, fuzzy
msgid "Cancel Loading"
msgstr "Utzi"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
msgid "Save changes to “%s” before closing?"
msgstr "%s dokumentuaren aldaketak gorde irten aurretik?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
#, fuzzy
msgid "If you don't save, changes will be permanently lost."
msgstr ""
"Ez baduzu gordetzen, azken 4 segundotako aldaketak betirako galduko dira."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "Itxi gorde gabe"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Gorde"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
msgid "Saving to “%s” failed."
msgstr "%s dokumentuaren aldaketak gorde irten aurretik?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Gorde fitxategia"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Dokumentu berria"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -485,12 +508,12 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -500,44 +523,44 @@ msgstr ""
"\"%s\" fitxategia kanpoko aplikazio batengatik aldatua izan da. Berriro "
"kargatu nahi duzu ala zure edizioa jarraitu?"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Jarraitu"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "Kargatu"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -560,18 +583,18 @@ msgstr "Ikurrak"
msgid "No Project Selected"
msgstr "Proiektuaren txantiloiak"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, fuzzy, c-format
msgid "Text file from %s:%d"
msgstr "Testu-fitxategiak"
@@ -633,74 +656,66 @@ msgid_plural "%d Tabs"
msgstr[0] "Fitxa berria"
msgstr[1] "Fitxa berria"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Ireki fitxategi bat"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Proiektuaren txantiloiak"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Gorde fitxategi hau"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Gorde fitxategi hau izen desberdin batekin"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Leheneratu fitxategi hau"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Partekatu"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
#, fuzzy
msgid "Zoom Out"
msgstr "Zoom-a"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Zoom-a 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
#, fuzzy
msgid "Zoom In"
msgstr "Zoom-a"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Erakutsi terminala"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Ezkutatu terminala"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "Ireki karpeta"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -766,20 +781,20 @@ msgstr "Ordezkatu"
msgid "Replace all"
msgstr "Ordeztu denak"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
@@ -1117,9 +1132,6 @@ msgstr "%s - Hitzak osatu"
#~ msgid "Files"
#~ msgstr "Fitxategiak"
-#~ msgid "Project"
-#~ msgstr "Proiektua"
-
#~ msgid "Bookmarks"
#~ msgstr "Laster-markak"
diff --git a/po/extra/aa.po b/po/extra/aa.po
index 5342cee802..d73e56ee18 100644
--- a/po/extra/aa.po
+++ b/po/extra/aa.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ab.po b/po/extra/ab.po
index 437fe5eeae..ef70b3c6e8 100644
--- a/po/extra/ab.po
+++ b/po/extra/ab.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ae.po b/po/extra/ae.po
index 399c15a47c..5178b0966c 100644
--- a/po/extra/ae.po
+++ b/po/extra/ae.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/af.po b/po/extra/af.po
index 6893cba999..c3d15ebec0 100644
--- a/po/extra/af.po
+++ b/po/extra/af.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ak.po b/po/extra/ak.po
index ee3f5db6ea..67839e978b 100644
--- a/po/extra/ak.po
+++ b/po/extra/ak.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/am.po b/po/extra/am.po
index a2f9f11013..bf7c62abc4 100644
--- a/po/extra/am.po
+++ b/po/extra/am.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/an.po b/po/extra/an.po
index 0b6f2408bb..01e975f40f 100644
--- a/po/extra/an.po
+++ b/po/extra/an.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ar.po b/po/extra/ar.po
index 6eab85478e..fece70db9b 100644
--- a/po/extra/ar.po
+++ b/po/extra/ar.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2021-09-06 18:12+0000\n"
"Last-Translator: aalhaif \n"
"Language-Team: Arabic \n"
@@ -113,243 +113,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/as.po b/po/extra/as.po
index 7c7eb89842..03dc3bfcae 100644
--- a/po/extra/as.po
+++ b/po/extra/as.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ast.po b/po/extra/ast.po
index e421eb86fe..a8cda34dec 100644
--- a/po/extra/ast.po
+++ b/po/extra/ast.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/av.po b/po/extra/av.po
index 9a8d8e873b..9ea86cd048 100644
--- a/po/extra/av.po
+++ b/po/extra/av.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ay.po b/po/extra/ay.po
index f06ceecae5..7196983ca6 100644
--- a/po/extra/ay.po
+++ b/po/extra/ay.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/az.po b/po/extra/az.po
index e421535290..9ca3ae0f6c 100644
--- a/po/extra/az.po
+++ b/po/extra/az.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ba.po b/po/extra/ba.po
index a0477d5975..a44ccf59d7 100644
--- a/po/extra/ba.po
+++ b/po/extra/ba.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/be.po b/po/extra/be.po
index f7ff1e407e..b4641f1ec2 100644
--- a/po/extra/be.po
+++ b/po/extra/be.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -112,243 +112,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/bg.po b/po/extra/bg.po
index ddddca91a3..8a1c9600de 100644
--- a/po/extra/bg.po
+++ b/po/extra/bg.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2019-09-10 14:55+0000\n"
"Last-Translator: Daniel Foré \n"
"Language-Team: Bulgarian \n"
"Language-Team: Tibetan \n"
@@ -122,243 +122,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/br.po b/po/extra/br.po
index 22729f461c..083f723078 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/bs.po b/po/extra/bs.po
index 5d45195484..db4fb52542 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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: ca\n"
@@ -16,7 +16,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 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:04+0000\n"
#: data/code.metainfo.xml.in:9
@@ -145,47 +145,110 @@ msgstr "Minimapa opcional per facilitar la navegació per fitxers grans"
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "Millores:"
#: data/code.metainfo.xml.in:73
+msgid ""
+"When opening a file in Code from the commandline or another app, a line/char "
+"position or selection range may be specified"
+msgstr ""
+"Quan s'obre un fitxer al Codi des de la línia d'ordres o una altra "
+"aplicació, es pot especificar una posició de línia / caràcter o un interval "
+"de selecció."
+
+#: data/code.metainfo.xml.in:74
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
+msgstr ""
+"Afegiu un connector de cerca difusa que trobi fitxers a tots els projectes "
+"oberts"
+
+#: data/code.metainfo.xml.in:75
+msgid "Save and restore the state of the terminal pane"
+msgstr "Desa i restaura l'estat del plafó del terminal"
+
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
+msgid "Minor updates:"
+msgstr "Actualitzacions menors:"
+
+#: data/code.metainfo.xml.in:79
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
+msgstr ""
+"\"Troba a la carpeta\" ara funciona per a totes les carpetes i fitxers de "
+"text, no només amb fitxers \".vala\"."
+
+#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr "\"Segueix l'estil del sistema\" ara es respecta plenament."
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr "L'opció de línia d'ordres \"--new-tab\" ara funciona."
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr "L'amplada del plafó de símbols està ara sincronitzada i desada."
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+"Les carpetes del projecte es tanquen automàticament si es canvien de nom, es "
+"mouen o se suprimeixen externament."
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+"S'han corregit els fitxers de còpia de seguretat temporals que persistien en "
+"algunes circumstàncies."
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr "S'ha millorat l'acció Mostra-Reemplaça."
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Traduccions actualitzades"
+
+#: data/code.metainfo.xml.in:112
msgid "Search options transferred to searchbar menu"
msgstr "Opcions de cerca transferides al menú de la barra de cerca"
-#: data/code.metainfo.xml.in:74
+#: data/code.metainfo.xml.in:113
msgid "Whole word search option added"
msgstr "S'ha afegit l'opció de cerca de paraules senceres"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:114
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
"La paraula sencera, el mode sensible a majúscules i minúscules i la "
"configuració de cerca d'expressió regular ara persisteixen."
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
-msgid "Minor updates:"
-msgstr "Actualitzacions menors:"
-
-#: data/code.metainfo.xml.in:79
+#: data/code.metainfo.xml.in:118
msgid "The search bar now updates properly after changing the active document"
msgstr ""
"La barra de cerca ara s'actualitza correctament després de canviar el "
"document actiu."
-#: data/code.metainfo.xml.in:80
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
"Intentar desar un document en una ubicació que no es pot escriure ara es "
"gestiona millor."
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
@@ -193,20 +256,20 @@ msgstr ""
"L'estil del sistema ara el segueix el contorn del símbol i quan es llança "
"sense documents oberts."
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
"La cerca mixta que distingeix entre majúscules i minúscules ara funciona com "
"s'esperava."
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
"Els resultats de la cerca ja no canvien de manera inesperada quan s'enfoca "
"un document."
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
@@ -214,7 +277,7 @@ msgstr ""
"Ara sempre hi ha un projecte actiu a l'inici si hi ha projectes a la barra "
"lateral."
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
@@ -222,38 +285,34 @@ msgstr ""
"Si s'està executant una branca de desenvolupament això es mostra al títol de "
"la finestra i a la informació sobre eines de l'acoblador."
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
"Les dreceres Ctrl+Pàgina amunt i Ctrl+Pàgina avall ara canvien de pestanya."
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
+"S'assegura que el projecte actiu a l'inici (inclou carpetes que no siguin "
+"git)."
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Traduccions actualitzades"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr "Icona de l'aplicació redissenyada"
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr "Nous estils personalitzats foscos i clars per a la vista font"
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr "Opció per seguir la preferència d'estil fosc del sistema"
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr "Capacitat de fer mig mosaic en pantalles de portàtils petites"
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
@@ -261,7 +320,7 @@ msgstr ""
"Tant Troba a la pàgina com Troba al projecte ara estan disponibles al menú "
"de l'aplicació en lloc de a la barra de capçalera."
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:168
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
@@ -269,7 +328,7 @@ msgstr ""
"Les opcions per amagar i mostrar plafons ara estan totes presents en un "
"conjunt compacte de botons enllaçats al menú de l'aplicació."
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
@@ -277,12 +336,12 @@ msgstr ""
"La barra lateral ara conté el botó de selecció de projectes i omple l'alçada "
"de la finestra."
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
"Iniciar una cerca global amb el text seleccionat ara preemplena aquest text."
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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 + \\\""
@@ -290,7 +349,7 @@ msgstr ""
"El plafó de contorn de símbols es mostra ara a la dreta de la vista font i "
"es pot mostrar i amagar amb la drecera de teclat \"Alt + \\\"."
-#: data/code.metainfo.xml.in:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
@@ -298,7 +357,7 @@ msgstr ""
"El terminal, l'esquema de símbols i els connectors de Strip Trailing "
"Whitespace ara formen part de la base de codi principal."
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
@@ -306,14 +365,14 @@ msgstr ""
"Mostra una barra d'informació quan la configuració de l'amplada de la "
"pestanya la sobreescriu un fitxer d'EditorConfig."
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
"La drecera per reconstruir la llista de paraules de compleció ara és \"Ctrl "
"+ |\"."
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -321,11 +380,11 @@ msgstr ""
"El nom del fitxer del document actual es mostra ara com a títol de la "
"finestra a la vista de multitasca."
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr "Les carpetes ocultes ara es mostren a la barra lateral del projecte."
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
@@ -333,16 +392,16 @@ msgstr ""
"Durant la cerca es mostren el resultat seleccionat actualment i el nombre de "
"resultats."
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr "La barra de cerca ara té un mode d'expressió regular."
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Correccions:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -350,11 +409,11 @@ msgstr ""
"Ara és possible canviar la branca de Git amb fitxers sense seguiment "
"presents en un projecte."
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr "Les fallades s'eviten durant la cerca en projectes grossos."
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
@@ -362,46 +421,46 @@ msgstr ""
"Ara es focalitza el document correcte després d'obrir el Codi des d'un "
"programa extern."
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
"La duplicació de línies ara actua correctament si no hi ha cap selecció."
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
"El Codi ja no es bloqueja quan se li demana que obri un format d'URI "
"desconegut."
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
"Els projectes amb el mateix nom ara també inclouen el nom de la carpeta "
"principal."
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
"Quan us desplaceu als resultats de la cerca, aneu una mica més enllà per "
"obtenir una millor visibilitat."
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr "Ús del portal FileChooser en comptes del de GTK"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr "Centrat el diàleg de cerca global a la finestra principal del Codi"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
"Correcció de la visibilitat del botó del terminal a la pàgina de benvinguda"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -409,7 +468,7 @@ msgstr ""
"Correcció d'algunes dreceres de teclat que afecten el document desenfocat en "
"lloc del terminal enfocat"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
@@ -417,25 +476,25 @@ msgstr ""
"Tanqueu el terminal si s'ha sortit de l'intèrpret d'ordres i creeu-ne un de "
"nou si es torna a obrir sense."
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr "El quadre combinat \"Espai en blanc visible\" ara és un interruptor."
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr "Correcció del bloqueig en crear una finestra nova des de la pestanya"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
"S'assegura que els fitxers creats des de la barra lateral s’obrin "
"automàticament."
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "Amaga el botó de selecció de projectes quan s'amaga la barra lateral."
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "S'assegura que tota la còpia sigui traduïble."
diff --git a/po/extra/ca@valencia.po b/po/extra/ca@valencia.po
index 9c90b6afd0..621e29773d 100644
--- a/po/extra/ca@valencia.po
+++ b/po/extra/ca@valencia.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ce.po b/po/extra/ce.po
index c539229f60..fe35b959a1 100644
--- a/po/extra/ce.po
+++ b/po/extra/ce.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ch.po b/po/extra/ch.po
index 310a97cd0d..5ca223c020 100644
--- a/po/extra/ch.po
+++ b/po/extra/ch.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ckb.po b/po/extra/ckb.po
index a47e4e0d40..3ee95dbf58 100644
--- a/po/extra/ckb.po
+++ b/po/extra/ckb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2022-09-10 09:55+0000\n"
"Last-Translator: Aga Ismael \n"
"Language-Team: Kurdish (Central) \n"
"Language-Team: Czech \n"
@@ -141,217 +141,263 @@ msgstr "Volitelná minimapa, která usnadňuje pohyb po větších souborech"
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "Vylepšení:"
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "Drobné aktualizace:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Aktualizovány překlady"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Aktualizovány překlady"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Opravuje:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
"Projekty, které jsou nazvané stejně, jsou nyní rozlišovány pomocí své "
"nadřazené složky"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr "Při posouvání k výsledkům hledání, je zlepšena jejich viditelnost"
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr "Použit portál FileChooser namísto toho z GTK"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr "Vystředěn dialog globálního vyhledávání nad hlavním oknem s Code"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr "Opravena viditelnost tlačítka terminálu na uvítací stránce"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -359,7 +405,7 @@ msgstr ""
"Opraveny některé klávesové zkratky týkající se nezaměřeného dokumentu "
"namísto zaměřeného terminálu"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
@@ -367,24 +413,24 @@ msgstr ""
"Pokud shell skončil, terminál je zavřen a při opětovném otevření také znovu "
"otevřen"
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr "Kombinovaná nabídka „Viditelné prázdné znaky“ je nyní přepínač"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr "Opraven pád při vytváření nového okna z rozbalovací nabídky karty"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
"Zajištěno že soubory vytvořené z postranního panelu jsou automaticky otevřeny"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "Přidáno tlačítko skrytí voliče projektu při skrytí postranního panelu"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "Zajištěno že jsou překladatelné veškeré kopie"
diff --git a/po/extra/cu.po b/po/extra/cu.po
index e87d01104e..c0176a0f26 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/cv.po b/po/extra/cv.po
index 54dbc0f912..38c93ea03f 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/cy.po b/po/extra/cy.po
index 38be677a29..570db7d6d5 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/da.po b/po/extra/da.po
index 3ff48e259e..6f898ffb1f 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2020-05-27 12:11+0000\n"
"Last-Translator: Rantyrant \n"
"Language-Team: Danish \n"
@@ -135,243 +135,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary LLC."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "Mindre opdateringer:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Opdaterede oversættelser"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Opdaterede oversættelser"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Rettelser:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/de.po b/po/extra/de.po
index 08d464f133..27051bb69f 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2022-07-06 19:12+0000\n"
"Last-Translator: Uwe S \n"
"Language-Team: German \n"
@@ -145,216 +145,262 @@ msgstr "Optionale Mini-Map um das Navigieren in großen Dateien zu vereinfachen"
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "Verbesserungen:"
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "Weitere Aktualisierungen:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Aktualisierte Übersetzungen"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Aktualisierte Übersetzungen"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Fehlerbehebungen:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
"Sichtbarkeit des Terminal-Buttons auf der Willkommensseite sicherstellen"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -362,32 +408,32 @@ msgstr ""
"Behebt einen Fehler, bei dem einige Tastenkürzel ihren Effekt auf ein nicht "
"ausgewähltes Dokument statt des gewählten hatten"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
"Behebt einen Fehler beim Öffnen neuer Fenster durch das Ablegen eines Tabs"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
"Sicherstellen, dass über die Seitenleiste erstellte Dateien automatisch "
"geöffnet werden"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "Projekt-Wahlbutton verstecken, wenn die Seitenleiste versteckt wird"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "Sicherstellen, dass Copytext übersetzbar ist"
diff --git a/po/extra/dv.po b/po/extra/dv.po
index 408fe219a6..9c3d34a77e 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/dz.po b/po/extra/dz.po
index b52687c0e3..1d29e4fd33 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ee.po b/po/extra/ee.po
index f42cca8f0c..41ddcd88ed 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/el.po b/po/extra/el.po
index 8e3bfb25e9..8eee16f78e 100644
--- a/po/extra/el.po
+++ b/po/extra/el.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2019-09-10 14:55+0000\n"
"Last-Translator: Daniel Foré \n"
"Language-Team: Greek \n"
@@ -114,243 +114,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/en_AU.po b/po/extra/en_AU.po
index 43b85bf2ef..36a71d3a3a 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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"
@@ -17,7 +17,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 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:04+0000\n"
#: data/code.metainfo.xml.in:9
@@ -140,43 +140,101 @@ msgstr "Optional mini-map to make navigating large files easier"
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "Improvements:"
#: data/code.metainfo.xml.in:73
+msgid ""
+"When opening a file in Code from the commandline or another app, a line/char "
+"position or selection range may be specified"
+msgstr ""
+"When opening a file in Code from the commandline or another app, a line/char "
+"position or selection range may be specified"
+
+#: data/code.metainfo.xml.in:74
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
+msgstr "Add a fuzzy-find plugin which finds files in all open projects"
+
+#: data/code.metainfo.xml.in:75
+msgid "Save and restore the state of the terminal pane"
+msgstr "Save and restore the state of the terminal pane"
+
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
+msgid "Minor updates:"
+msgstr "Minor updates:"
+
+#: data/code.metainfo.xml.in:79
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
+msgstr ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
+
+#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr "\"Follow System Style\" is now fully respected"
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr "The \"--new-tab\" commandline option now works"
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr "The symbol pane width is now synchronised and saved"
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr "Fixed temporary backup files persisting under some circumstances"
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr "The Show-Replace action has been improved"
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Updated translations"
+
+#: data/code.metainfo.xml.in:112
msgid "Search options transferred to searchbar menu"
msgstr "Search options transferred to searchbar menu"
-#: data/code.metainfo.xml.in:74
+#: data/code.metainfo.xml.in:113
msgid "Whole word search option added"
msgstr "Whole word search option added"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:114
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
"Whole word, case sensitive mode and use regex search settings now persist"
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
-msgid "Minor updates:"
-msgstr "Minor updates:"
-
-#: data/code.metainfo.xml.in:79
+#: data/code.metainfo.xml.in:118
msgid "The search bar now updates properly after changing the active document"
msgstr "The search bar now updates properly after changing the active document"
-#: data/code.metainfo.xml.in:80
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
"Trying to save a document to an unwritable location is now handled better"
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
@@ -184,17 +242,17 @@ msgstr ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr "Mixed case sensitive search now works as expected"
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
"The search results no longer change unexpectedly when focusing a document"
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
@@ -202,7 +260,7 @@ msgstr ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
@@ -210,37 +268,31 @@ msgstr ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
-msgstr ""
-
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Updated translations"
+msgstr "Ensure active project at startup (include non-git folders)"
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr "Redesigned app icon"
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr "New custom dark and light elementary styles for the source view"
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr "Option to follow the system dark style preference"
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr "Ability to half tile on small notebook displays"
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
@@ -248,7 +300,7 @@ msgstr ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:168
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
@@ -256,7 +308,7 @@ msgstr ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
@@ -264,11 +316,11 @@ msgstr ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr "Starting a global search with text selected now pre-fills that text"
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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 + \\\""
@@ -276,7 +328,7 @@ msgstr ""
"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 + \\\""
-#: data/code.metainfo.xml.in:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
@@ -284,7 +336,7 @@ msgstr ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
@@ -292,13 +344,13 @@ msgstr ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -306,11 +358,11 @@ msgstr ""
"The current document filename is now shown as the window title in "
"multitasking view"
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr "Hidden folders are now shown in the project sidebar"
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
@@ -318,16 +370,16 @@ msgstr ""
"The currently selected result and the number of results is displayed while "
"searching"
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr "The search bar now has a regular expression mode"
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Fixes:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -335,11 +387,11 @@ msgstr ""
"It is now possible to change Git branch with untracked files present in a "
"project"
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr "Crashes are prevented while searching in large projects"
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
@@ -347,41 +399,41 @@ msgstr ""
"The correct document is now focused after opening Code from an external "
"program"
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
"Line duplication is now actioned correctly if there is no selection present"
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr "Code no longer crashes when asked to open an unknown URI format"
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
"Projects with the same name now include their parent folder name as well"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
"When scrolling to search results, overshoot slightly for better visibility"
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr "Use the FileChooser portal instead of the one from GTK"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr "Center the global search dialog over the main Code window"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr "Fix visibility of Terminal button on Welcome page"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -389,7 +441,7 @@ msgstr ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
@@ -397,23 +449,23 @@ msgstr ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr "\"Visible whitespace\" combobox is now a switch"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr "Fix crash when creating new window from tab drop"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr "Ensure files created from the sidebar are automatically opened"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "Hide project chooser button when hiding sidebar"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "Ensure all copy is translatable"
diff --git a/po/extra/eo.po b/po/extra/eo.po
index 825be2c081..8d979e87a2 100644
--- a/po/extra/eo.po
+++ b/po/extra/eo.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2020-03-14 21:09+0000\n"
"Last-Translator: Shtonchjo \n"
"Language-Team: Esperanto \n"
"Language-Team: Spanish \n"
@@ -144,143 +144,189 @@ msgstr "Minimapa opcional para facilitar la navegación en archivos grandes"
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "Mejoras:"
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "Actualizaciones menores:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Traducciones actualizadas"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Traducciones actualizadas"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -288,12 +334,12 @@ msgstr ""
"El nombre de archivo del documento actual ahora se muestra como el título de "
"la ventana en la vista multitarea"
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
"Las carpetas ocultas ahora se muestran en la barra lateral del proyecto"
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
@@ -301,16 +347,16 @@ msgstr ""
"El resultado seleccionado actualmente y el número de resultados se muestran "
"durante la búsqueda"
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr "La barra de búsqueda ahora tiene un modo de expresión regular"
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Correcciones:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -318,11 +364,11 @@ msgstr ""
"Ahora es posible cambiar la rama de Git con archivos sin seguimiento "
"presentes en un proyecto"
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr "Se evitan bloqueos durante la búsqueda en proyectos grandes"
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
@@ -330,45 +376,45 @@ msgstr ""
"El documento correcto ahora se enfoca después de abrir Code desde un "
"programa externo"
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
"Los proyectos con el mismo nombre ahora también incluyen el nombre de su "
"carpeta principal"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
"Cuando te desplazas en los resultados de búsqueda, se resalta ligeramente "
"para una mejor visibilidad"
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr "Utilice el portal FileChooser en lugar del de GTK"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
"Centra el cuadro de dialogo de búsqueda global sobre la ventana principal de "
"Code"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
"Corrección de la visibilidad del botón Terminal en la página de bienvenida"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -376,7 +422,7 @@ msgstr ""
"Corregidos algunos atajos de teclado que afectan al Documento desenfocado en "
"lugar de la Terminal enfocada"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
@@ -384,27 +430,27 @@ msgstr ""
"Cierre la Terminal si se salió del shell y cree una nueva Terminal si se "
"vuelve a abrir sin shell"
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
"El cuadro combinado \"Espacio en blanco visible\" ahora es un interruptor"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
"Se corrigió el error al crear una nueva ventana desde la pestaña desplegable"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
"Asegúrese de que los archivos creados desde la barra lateral se abran "
"automáticamente"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "Ocultar el botón del selector de proyectos al ocultar la barra lateral"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "Asegúrese de que toda la copia sea traducible"
diff --git a/po/extra/et.po b/po/extra/et.po
index 6a6f009513..b70b6ce3cc 100644
--- a/po/extra/et.po
+++ b/po/extra/et.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2016-08-03 23:42+0000\n"
"Last-Translator: Kristjan Vool \n"
"Language-Team: Estonian \n"
@@ -122,243 +122,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/eu.po b/po/extra/eu.po
index cc810757ad..accb3ced96 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2016-09-11 21:37+0000\n"
"Last-Translator: Félix Brezo \n"
"Language-Team: Basque \n"
@@ -112,243 +112,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/extra.pot b/po/extra/extra.pot
index 37deb60285..603b15d232 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -111,243 +111,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \"."
+"vala\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/fa.po b/po/extra/fa.po
index 25749bf029..f0bf84755d 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2019-09-10 14:55+0000\n"
"Last-Translator: Daniel Foré \n"
"Language-Team: Persian \n"
@@ -112,243 +112,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ff.po b/po/extra/ff.po
index 4e8f695842..d7baddef53 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/fi.po b/po/extra/fi.po
index 95251de086..5a19974a0d 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2021-07-21 15:46+0000\n"
"Last-Translator: Jiri Grönroos \n"
"Language-Team: Finnish \n"
@@ -134,243 +134,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary LLC."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "Pienet päivitykset:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Päivitetyt käännökset"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Päivitetyt käännökset"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Korjaukset:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/fj.po b/po/extra/fj.po
index 768ee15f09..a6de0e5d8a 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/fo.po b/po/extra/fo.po
index ce7899bd3e..a470306bfb 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -111,243 +111,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/fr.po b/po/extra/fr.po
index b5fde7b967..c4c2c800ef 100644
--- a/po/extra/fr.po
+++ b/po/extra/fr.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
-"PO-Revision-Date: 2023-06-25 07:07+0000\n"
-"Last-Translator: Corentin Noël \n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
+"PO-Revision-Date: 2023-08-08 09:08+0000\n"
+"Last-Translator: Nathan \n"
"Language-Team: French \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -147,49 +147,101 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "Améliorations :"
#: data/code.metainfo.xml.in:73
+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:74
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75
+msgid "Save and restore the state of the terminal pane"
+msgstr ""
+
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
+msgid "Minor updates:"
+msgstr "Mises à jour mineures :"
+
+#: data/code.metainfo.xml.in:79
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
+msgstr ""
+
+#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Mise à jour des traductions"
+
+#: data/code.metainfo.xml.in:112
msgid "Search options transferred to searchbar menu"
msgstr ""
"Les options de recherche ont été transférées dans le menu de la barre de "
"recherche"
-#: data/code.metainfo.xml.in:74
+#: data/code.metainfo.xml.in:113
msgid "Whole word search option added"
msgstr "Ajout d'une option de recherche de mots entiers"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:114
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
"Les paramètres de recherche de mots entiers, de mode sensible à la casse et "
"d'utilisation d'expressions rationnelles persistent désormais"
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
-msgid "Minor updates:"
-msgstr "Mises à jour mineures :"
-
-#: data/code.metainfo.xml.in:79
+#: data/code.metainfo.xml.in:118
msgid "The search bar now updates properly after changing the active document"
msgstr ""
"La barre de recherche se met désormais à jour correctement après avoir "
"changé de document actif"
-#: data/code.metainfo.xml.in:80
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
"La tentative d'enregistrement d'un document à un emplacement non "
"inscriptible est désormais mieux gérée"
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
@@ -197,18 +249,18 @@ msgstr ""
"Le thème du système est maintenant respecté par le détecteur de symboles, "
"ainsi que lors du lancement sans documents ouverts"
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr "La recherche sensible à la casse fonctionne désormais comme attendu"
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
"Les résultats de la recherche ne changent plus inopinément lors de la "
"focalisation sur un document"
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
@@ -216,7 +268,7 @@ msgstr ""
"Désormais, il y a toujours un projet actif au démarrage lorsqu'il y a des "
"projets dans la barre latérale"
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
@@ -224,43 +276,39 @@ msgstr ""
"Si une branche de développement est en cours d'exécution, cela apparaît dans "
"le titre de la fenêtre et dans l'infobulle du dock"
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
"Les raccourcis Ctrl+PageHaut et Ctrl+PageBas permettent désormais de changer "
"d'onglet"
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
+"Nous nous sommes assurés qu'il y ait un projet actif au lancement (y compris "
+"pour les dossiers qui ne sont pas des dépôts git)"
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Mise à jour des traductions"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr "Nouvelle icône de l'application"
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
"Nouveaux thèmes sombre et clair personnalisés d'elementary pour la vue du "
"code source"
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr "Option pour suivre le thème du système"
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
"Possibilité d'utiliser la moitié de l'écran sur les petits écrans "
"d'ordinateurs portables"
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
@@ -269,7 +317,7 @@ msgstr ""
"sont désormais disponibles dans le menu de l'application et non plus dans la "
"barre de titre"
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:168
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
@@ -278,7 +326,7 @@ msgstr ""
"toutes présentes dans un ensemble compact de boutons liés dans le menu de "
"l'application"
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
@@ -286,13 +334,13 @@ msgstr ""
"La barre latérale contient désormais le bouton de sélection des projets et "
"occupe toute la hauteur de la fenêtre"
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
"Le lancement d'une recherche globale avec du texte sélectionné pré-remplit "
"désormais le champ"
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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 + \\\""
@@ -301,7 +349,7 @@ msgstr ""
"du code source et peut être affiché et masqué à l'aide du raccourci clavier "
"« Alt + \\ »"
-#: data/code.metainfo.xml.in:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
@@ -309,7 +357,7 @@ msgstr ""
"Les modules terminal, détecteur de symboles et suppression des espaces "
"blancs de fin de ligne font désormais partie intégrante de l'application"
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
@@ -317,14 +365,14 @@ msgstr ""
"Affichage d'une barre d'information lorsque les paramètres de largeur de "
"tabulation sont écrasés par un fichier EditorConfig"
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
"Le raccourci pour reconstituer la liste d'autocomplétion est désormais "
"« Ctrl + | »"
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -332,12 +380,12 @@ msgstr ""
"Le nom du document courant est désormais affiché comme titre de fenêtre dans "
"la vue multitâche"
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
"Les dossiers cachés sont désormais affichés dans la barre latérale du projet"
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
@@ -345,16 +393,16 @@ msgstr ""
"Le résultat sélectionné et le nombre de résultats est affiché lors de la "
"recherche"
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr "La barre de recherche possède désormais un mode expression régulière"
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Corrections :"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -362,13 +410,13 @@ msgstr ""
"Il est désormais possible de changer de branche Git lorsque des fichiers non "
"suivi sont présent dans un projet"
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
"Prévention des risques de plantage lors de la recherche dans des projets "
"conséquents"
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
@@ -376,48 +424,48 @@ msgstr ""
"Le bon document est désormais sélectionné après l'ouverture de Code depuis "
"un autre programme"
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
"La duplication des lignes est maintenant effectuée correctement si aucune "
"sélection n'est présente"
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
"Code ne plante plus lorsqu'il est demandé d'ouvrir un format d'URI inconnu"
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
"Les projets de même nom incluent désormais également le nom du dossier parent"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
"Lors du défilement des résultats de recherche, ajout d'un léger débordement "
"pour une meilleure visibilité"
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
"Utilisation du portail pour le sélecteur de fichiers à la place de celui "
"fourni par GTK"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
"La boîte de dialogue de recherche gobale est désormais centrée par dessus la "
"fenêtre de Code"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr "Correction de la visibilité du bouton Terminal sur la page d'accueil"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -425,7 +473,7 @@ msgstr ""
"Correction de certains raccourcis clavier affectant le Document non focalisé "
"au lieu du Terminal focalisé"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
@@ -433,31 +481,31 @@ msgstr ""
"Fermeture du Terminal si le shell est fermé et création d'un nouveau "
"Terminal si réouvert sans le shell"
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
"« Espaces blancs visibles » est désormais un bouton d'activation/"
"désactivation"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
"Correction d'un plantage lors de la création d'une nouvelle fenêtre au "
"moment de la suppression d'un onglet"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
"Nous nous sommes assurés que les fichiers créés depuis la barre latérale "
"soient automatiquement ouverts"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
"Le bouton de sélection de projet est désormais masqué lorsque la barre "
"latérale est masquée"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "Nous nous sommes assurés que tout soit traduisible"
diff --git a/po/extra/fr_CA.po b/po/extra/fr_CA.po
index 6fdcb79f84..26ce9b3e04 100644
--- a/po/extra/fr_CA.po
+++ b/po/extra/fr_CA.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2019-09-10 14:55+0000\n"
"Last-Translator: Daniel Foré \n"
"Language-Team: French (Canada) \n"
"Language-Team: Galician \n"
"Language-Team: Hebrew \n"
"Language: he\n"
@@ -16,7 +16,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 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:04+0000\n"
#: data/code.metainfo.xml.in:9
@@ -133,104 +133,153 @@ msgstr "מפה ממוזערת כרשות כדי להקל על הניווט בק
msgid "elementary, Inc."
msgstr "elementary בע״מ."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "שיפורים:"
#: data/code.metainfo.xml.in:73
+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:74
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
+msgstr "הוספת תוסף חיפוש במעורפל שמוצא קבצים בכל המיזמים הפתוחים"
+
+#: data/code.metainfo.xml.in:75
+msgid "Save and restore the state of the terminal pane"
+msgstr "שמירה ושחזור את מצב סרגל המסוף"
+
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
+msgid "Minor updates:"
+msgstr "עדכונים משניים:"
+
+#: data/code.metainfo.xml.in:79
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
+msgstr "„איתור בתיקייה” עובד כעת לכל התיקיות וקובצי הטקסט, לא רק קובצי „.vala”"
+
+#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr "„היצמדות להגדרות המערכת” מקבלת את מלוא ההתייחסות מעכשיו"
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr "אפשרות שורת הפקודה „--new-tab” עובדת מעכשיו"
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr "רוחב סרגל הסמלים מסונכרן ונשמר מעתה"
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+"תיקיות המיזם נסגרות אוטומטית אם שמן משתנה חיצונית או שהן מועברות או נמחקות"
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr "תוקנה בעיה שקובצי גיבוי זמניים נשארו בכל מיני מקרים"
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr "פעולת הצגה-החלפה השתפרה"
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "עדכוני תרגומים"
+
+#: data/code.metainfo.xml.in:112
msgid "Search options transferred to searchbar menu"
msgstr "אפשרויות החיפוש הועברו לתפריט סרגל החיפוש"
-#: data/code.metainfo.xml.in:74
+#: data/code.metainfo.xml.in:113
msgid "Whole word search option added"
msgstr "נוספה אפשרות לחיפוש מילים שלמות"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:114
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr "הגדרות החיפוש מילה שלמה, תלוית רשיות ושימוש בביטוי רגולרי נשמרות כעת"
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
-msgid "Minor updates:"
-msgstr "עדכונים משניים:"
-
-#: data/code.metainfo.xml.in:79
+#: data/code.metainfo.xml.in:118
msgid "The search bar now updates properly after changing the active document"
msgstr "סרגל החיפוש מתעדכן מעתה כראוי לאחר מעבר למסמך הפעיל"
-#: data/code.metainfo.xml.in:80
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr "ניסיון לשמור מסמך למקום שלא ניתן לכתוב אליו מטופל כעת טוב יותר"
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr "לאחר סגנון המערכת יופיע מעתה מתאר הסמל ובעת טעינה ללא מסמכים פתוחים"
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr "חיפוש עם גיוון רשיות פועל כראוי מעתה"
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr "תוצאות החיפוש לא משתנות עוד באופן בלתי צפוי בעת התמקדות על מסמך"
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr "כעת יש תמיד מיזם פעיל בהתחלה אם יש מיזמים בסרגל הצד"
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr "אם ענף פיתוח רץ זה יופיע בכותרת החלון ובחלונית העצה במעגן"
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr "הקיצורים Ctrl+PageUp ו־Ctrl+PageDown מחליפים לשוניות מעתה"
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
-msgstr ""
-
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "עדכוני תרגומים"
+msgstr "וידוא המיזם הפעיל עם ההפעלה (לרבות תיקיות שאינן git)"
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr "סמל היישום עוצב מחדש"
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr "סגנונות elementary כהים ובהירים לתצוגת קוד המקור"
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr "אפשרות לעקוב אחר העדפת המצב הכהה של המערכת"
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr "יכולת לקצר את האריח לחצי בתצוגות מחברת קטנות"
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
@@ -238,17 +287,17 @@ msgstr ""
"אפשרויות להסתרת והצגת לוחות קיימות בסדרה מצומצמת של כפתורים מאוגדים בתפריט "
"היישום"
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr "סרגל הצד מכיל את כפתור בורר המיזמים וממלא את גובה החלון"
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr "התחלת חיפוש גלובלי עם טקסט שנבחר ממלא את הטקסט הזה מראש מעתה"
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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 + \\\""
@@ -256,13 +305,13 @@ msgstr ""
"חלונית מתאר הסמל מופיע כעת משמאל לתצוגת קוד המקור וניתן להציג ולהסתיר אותה "
"עם קיצור המקשים „Alt+/”"
-#: data/code.metainfo.xml.in:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr "התוספים מסוף, מתאר סמל והסרת רווח בסוף הם כעת חלק מהקוד הראשי"
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
@@ -270,114 +319,114 @@ msgstr ""
"מוצגת חלונית מידע כאשר הגדרות רוחב הלשונית נדרסות על ידי קובץ הגדרות עורך "
"(EditorConfig)"
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr "קיצור הדרך לבניית רשימת המילים להשלמה מחדש היא מעתה „Ctrl+|”"
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
"שם הקובץ של המסמך הנוכחי לא מופיע כיוון שכותרת החלון היא בתצוגת ריבוי משימות"
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr "תיקיות מוסתרות מופיעות בסרגל הצד של המיזם"
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr "התוצאה הנבחרת ומספר התוצאות מופיעים בזמן החיפוש"
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr "לסרגל החיפוש יש מעכשיו מצב ביטויים רגולריים"
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "תיקונים:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr "מעתה ניתן לשנות את ענף ה־Git כשיש קבצים שאינם במעקב במיזם"
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr "נמנעה קריסה כשמחפשים במיזמים גדולים"
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr "המסמך הנכון ממוקד מעתה לאחר פתיחת קוד מתוכנית חיצונית"
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr "שכפול שורות מטופל כראוי אם אין בחירה"
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr "קוד לא קורס יותר כשמתקבלת בקשה לפתוח תצורת כתובת לא מוכרת"
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr "מיזמים עם אותו השם מעתה כוללים את שם תיקיית ההורה בנוסף"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr "בעת גלילת לתוצאות החיפוש, יש לגלוש קצת מעבר לשיפור המראה"
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr "נעשה שימוש בשער FileChooser במקום בזה שמגיע מ־GTK"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr "חלונית החיפוש הגלובלית ממורכזת על פני חלון הראשי של קוד"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr "תיקון מראה כפתור המסוף בעמוד קבלת הפנים"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
"תוקנו קיצורי מקלדת שמשפיעים על מסמך שאינו במיקוד במקום מסוף שעליו המיקוד"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr "לסגור את המסוף אם המעטפת נסגרת וליצור מסוף חדש אם נפתח מחדש ללא מעטפת"
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr "תיבת הבחירה „רווח גלוי” היא מעתה מתג"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr "תוקנה קריסה בעת יצירת חלון חדש מתפריט לשונית"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr "וידוא שקבצים שנוצרו מחלונית הצד נפתחים אוטומטית"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "הסתרת כפתור בוחר המיזמים בעת הסתרת סרגל הצד"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "וידוא שכל ההעתקה ניתנת לתרגום"
diff --git a/po/extra/hi.po b/po/extra/hi.po
index 7ee732be35..08eca0d609 100644
--- a/po/extra/hi.po
+++ b/po/extra/hi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-03-21 00:02+0000\n"
"Last-Translator: Anand Kumar \n"
"Language-Team: Hindi \n"
"Language-Team: Croatian \n"
"Language-Team: Hungarian \n"
@@ -142,47 +142,99 @@ msgstr "Peta mini opsional untuk memudahkan navigasi berkas besar"
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "Peningkatan:"
#: data/code.metainfo.xml.in:73
+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:74
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75
+msgid "Save and restore the state of the terminal pane"
+msgstr ""
+
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
+msgid "Minor updates:"
+msgstr "Pembaruan kecil:"
+
+#: data/code.metainfo.xml.in:79
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
+msgstr ""
+
+#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Pembaruan terjemahan"
+
+#: data/code.metainfo.xml.in:112
msgid "Search options transferred to searchbar menu"
msgstr "Opsi pencarian dipindahkan ke menu bilah pencarian"
-#: data/code.metainfo.xml.in:74
+#: data/code.metainfo.xml.in:113
msgid "Whole word search option added"
msgstr "Penambahan opsi pencarian seluruh kata"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:114
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:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
-msgid "Minor updates:"
-msgstr "Pembaruan kecil:"
-
-#: data/code.metainfo.xml.in:79
+#: data/code.metainfo.xml.in:118
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:80
+#: data/code.metainfo.xml.in:119
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:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
@@ -190,12 +242,12 @@ msgstr ""
"Gaya sistem sekarang diikuti oleh garis tepi simbol dan ketika diluncurkan "
"tanpa dokumen terbuka"
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
"Pencarian sensitif abjad campuran sekarang berfungsi seperti yang diharapkan"
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
#, fuzzy
#| msgid ""
#| "The search results no longer change unexpectedly when focussing a document"
@@ -204,7 +256,7 @@ msgid ""
msgstr ""
"Hasil pencarian tidak lagi berubah tiba-tiba ketika memfokuskan dokumen"
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
@@ -212,7 +264,7 @@ msgstr ""
"Sekarang selalu ada proyek aktif saat startup jika ada proyek di bilah "
"samping"
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
@@ -220,37 +272,31 @@ msgstr ""
"Jika cabang pengembangan berjalan, ini akan ditampilkan di judul jendela dan "
"di tooltip dok"
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
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:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Pembaruan terjemahan"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr "Ikon aplikasi yang didesain ulang"
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
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:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr "Opsi untuk mengikuti preferensi gaya gelap sistem"
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr "Kemampuan untuk setengah ubin pada tampilan notebook kecil"
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
@@ -258,7 +304,7 @@ msgstr ""
"Temukan di Halaman dan Temukan di Project kini tersedia dari menu aplikasi, "
"bukan di bilah kepala"
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:168
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
@@ -266,7 +312,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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
@@ -274,13 +320,13 @@ msgstr ""
"Bar samping sekarang berisi tombol pemilih proyek dan mengisi ketinggian "
"jendela"
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
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:132
+#: data/code.metainfo.xml.in:171
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 + \\\""
@@ -289,7 +335,7 @@ msgstr ""
"sumber dan dapat ditampilkan dan disembunyikan dengan pintasan keyboard "
"\"Alt + \\\""
-#: data/code.metainfo.xml.in:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
@@ -297,7 +343,7 @@ msgstr ""
"Terminal, Simbol garis tepi dan pengaya Strip Trailing Whitespace sekarang "
"menjadi bagian dari basis kode utama"
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
@@ -305,14 +351,14 @@ msgstr ""
"Memperlihatkan bilah info saat pengaturan lebar tab ditimpa oleh berkas "
"EditorConfig"
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
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:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -320,26 +366,26 @@ msgstr ""
"Sekarang nama berkas dokumen saat ini ditampilkan sebagai judul jendela "
"dalam tampilan multitugas"
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr "Folder tersembunyi sekarang ditampilkan di bilah samping proyek"
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
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:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr "Bilah pencarian sekarang memiliki mode ekspresi reguler"
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Perbaikan:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -347,11 +393,11 @@ msgstr ""
"Sekarang dimungkinkan untuk mengubah cabang Git dengan berkas yang tidak "
"terlacak yang ada dalam sebuah proyek"
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr "Kemogokan dicegah saat mencari di proyek besar"
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
@@ -359,45 +405,45 @@ msgstr ""
"Dokumen yang benar sekarang difokuskan setelah membuka Kode dari program "
"eksternal"
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
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:164
+#: data/code.metainfo.xml.in:203
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 "
"diketahui"
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
"Proyek dengan nama yang sama sekarang menyertakan nama folder induknya juga"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
"Saat menggulir ke hasil pencarian, sedikit terlampaui untuk visibilitas yang "
"lebih baik"
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr "Gunakan portal FileChooser daripada GTK"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr "Pusatkan dialog pencarian global di atas jendela Code utama"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr "Perbaiki visibilitas tombol Terminal di halaman Selamat Datang"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -405,7 +451,7 @@ msgstr ""
"Perbaiki beberapa pintasan papan ketik yang memengaruhi Dokumen yang tidak "
"fokus alih-alih Terminal yang terfokus"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
@@ -413,23 +459,23 @@ msgstr ""
"Menutup Terminal jika shell keluar dan membuat Terminal baru jika dibuka "
"kembali tanpa shell"
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr "Kotak kombo \"Spasi kosong yang terlihat\" sekarang menjadi saklar"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr "Perbaikan kemogokan saat membuat jendela baru dari tab drop"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr "Pastikan file yang dibuat dari bilah sisi dibuka secara otomatis"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "Sembunyikan tombol pemilih proyek saat menyembunyikan bilah sisi"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "Pastikan semua salinan dapat diterjemahkan"
diff --git a/po/extra/ie.po b/po/extra/ie.po
index bc4d07b6a8..b6c3c1a32d 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ig.po b/po/extra/ig.po
index b057b91a21..5773b4cdf1 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ii.po b/po/extra/ii.po
index 8e546e5543..b3d7d292f4 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ik.po b/po/extra/ik.po
index 4b2351909b..f90d6894aa 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/io.po b/po/extra/io.po
index 5fec689195..52ae3c38f5 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/is.po b/po/extra/is.po
index 93b1ea2461..c66533e72a 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/it.po b/po/extra/it.po
index 5247fd846d..98de3d38ea 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2020-10-23 17:15+0000\n"
"Last-Translator: Fabio Zaramella \n"
"Language-Team: Italian \n"
@@ -136,243 +136,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary LLC."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "Aggiornamenti minori:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Traduzioni aggiornate"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Traduzioni aggiornate"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Correzioni:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/iu.po b/po/extra/iu.po
index af4f367319..609ae04a94 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ja.po b/po/extra/ja.po
index 6b0a3e1ff5..9acded49e8 100644
--- a/po/extra/ja.po
+++ b/po/extra/ja.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
-"PO-Revision-Date: 2023-06-19 18:07+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
+"PO-Revision-Date: 2023-12-03 01:55+0000\n"
"Last-Translator: Ryo Nakano \n"
"Language-Team: Japanese \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 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:04+0000\n"
#: data/code.metainfo.xml.in:9
@@ -140,43 +140,99 @@ msgstr "行数の多いファイルでも移動が簡単になるミニマップ
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "改善点:"
#: data/code.metainfo.xml.in:73
+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:74
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75
+msgid "Save and restore the state of the terminal pane"
+msgstr ""
+
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
+msgid "Minor updates:"
+msgstr "そのほかのアップデート:"
+
+#: data/code.metainfo.xml.in:79
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
+msgstr ""
+"\"フォルダー内を検索\"機能の対象を、\".vala\"ファイルだけではなくすべてのフォ"
+"ルダーとテキストファイルに変更"
+
+#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr "\"システムのスタイルに従う\"の設定が常に反映されるように修正"
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr "コマンドラインオプション \"--new-tab\" が動作しない不具合を修正"
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "翻訳の更新"
+
+#: data/code.metainfo.xml.in:112
msgid "Search options transferred to searchbar menu"
msgstr "検索オプションを検索バーのメニューに移動"
-#: data/code.metainfo.xml.in:74
+#: data/code.metainfo.xml.in:113
msgid "Whole word search option added"
msgstr "完全一致検索オプションを追加"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:114
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
"“完全一致”、“大文字と小文字を区別”、“正規表現を使う”の検索設定が保持されるよ"
"うに修正"
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
-msgid "Minor updates:"
-msgstr "そのほかのアップデート:"
-
-#: data/code.metainfo.xml.in:79
+#: data/code.metainfo.xml.in:118
msgid "The search bar now updates properly after changing the active document"
msgstr "表示するドキュメントを変更すると、検索バーも適切に更新されるように修正"
-#: data/code.metainfo.xml.in:80
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr "書き込み不可の場所にドキュメントを保存しようとした際の挙動を改善"
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
@@ -184,19 +240,19 @@ msgstr ""
"シンボルアウトラインとドキュメントなしで起動した場合も“システムのスタイルに従"
"う”が機能するように修正"
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
"検索用語に大文字も小文字も含まれる場合の検索機能が、期待通りの挙動になるよう"
"に修正"
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
"ドキュメントにフォーカスすると意図せず検索結果が変わってしまう不具合を修正"
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
@@ -204,7 +260,7 @@ msgstr ""
"複数のプロジェクトがサイドバーに存在する場合、うち1つが起動時にアクティブなプ"
"ロジェクトになるように修正"
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
@@ -212,37 +268,33 @@ msgstr ""
"開発ブランチ版を実行中の場合、ウィンドウタイトルとドックのツールチップにブラ"
"ンチ名を表示するように変更"
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr "Ctrl+PageUp と Ctrl+PageDown でタブを切り替えできるように変更"
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
+"起動時にアクティブなプロジェクトを確実に設定するように修正 (非 git 管理下の"
+"フォルダーも含む)"
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "翻訳の更新"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr "アプリアイコンのデザインを変更"
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr "編集画面に新しいダークスタイル/elementary ライトスタイルを追加"
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr "システムのダークスタイル設定に従うオプションを追加"
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr "画面幅の小さなノートパソコンでもウィンドウをタイル表示できるように修正"
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
@@ -250,7 +302,7 @@ msgstr ""
"“ページ内を検索”および“プロジェクト内を検索”の両機能を、ヘッダーバーからアプ"
"リメニューに移動"
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:168
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
@@ -258,7 +310,7 @@ msgstr ""
"各パネルを表示/非表示にするオプションを、アプリメニュー内のリンクボタンとし"
"て表示するように修正"
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
@@ -266,13 +318,13 @@ msgstr ""
"サイドバー: プロジェクト選択ボタンを追加し、表示領域をウィンドウの高さいっぱ"
"いに拡大"
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
"テキストを選択した状態でプロジェクト内検索を開始すると、そのテキストを検索用"
"語にした状態で検索ダイアログが開くように修正"
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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 + \\\""
@@ -280,7 +332,7 @@ msgstr ""
"シンボルアウトラインペインの表示位置をソース画面の右に移動させ、キーボード"
"ショートカット \"Alt + \\\" で表示/非表示できるように修正"
-#: data/code.metainfo.xml.in:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
@@ -288,7 +340,7 @@ msgstr ""
"ターミナル/シンボルアウトライン/ファイル末尾の空白を削除 プラグインをメイン"
"のコードに組み込み"
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
@@ -296,12 +348,12 @@ msgstr ""
"タブ幅の設定が EditorConfig ファイルで上書きされている場合は、情報バーを表示"
"するように修正"
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr "単語補完の単語一覧を更新するショートカットキーを \"Ctrl + |\" に変更"
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -309,26 +361,26 @@ msgstr ""
"マルチタスク画面でのウィンドウタイトルとして、現在編集中のファイル名を使用す"
"るように変更"
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr "隠しフォルダーもプロジェクトサイドバーで表示されるように修正"
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr "現在選択している検索結果と検索数を、文字検索中も表示するように修正"
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr "検索バーに正規表現モードを搭載"
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "修正点:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -336,11 +388,11 @@ msgstr ""
"プロジェクトに追跡されていないファイルがある場合でも、ブランチを切り替えでき"
"るように修正"
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr "大規模なプロジェクト内で検索するとクラッシュする不具合を修正"
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
@@ -348,44 +400,44 @@ msgstr ""
"外部プログラムから“コード”を開いた際に、開いたドキュメントがフォーカスされる"
"ように修正"
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr "選択中の行がなくても、行の複製が正しく実行されるように修正"
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr "不明な URI 形式を開くように指示されてもクラッシュしないように修正"
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr "プロジェクト名が同じ場合は親フォルダーの名前も表示するように修正"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
"検索結果にスクロールする際に、見やすくなるように余分にスクロールするように変"
"更"
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
"GTK が提供するファイル選択ダイアログではなく、ファイル選択ポータルを使用する"
"ように修正"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
"プロジェクト全体の検索ダイアログを“コード”の主ウィンドウに対して中央に表示す"
"るように修正"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr "ようこそ画面の“ターミナル”ボタンが消える不具合を修正"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -393,7 +445,7 @@ msgstr ""
"キーボードショートカットがフォーカス状態のターミナルではなく、フォーカスされ"
"ていないテキストビューに適用される不具合を修正"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
@@ -401,25 +453,25 @@ msgstr ""
"シェルが終了した場合はターミナルを閉じ、シェルなしでターミナルが開かれた場合"
"は新しいターミナルを作成するように修正"
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr "“空白を表示”コンボボックスをスイッチに変更"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
"タブをドロップして新しいウィンドウを開こうとするとクラッシュする不具合を修正"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr "サイドバーで作成したファイルを自動的に開くように修正"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
"サイドバーを表示していない場合はプロジェクト選択ボタンも表示しないように修正"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "すべてのテキストが翻訳できるように修正"
diff --git a/po/extra/jv.po b/po/extra/jv.po
index bd13ee6c8a..d7d403fb56 100644
--- a/po/extra/jv.po
+++ b/po/extra/jv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ka.po b/po/extra/ka.po
index 4447a6f6a0..b11c77fbce 100644
--- a/po/extra/ka.po
+++ b/po/extra/ka.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2023-03-13 03:25+0000\n"
"Last-Translator: NorwayFun \n"
"Language-Team: Georgian \n"
"Language-Team: Korean \n"
@@ -134,243 +134,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary LLC."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "소소한 업데이트:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "최신 번역"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "최신 번역"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/kr.po b/po/extra/kr.po
index c5afed0dbd..8f9dc99c81 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ks.po b/po/extra/ks.po
index dd293eed2b..d96c383424 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ku.po b/po/extra/ku.po
index a97e53d940..04ea238d5f 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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,243 +121,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/la.po b/po/extra/la.po
index bd8fd66ea8..d8498bc82f 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/lb.po b/po/extra/lb.po
index 213f05a450..22d8632a03 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/lg.po b/po/extra/lg.po
index fa64a42b9a..6f7e40a43b 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/li.po b/po/extra/li.po
index 3700360d23..d97f3849dd 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ln.po b/po/extra/ln.po
index e4058d168a..600c4e4dfd 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/lo.po b/po/extra/lo.po
index 7ca673f856..f17c5ccd8c 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/lt.po b/po/extra/lt.po
index 975383ef55..d33b1ff143 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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,243 +119,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/mg.po b/po/extra/mg.po
index d22e431e17..3a13855ca2 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/mh.po b/po/extra/mh.po
index 1a7a001269..43690a5a13 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/mi.po b/po/extra/mi.po
index 596887eda2..8a22cda830 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/mk.po b/po/extra/mk.po
index 86d7a978a0..bfd78ee5f3 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ml.po b/po/extra/ml.po
index cd0e7d99c0..5e8a329095 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/mn.po b/po/extra/mn.po
index a851c4e695..d5f29cc08f 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/mr.po b/po/extra/mr.po
index 1e9efd306d..60d52b61f4 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2021-03-21 00:15+0000\n"
"Last-Translator: Prachi Joshi \n"
"Language-Team: Marathi \n"
@@ -134,243 +134,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr "एलिमेंटरी LLC."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "किरकोळ अद्यतने:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "अद्ययावत अनुवाद"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "अद्ययावत अनुवाद"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "निराकारणे:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ms.po b/po/extra/ms.po
index 9f764e37c0..e08fb52b8b 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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"
@@ -143,143 +143,189 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "Verbeteringen:"
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "Kleine updates:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Bijgewerkte vertalingen"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Bijgewerkte vertalingen"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr "Optie om het donkere thema van het systeem te volgen"
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -287,11 +333,11 @@ msgstr ""
"De huidige bestandsnaam van het document wordt nu getoond als de titel van "
"het venster in de multitasking-weergave"
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr "Verborgen mappen worden nu getoond in de projectzijbalk"
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
@@ -299,16 +345,16 @@ msgstr ""
"Het huidige geselecteerde resultaat en het aantal resultaten wordt "
"weergegeven tijdens het zoeken"
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr "De zoekbalk heeft nu een modus voor reguliere uitdrukkingen"
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Opgelost:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -316,11 +362,11 @@ msgstr ""
"Het is nu mogelijk om Git-branch te wijzigen met niet-getraceerde bestanden "
"aanwezig in een project"
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr "Crashes worden voorkomen bij het zoeken in grote projecten"
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
@@ -328,44 +374,44 @@ msgstr ""
"Het juiste document is nu gericht na het openen van Code vanuit een extern "
"programma"
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
"Regel-duplicatie wordt nu correct uitgevoerd als er geen selectie aanwezig is"
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
"Code crasht niet langer wanneer gevraagd wordt een onbekend URI-formaat te "
"openen"
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
"Projecten met dezelfde naam bevatten nu ook de naam van hun bovenliggende map"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
"Bij het scrollen naar zoekresultaten iets overschrijden voor betere "
"zichtbaarheid"
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr "Gebruik de FileChooser-portal in plaats van die van GTK"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr "De globale zoekdialoog centreren boven het hoofd-Codevenster"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr "Zichtbaarheid van Terminal-knop op welkomstpagina verbeteren"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -373,7 +419,7 @@ msgstr ""
"Sommige sneltoetsen die het niet-actieve document beïnvloedden in plaats van "
"geconcentreerde terminal hersteld"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
@@ -381,25 +427,25 @@ msgstr ""
"Terminal sluiten als shell is afgesloten en nieuwe terminal aanmaken als "
"deze opnieuw wordt geopend zonder shell"
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr "\"Zichtbare witruimte\" combobox is nu een schakelaar"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr "Fix crash bij het maken van een nieuw venster vanuit een tabblad"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
"Ervoor zorgen dat bestanden gemaakt vanuit de zijbalk automatisch worden "
"geopend"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "Verberg projectkeuzeknop bij het verbergen van de zijbalk"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "We zorgden ervoor dat alles vertaalbaar was"
diff --git a/po/extra/nn.po b/po/extra/nn.po
index 5216ee4b6a..6a97c46572 100644
--- a/po/extra/nn.po
+++ b/po/extra/nn.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2019-01-04 20:56+0000\n"
"Last-Translator: Simon Dagfinrud \n"
"Language-Team: Norwegian Nynorsk \n"
"Language-Team: Occitan \n"
@@ -114,243 +114,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/oj.po b/po/extra/oj.po
index bf44221c36..e584cbc212 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/om.po b/po/extra/om.po
index d9198f3afd..208d34d0f4 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/or.po b/po/extra/or.po
index 06809528ac..6aad092201 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/os.po b/po/extra/os.po
index de1bc7ae3a..f0bbed757e 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/pa.po b/po/extra/pa.po
index 76d729144e..f237a56a07 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2021-07-27 11:47+0000\n"
"Last-Translator: elSolus \n"
"Language-Team: Punjabi \n"
@@ -112,243 +112,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/pi.po b/po/extra/pi.po
index 03831bd974..62b9450aee 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/pl.po b/po/extra/pl.po
index d62c84546f..a75f306163 100644
--- a/po/extra/pl.po
+++ b/po/extra/pl.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
-"PO-Revision-Date: 2023-06-25 07:07+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
+"PO-Revision-Date: 2024-01-20 08:11+0000\n"
"Last-Translator: Marcin Serwin \n"
"Language-Team: Polish \n"
"Language: pl\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:04+0000\n"
#: data/code.metainfo.xml.in:9
@@ -142,46 +142,107 @@ msgstr "Opcjonalna mini-mapa by łatwiej nawigować w dużych plikach"
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "Ulepszenia:"
#: data/code.metainfo.xml.in:73
+msgid ""
+"When opening a file in Code from the commandline or another app, a line/char "
+"position or selection range may be specified"
+msgstr ""
+"Podczas otwierania pliku w edytorze Kod z poziomu linii poleceń lub innej "
+"aplikacji można teraz sprecyzować pozycję kursora na linii lub znaku, lub "
+"aktualne zaznaczenie"
+
+#: data/code.metainfo.xml.in:74
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
+msgstr ""
+"Dodano plugin dla fuzzy-find przeszukującego pliki we wszystkich otwartych "
+"projektach"
+
+#: data/code.metainfo.xml.in:75
+msgid "Save and restore the state of the terminal pane"
+msgstr "Zapisywanie i przywracanie stanu panelu terminala"
+
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
+msgid "Minor updates:"
+msgstr "Mniejsze aktualizacje:"
+
+#: data/code.metainfo.xml.in:79
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
+msgstr ""
+"„Znajdź w folderze” działa teraz ze wszystkimi folderami i plikami "
+"tekstowymi, nie tylko z plikami „.vala”"
+
+#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr "„Dopasuj do stylu systemu” jest teraz w pełni respektowane"
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr "Opcja „--new-tab” z linii poleceń działa"
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr "Szerokość panelu symboli jest teraz synchronizowana i zapisywana"
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+"Foldery projektu są automatycznie zamykane jeśli ich nazwa jest zmieniania, "
+"są przenoszone lub usuwane przez zewnętrzne aplikacje"
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr "Naprawiono przypadek gdy pliki tymczasowe nie były usuwane"
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr "Akcja pokaż i zastąp została poprawiona"
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Zaktualizowano tłumaczenia"
+
+#: data/code.metainfo.xml.in:112
msgid "Search options transferred to searchbar menu"
msgstr "Opcje wyszukiwania przekazywane są teraz do menu paska wyszukiwania"
-#: data/code.metainfo.xml.in:74
+#: data/code.metainfo.xml.in:113
msgid "Whole word search option added"
msgstr "Dodano opcję dopasowania całych słów"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:114
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
"Ustawienia całyc słów, dopasowywania wielkości liter i wyszukiwania "
"wyrażeniami regularnymi są teraz zapisywane"
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
-msgid "Minor updates:"
-msgstr "Mniejsze aktualizacje:"
-
-#: data/code.metainfo.xml.in:79
+#: data/code.metainfo.xml.in:118
msgid "The search bar now updates properly after changing the active document"
msgstr ""
"Pasek wyszukiwania jest teraz aktualizowany przy zmianie aktywnego dokumentu"
-#: data/code.metainfo.xml.in:80
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
"Próba zapisania dokumentu w miejscu w którym nie da się zapisywać jest teraz "
"lepiej obsługiwana"
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
@@ -189,20 +250,20 @@ msgstr ""
"Styl systemowy jest teraz przestrzegany przez zarys symbolu i bez otwartych "
"dokumentów"
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
"Wyszukiwanie z uwzględnieniem wielkości liter działa teraz zgodnie z "
"oczekiwaniami gdy litery są różnej wielkości"
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
"Wyniki wyszukiwania nie zmieniają się niespodziewanie przy skupianiu się na "
"dokumencie"
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
@@ -210,7 +271,7 @@ msgstr ""
"Teraz przy starcie zawsze istnieje aktywny projekt gdy w panelu bocznym są "
"projekty"
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
@@ -218,37 +279,32 @@ msgstr ""
"Jeśli uruchamiana jest wersja deweloperska to pojawia się to w nazwie okna i "
"tooltipie w doku"
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr "Skróty klawiszowe Ctrl+PageUp i Ctrl+PageDown zmieniają teraz karty"
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
+"Wymuszenie aktywnego folderu przy starcie (włączając w to foldery nie-gitowe)"
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Zaktualizowano tłumaczenia"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr "Przeprojektowano ikonę aplikacji"
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr "Nowe dostosowane ciemne i jasne style elementary dla widoku źródła"
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr "Możliwość ustawienia trybu ciemnego na podstawie ustawień systemu"
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr "Możliwość do zmniejszenia o połowę kafelku na ekranach notebooków"
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
@@ -256,7 +312,7 @@ msgstr ""
"Zarówno Znajdź na stronie jak i Znajdź w projekcie są teraz dostępne z menu "
"aplikacji zamiast z paska górnego"
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:168
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
@@ -264,7 +320,7 @@ msgstr ""
"Opcje do chowania i pokazywania paneli są teraz dostępne w kompaktowym "
"zbiorze połączonych przycisków w menu aplikacji"
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
@@ -272,13 +328,13 @@ msgstr ""
"Panel boczny zawiera teraz przycisk wybierania projektu oraz zajmuje całą "
"wysokość okna"
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
"Rozpoczęcie globalnego wyszukiwania z zaznaczonym tekstem wykorzystuje teraz "
"ten tekst"
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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 + \\\""
@@ -286,7 +342,7 @@ msgstr ""
"Panel ze spisem symboli jest teraz pokazywany po prawej stronie kodu i może "
"być pokazany lub schowany przy użyciu kombinacji „Alt + \\”"
-#: data/code.metainfo.xml.in:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
@@ -294,7 +350,7 @@ msgstr ""
"Terminal, Spis symboli oraz Usuwanie końcowych białych znaków są teraz "
"częścią głównego kodu"
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
@@ -302,14 +358,14 @@ msgstr ""
"Gdy ustawienia szerokości wcięcia są zarządzane przez plik EditorConfig "
"pokazywany jest panel z informacją"
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
"Skrót klawiszowy do przebudowania listy podpowiadanych słów to teraz „Ctrl + "
"|”"
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -317,11 +373,11 @@ msgstr ""
"Nazwa pliku aktualnego dokumentu jest teraz pokazywana jako tytuł okna w "
"widoku wielozadaniowym"
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr "Ukryte folder są teraz pokazywane w panelu bocznym projektu"
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
@@ -329,16 +385,16 @@ msgstr ""
"Aktualnie zaznaczony wynik i liczba wyników jest teraz pokazywane podczas "
"wyszukiwania"
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr "Pasek wyszukiwania posiada teraz tryb wyrażeń regularnych"
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Poprawki:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -346,11 +402,11 @@ msgstr ""
"Możliwe stała się zmiana gałęzi Git z nieśledzonymi plikami obecnymi w "
"projekcie"
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr "Zapobiegnięto błędom krytycznym podczas szukania w dużych projektach"
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
@@ -358,49 +414,49 @@ msgstr ""
"Poprawny dokument jest teraz sfokusowany po otwarciu Kodu przez zewnętrzny "
"program"
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
"Duplikowanie linii jest teraz obsługiwane poprawnie gdy nic nie jest "
"zaznaczone"
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
"Otwieranie nieznanych formatów URI w Kodzie nie powoduje już błędu "
"krytycznego"
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
"Projekty o tej samej nazwie zawierają teraz również nazwę swojego folderu "
"nadrzędnego"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
"Przy przewijaniu do wyników wyszukiwania, przewijane jest nieco dalej dla "
"lepszej widoczności"
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
"Zmieniono wybieranie plików by korzystało z portalu FileChooser zamiast z GTK"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
"Okno dialogowe globalnego wyszukiwania jest teraz wyśrodkowane nad głównym "
"oknem aplikacji"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr "Naprawiono widoczność przycisku Terminala na stronie powitalnej"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -408,7 +464,7 @@ msgstr ""
"Naprawiono niektóre skróty klawiszowe działające na niezfokusowanych "
"dokumentach zamiast zfokusowanym terminalu"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
@@ -416,25 +472,25 @@ msgstr ""
"Zamknij terminal gdy shell zostanie zamknięty i otwórz terminal gdy otwarty "
"bez shella"
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr "Znacznik „Widoczne białe znaki” jest teraz przełącznikiem"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr "Naprawiono błąd przy otwieraniu nowego okna przez upuszczenie karty"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
"Upewniono się, że pliki utworzone przez panel boczny są automatycznie "
"otwierane"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "Schowano przycisk wyboru projektu przy chowaniu panelu bocznego"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "Upewniono się, że kopiuj jest tłumaczone"
diff --git a/po/extra/ps.po b/po/extra/ps.po
index 9ab79e9b2e..6bb0d8be07 100644
--- a/po/extra/ps.po
+++ b/po/extra/ps.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/pt.po b/po/extra/pt.po
index 3c1f9c84c9..111b0b9c08 100644
--- a/po/extra/pt.po
+++ b/po/extra/pt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2022-06-10 11:33+0000\n"
"Last-Translator: Hugo Carvalho \n"
"Language-Team: Portuguese \n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
+"PO-Revision-Date: 2023-08-19 14:08+0000\n"
+"Last-Translator: Matheus Torres Carvalho \n"
"Language-Team: Portuguese (Brazil) \n"
"Language: pt_BR\n"
@@ -17,7 +17,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 4.4.2\n"
+"X-Generator: Weblate 4.17\n"
"X-Launchpad-Export-Date: 2017-05-03 06:04+0000\n"
#: data/code.metainfo.xml.in:9
@@ -25,10 +25,8 @@ msgid "Code"
msgstr "Code"
#: data/code.metainfo.xml.in:10
-#, fuzzy
-#| msgid "The editor that works"
msgid "The editor that works for you"
-msgstr "O editor que funciona"
+msgstr "O editor que funciona para você"
#: data/code.metainfo.xml.in:12
#, fuzzy
@@ -135,243 +133,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "Pequenas atualizações:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Traduções atualizadas"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Traduções atualizadas"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Correções:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/qu.po b/po/extra/qu.po
index b2ff54a907..4b120786a6 100644
--- a/po/extra/qu.po
+++ b/po/extra/qu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/rm.po b/po/extra/rm.po
index 72f7a83fe4..95742b1d53 100644
--- a/po/extra/rm.po
+++ b/po/extra/rm.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/rn.po b/po/extra/rn.po
index fd0213138f..e2cba5b1af 100644
--- a/po/extra/rn.po
+++ b/po/extra/rn.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ro.po b/po/extra/ro.po
index e6e01e2ef6..0f16e512e0 100644
--- a/po/extra/ro.po
+++ b/po/extra/ro.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2021-02-11 08:41+0000\n"
"Last-Translator: Silviu Popescu \n"
"Language-Team: Romanian \n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
+"PO-Revision-Date: 2024-01-17 11:11+0000\n"
+"Last-Translator: lenemter \n"
"Language-Team: Russian \n"
"Language: ru\n"
"MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:04+0000\n"
#: data/code.metainfo.xml.in:9
@@ -140,46 +140,108 @@ msgstr "Мини-карта для упрощения навигации по б
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "Улучшения:"
#: data/code.metainfo.xml.in:73
+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:74
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
+msgstr ""
+"Добавьте плагин нечеткого поиска, который находит файлы во всех открытых "
+"проектах"
+
+#: data/code.metainfo.xml.in:75
+msgid "Save and restore the state of the terminal pane"
+msgstr "Сохранение и восстановление панели терминала"
+
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
+msgid "Minor updates:"
+msgstr "Незначительные обновления:"
+
+#: data/code.metainfo.xml.in:79
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
+msgstr ""
+"Поиск в папке теперь работает для всех папок и текстовых фалов, а не только "
+"для файлов «.vala»"
+
+#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr "Улучшено следование тёмному стилю системы"
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr "Параметр командной строки «--new-tab» теперь работает"
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr "Ширина панели символов теперь синхронизируется и сохраняется"
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+"Папки проектов теперь автоматически закрываются, если они переименованы, "
+"перемещены или удалены извне"
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+"Исправлены временные файлы резервных копий, сохраняющиеся при некоторых "
+"обстоятельствах"
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr "Улучшено действие «Поиск и замена»"
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Обновлены переводы"
+
+#: data/code.metainfo.xml.in:112
msgid "Search options transferred to searchbar menu"
msgstr "Параметры поиска были перенесены в меню строки поиска"
-#: data/code.metainfo.xml.in:74
+#: data/code.metainfo.xml.in:113
msgid "Whole word search option added"
msgstr "Добавлен поиск по целому слову"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:114
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
"Состояния режимов поиска полных слов, с учётом регистра и с использованием "
"regex теперь сохраняются"
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
-msgid "Minor updates:"
-msgstr "Незначительные обновления:"
-
-#: data/code.metainfo.xml.in:79
+#: data/code.metainfo.xml.in:118
msgid "The search bar now updates properly after changing the active document"
msgstr ""
"Панель поиска теперь корректно обновляется после изменения активного "
"документа"
-#: data/code.metainfo.xml.in:80
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
"Улучшена обработка попытки сохранить документ в недоступном для записи месте"
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
@@ -187,16 +249,16 @@ msgstr ""
"За системным стилем теперь следуют выделение символов и запуск без открытых "
"документов"
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr "Смешанный поиск с учётом регистра теперь работает должным образом"
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr "Результаты поиска больше не изменяются при фокусировке на документе"
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
@@ -204,7 +266,7 @@ msgstr ""
"Теперь при запуске всегда есть активный проект, если есть проекты на боковой "
"панели"
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
@@ -212,38 +274,32 @@ msgstr ""
"Если запущена версия в разработке, об этом сообщается в заголовке окна и "
"подсказке в доке"
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
"Сочетания клавиш Ctrl+PageUp и Ctrl+PageDown теперь переключают вкладки"
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
-msgstr ""
-
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Обновлены переводы"
+msgstr "Гарантировать активный проект при запуске (включая не-git папки)"
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr "Переработана иконка приложения"
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr "Новый тёмный и светлый стиль elementary для кода"
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr "Опция для следования настройкам темной темы в системе"
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr "Возможность развернуть окно на половину экрана на маленьких экранах"
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
@@ -251,7 +307,7 @@ msgstr ""
"«Найти на странице» и «Найти в проекте» теперь доступны из меню приложения, "
"а не в заголовке"
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:168
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
@@ -259,7 +315,7 @@ msgstr ""
"Опции для скрытия и показа панелей теперь представлены в компактном списке "
"связанных кнопок в меню приложения"
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
@@ -267,13 +323,13 @@ msgstr ""
"Боковая панель теперь содержит кнопку выбора проекта и занимает всю высоту "
"окна"
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
"Если при начале глобального поиска был выбран текст, то теперь он будет уже "
"введён"
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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 + \\\""
@@ -281,7 +337,7 @@ msgstr ""
"Панель обводки символов тепеоь находится справа и можен быть открыта и "
"закрыта с помощью сочетания клавиш «Alt + \\»"
-#: data/code.metainfo.xml.in:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
@@ -289,7 +345,7 @@ msgstr ""
"Терминал, обводка символов и убирание пробелов в конце строк теперь входят в "
"основной код приложения"
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
@@ -297,12 +353,12 @@ msgstr ""
"Показывать сообщение, когда ширина табуляции предопределена файлом "
"EditorConfig"
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr "Сочетание клавиш для перезагрузки списка слов теперь «Ctrl + |»"
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -310,11 +366,11 @@ msgstr ""
"Название открытого документа теперь отображается как заголовок окна в режиме "
"многозадачности"
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr "Скрытые папки теперь показываются в боковой панели проекта"
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
@@ -322,26 +378,26 @@ msgstr ""
"Выбранный результат и общее количество результатов отображаются во время "
"поиска"
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr "Панель поиска теперь имеет режим регулярных выражений"
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Исправления:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr "Стало возможным менять ветку Git c неотслеживаемыми файлами в проекте"
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr "Исправлены вылеты при поиске в больших проектах"
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
@@ -349,44 +405,44 @@ msgstr ""
"Теперь правильный документ находится в фокусе после открытия Кода из внешней "
"программы"
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr "Дублирование строки без выделения теперь выполняется правильно"
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr "Код больше не вылетает при открытии неизвестного URI формата"
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
"Проекты с одинаковыми именами теперь включают названия своих родительских "
"папок"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
"При прокрутке результатов поиска, они немного превышают зону видимости для "
"лучшего просмотра"
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr "Используется портал FileChooser, а не GTK"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
"Диалоговое окно глобального поиска теперь центрируется над основным окном "
"Кода"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr "Исправлена видимость кнопки Терминала на странице приветствия"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -394,7 +450,7 @@ msgstr ""
"Исправлено задействование некоторых клавиш на документе при фокусе на "
"Терминале"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
@@ -402,23 +458,23 @@ msgstr ""
"Терминал закрывается, если выполнен выход из оболочки, и создаётся новый "
"терминал, если было повторное открытие без оболочки"
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr "Выпадающий список «Видимые пробелы» стал переключателем"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr "Исправлен сбой при создании нового окна из выпадающего меню вкладок"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr "Исправлено автоматическое открытие создаваемых файлов в боковой панели"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "Меню выбора проектов скрывается вместе с боковой панелью"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "Все копии пригодны для преобразования"
diff --git a/po/extra/rue.po b/po/extra/rue.po
index 4e058f3d6e..97f9c9b5b2 100644
--- a/po/extra/rue.po
+++ b/po/extra/rue.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/rw.po b/po/extra/rw.po
index ca7344d17f..efe381d02b 100644
--- a/po/extra/rw.po
+++ b/po/extra/rw.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/sa.po b/po/extra/sa.po
index cfdc230ad3..db3bbf78fe 100644
--- a/po/extra/sa.po
+++ b/po/extra/sa.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/sc.po b/po/extra/sc.po
index f8d0f99b07..bf19a8270d 100644
--- a/po/extra/sc.po
+++ b/po/extra/sc.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/sd.po b/po/extra/sd.po
index 17442f9cd0..62058e5330 100644
--- a/po/extra/sd.po
+++ b/po/extra/sd.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/se.po b/po/extra/se.po
index b26807c17f..fb74c13d60 100644
--- a/po/extra/se.po
+++ b/po/extra/se.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/sg.po b/po/extra/sg.po
index b1caaccd60..d0ab6f2055 100644
--- a/po/extra/sg.po
+++ b/po/extra/sg.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/si.po b/po/extra/si.po
index 6a01f7b617..82a008ff23 100644
--- a/po/extra/si.po
+++ b/po/extra/si.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2021-03-04 17:58+0000\n"
"Last-Translator: HelaBasa \n"
"Language-Team: Sinhala \n"
@@ -113,243 +113,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/sk.po b/po/extra/sk.po
index c09fcd979a..3462477294 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2022-09-30 22:14+0000\n"
"Last-Translator: JohnDumpling \n"
"Language-Team: Slovak \n"
@@ -143,170 +143,216 @@ msgstr "Voliteľná minimapa, ktorá zjednodušuje pohyb po väčších súboroc
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "Vylepšenia:"
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "Menšie aktualizácie:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Aktualizované preklady"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Aktualizované preklady"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
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:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
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:154
+#: data/code.metainfo.xml.in:193
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:155
+#: data/code.metainfo.xml.in:194
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:156
+#: data/code.metainfo.xml.in:195
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:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Opravy:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -314,52 +360,52 @@ msgstr ""
"Teraz je možné zmeniť vetvu Git s nesledovanými súbormi, ktoré sa nachádzajú "
"v projekte"
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
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:162
+#: data/code.metainfo.xml.in:201
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:163
+#: data/code.metainfo.xml.in:202
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:164
+#: data/code.metainfo.xml.in:203
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"
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
"Projekty s rovnakým názvom odteraz zahŕňajú aj názov svojho nadradeného "
"priečinku"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr "Zlepšená viditeľnosť pri posúvaní k výsledkom vyhľadávania"
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr "Použiť portál FileChooser namiesto toho z GTK"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
"Dialóg globálneho vyhľadávania je teraz zarovnaný na stred hlavného okna Kódu"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr "Opravená viditeľnosť tlačidla Terminálu na uvítacej stránke"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -367,7 +413,7 @@ msgstr ""
"Opravené niektoré klávesové skratky týkajúce sa nezameraného dokumentu "
"namiesto zameraného Terminálu"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
@@ -375,23 +421,23 @@ msgstr ""
"Zatvoriť Terminál po skončení aktivity shellu a otvoriť nový Terminál ak bol "
"znovu otvorený bez shellu"
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr "Kombinovaná ponuka „Viditeľné prázdne znaky“ je teraz prepínač"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr "Opravený pád pri vytváraní nového okna z rozbaľovacej ponuky karty"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr "Zaistené, že súbory vytvorené z bočného panelu sa automaticky otvoria"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "Skryť tlačidlo výberu projektu pri skrytí bočného panelu"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "Zaistené, že všetky kópie sú prekladateľné"
diff --git a/po/extra/sl.po b/po/extra/sl.po
index 452c996f2f..91a4eb0a0b 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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,243 +113,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/sr.po b/po/extra/sr.po
index 9c78dd9237..4a1f988a23 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2021-03-11 12:54+0000\n"
"Last-Translator: Мирослав Николић \n"
"Language-Team: Serbian \n"
@@ -136,243 +136,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary LLC."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "Мања освежења:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Освежени преводи"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Освежени преводи"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Поправке:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ss.po b/po/extra/ss.po
index 289bdeb73c..f50ff0b466 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/st.po b/po/extra/st.po
index e4b156b075..3a9b8127b7 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/su.po b/po/extra/su.po
index 29148897c1..bcfbcec607 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/sv.po b/po/extra/sv.po
index 31390784da..b85dba8e68 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-21 10:17+0000\n"
"Last-Translator: Fredrik B \n"
"Language-Team: Swedish \n"
"Language-Team: Silesian \n"
"Language-Team: Tagalog \n"
"Language-Team: Turkish \n"
@@ -144,143 +144,189 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "İyileştirmeler:"
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "Küçük güncellemeler:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Çeviriler güncellendi"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Çeviriler güncellendi"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
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:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -288,26 +334,26 @@ 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:154
+#: data/code.metainfo.xml.in:193
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:155
+#: data/code.metainfo.xml.in:194
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:156
+#: data/code.metainfo.xml.in:195
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:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Düzeltmeler:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -315,80 +361,80 @@ msgstr ""
"Bir projede bulunan dokunulmamış dosyalar içeren Git dalını şimdi "
"değiştirmeniz mümkün"
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
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:162
+#: data/code.metainfo.xml.in:201
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:163
+#: data/code.metainfo.xml.in:202
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:164
+#: data/code.metainfo.xml.in:203
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"
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr "Aynı isimli projeler şimdi bağlı oldukları klasörün adını da içerir"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr "GTK yerine FileChooser portalı kullanılacak"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr "Sekme düşüşünden yeni pencere oluştururken kilitlenme düzeltildi"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
"Kenar çubuğundan oluşturulan dosyaların otomatik olarak açıldığından emin "
"olundu"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "Kenar çubuğunu gizlerken proje seçici düğmesini gizle"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ts.po b/po/extra/ts.po
index 8a64b3d32f..658292b478 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/tt.po b/po/extra/tt.po
index 7d75d009b4..ecd27c1c80 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/tw.po b/po/extra/tw.po
index 0582d5fca0..16b31067b0 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ty.po b/po/extra/ty.po
index ea89a2efd0..de98c2db81 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ug.po b/po/extra/ug.po
index 4386b34fe4..26a9d7a07e 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2016-12-07 08:58+0000\n"
"Last-Translator: ablimet \n"
"Language-Team: Uyghur \n"
@@ -123,243 +123,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/uk.po b/po/extra/uk.po
index b5d303528a..b6943f8cac 100644
--- a/po/extra/uk.po
+++ b/po/extra/uk.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
-"PO-Revision-Date: 2023-06-19 18:07+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
+"PO-Revision-Date: 2024-01-22 22:11+0000\n"
"Last-Translator: Ihor Hordiichuk \n"
"Language-Team: Ukrainian \n"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:04+0000\n"
#: data/code.metainfo.xml.in:9
@@ -139,47 +139,107 @@ msgstr "Опційна міні-карта для полегшення наві
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr "Удосконалення:"
#: data/code.metainfo.xml.in:73
+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:74
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
+msgstr ""
+"Додано плагін неточного пошуку, який шукає файли у всіх відкритих проєктах"
+
+#: data/code.metainfo.xml.in:75
+msgid "Save and restore the state of the terminal pane"
+msgstr "Збереження й відновлення стану в панелі термінала"
+
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
+msgid "Minor updates:"
+msgstr "Незначні оновлення:"
+
+#: data/code.metainfo.xml.in:79
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
+msgstr ""
+"\"Знайти в теці\" відтепер працює для всіх тек і текстових файлів, а не "
+"тільки для файлів \".vala\""
+
+#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr "\"Дотримуватись стилю системи\" відтепер повністю дотримано"
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr "Опція командного рядка \"--new-tab\" тепер працює"
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr "Ширину панелі символів синхронізовано та збережено"
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+"Теки проєктів автоматично закриваються, якщо їх перейменовано, переміщено "
+"або видалено ззовні"
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+"Виправлено збереження тимчасових файлів резервних копій за певних обставин"
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr "Покращено дію Показати-замінити"
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Оновлено переклади"
+
+#: data/code.metainfo.xml.in:112
msgid "Search options transferred to searchbar menu"
msgstr "Опції пошуку перенесено до меню панелі пошуку"
-#: data/code.metainfo.xml.in:74
+#: data/code.metainfo.xml.in:113
msgid "Whole word search option added"
msgstr "Додано опцію пошуку цілого слова"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:114
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
"Налаштування пошуку за цілим словом, із врахуванням регістру та за допомогою "
"регулярних виразів тепер зберігаються"
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
-msgid "Minor updates:"
-msgstr "Незначні оновлення:"
-
-#: data/code.metainfo.xml.in:79
+#: data/code.metainfo.xml.in:118
msgid "The search bar now updates properly after changing the active document"
msgstr ""
"Панель пошуку відтепер оновлюється належним чином після зміни активного "
"документа"
-#: data/code.metainfo.xml.in:80
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
"Спроба зберегти документ у місці, недоступному для запису, тепер "
"обробляється краще"
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
@@ -187,18 +247,18 @@ msgstr ""
"За стилем системи відтепер слідує контур символів, а також під час запуску "
"без відкритих документів"
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr "Пошук з урахуванням змішаного регістру відтепер працює належним чином"
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
"Результати пошуку більше не змінюються несподівано при фокусуванні на "
"документі"
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
@@ -206,7 +266,7 @@ msgstr ""
"Відтепер під час запуску завжди є активний проєкт, якщо в бічній панелі є "
"проєкти"
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
@@ -214,38 +274,33 @@ msgstr ""
"Якщо запущено гілку розробки, це показується у заголовку вікна та у спливній "
"підказці доку"
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
"Комбінації клавіш Ctrl+PageUp та Ctrl+PageDown відтепер перемикають вкладки"
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
+"Забезпечення активності проєкту під час запуску (включно з теками, не з git)"
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Оновлено переклади"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr "Оновлений дизайн піктограми застосунку"
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr "Нові користувацькі темні та світлі стилі elementary для перегляду коду"
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr "Опція дотримання темного стилю системи"
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr "Можливість розділення плитки навпіл на невеликих дисплеях ноутбуків"
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
@@ -253,7 +308,7 @@ msgstr ""
"Функції «Знайти на сторінці» та «Знайти в проєкті» відтепер доступні з меню "
"застосунку, а не з панелі заголовка"
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:168
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
@@ -261,7 +316,7 @@ msgstr ""
"Опції приховування та показу панелей відтепер представлені у вигляді "
"компактного набору пов'язаних кнопок у меню застосунку"
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
@@ -269,13 +324,13 @@ msgstr ""
"Бічна панель відтепер містить кнопку вибору проєкту та заповнює всю висоту "
"вікна"
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
"Початок глобального пошуку з виділеним текстом, який тепер попередньо "
"заповнює цей текст"
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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 + \\\""
@@ -283,7 +338,7 @@ msgstr ""
"Панель контуру символу відтепер показана праворуч від початкового вигляду і "
"може бути показана і схована комбінацією клавіш «Alt + \\»"
-#: data/code.metainfo.xml.in:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
@@ -291,7 +346,7 @@ msgstr ""
"Плагіни Terminal, Symbol outline та Strip Trailing Whitespace стали частиною "
"основної кодової бази"
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
@@ -299,14 +354,14 @@ msgstr ""
"Показ інфопанелі під час перезапису налаштувань ширини вкладки файлом "
"EditorConfig"
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
"Відтепер «Ctrl + |» — це комбінація клавіш для перебудови списку слів "
"доповнення"
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -314,11 +369,11 @@ msgstr ""
"Назва поточного файлу документів тепер показуватиметься назвою вікна у "
"багатозадачному огляді"
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr "Сховані теки відтепер показуються на бічній панелі проєкту"
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
@@ -326,16 +381,16 @@ msgstr ""
"Під час пошуку показується поточний вибраний результат і кількість "
"результатів"
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr "Панель пошуку тепер має режим регулярних виразів"
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "Виправлення:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -343,11 +398,11 @@ msgstr ""
"Тепер можна змінити гілку Git з не відстежуваними файлами, присутніми в "
"проєкті"
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr "Усунуто збої під час пошуку у великих проєктах"
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
@@ -355,41 +410,41 @@ msgstr ""
"Тепер фокусування відбувається на правильному документі після відкриття коду "
"із зовнішнього застосунку"
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr "Дублювання рядка тепер працює правильно, якщо нічого не вибрано"
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr "Усунуто збої Коду під час запиту відкриття URI невідомого формату"
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr "Проєкти з однаковою назвою тепер містять і назву батьківської теки"
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
"Під час прокрутки результатів пошуку, вони трохи перевищують зону видимості "
"для кращого перегляду"
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr "Використовується портал FileChooser, а не з GTK"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
"Центрування діалогового вікна глобального пошуку над основним вікном Коду"
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr "Виправлено видимість кнопки терміналу на сторінці привітання"
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
@@ -397,7 +452,7 @@ msgstr ""
"Виправлено деякі комбінації клавіш, що впливають на нефокусований документ, "
"а не на термінал у фокусі"
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
@@ -405,24 +460,24 @@ msgstr ""
"Термінал закривається, якщо виконано вихід з оболонки, і створюються новий "
"термінал, якщо виконано повторне відкриття без оболонки"
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr "Поле «Видимі пробіли» стало перемикачем"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
"Виправлено збій під час створення нового вікна зі спадного меню вкладок"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr "Тепер створені з бічної панелі файли відкриваються автоматично"
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr "Меню вибору проєктів ховається разом з бічною панеллю"
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr "Усі копії придатні для перетворення"
diff --git a/po/extra/ur.po b/po/extra/ur.po
index 60cd3decad..07dcb4909b 100644
--- a/po/extra/ur.po
+++ b/po/extra/ur.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/uz.po b/po/extra/uz.po
index 9bf0e61342..fc148cdd5a 100644
--- a/po/extra/uz.po
+++ b/po/extra/uz.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2020-09-26 13:14+0000\n"
"Last-Translator: Shukrullo \n"
"Language-Team: Uzbek \n"
@@ -133,243 +133,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr "Kichik yangilanishlar:"
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr "Yangilangan tarjimalar"
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr "Yangilangan tarjimalar"
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr "To'g'rilashlar:"
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/ve.po b/po/extra/ve.po
index f7de8383e9..38b8270b51 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/vi.po b/po/extra/vi.po
index 20675cd692..aab5787461 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -111,243 +111,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/vo.po b/po/extra/vo.po
index 01bc64d714..038ac43082 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/wa.po b/po/extra/wa.po
index ba9b3a698b..6022977ce2 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/wo.po b/po/extra/wo.po
index 07bdf0e075..d216c9978e 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/xh.po b/po/extra/xh.po
index c517e86cd4..837b7d1fa6 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/yi.po b/po/extra/yi.po
index 330fe3d813..0e87c7da8e 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/yo.po b/po/extra/yo.po
index b72cfc9859..8423c5900b 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/za.po b/po/extra/za.po
index 285481c2f5..c5cd7d5658 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,243 +110,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/zh.po b/po/extra/zh.po
index 6a91b1103a..960ef7d4a5 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2019-09-10 14:55+0000\n"
"Last-Translator: Daniel Foré \n"
"Language-Team: Chinese \n"
@@ -112,243 +112,289 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119
-#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175
-#: data/code.metainfo.xml.in:203
+#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:110
+#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:214 data/code.metainfo.xml.in:242
msgid "Improvements:"
msgstr ""
#: data/code.metainfo.xml.in:73
-msgid "Search options transferred to searchbar menu"
+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:74
-msgid "Whole word search option added"
+msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
#: data/code.metainfo.xml.in:75
-msgid ""
-"Whole word, case sensitive mode and use regex search settings now persist"
+msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126
-#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188
-#: data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:116
+#: data/code.metainfo.xml.in:165 data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:227 data/code.metainfo.xml.in:246
msgid "Minor updates:"
msgstr ""
#: data/code.metainfo.xml.in:79
-msgid "The search bar now updates properly after changing the active document"
+msgid ""
+"\"Find in Folder\" now works for all folders and text files, not only \".vala"
+"\" files"
msgstr ""
#: data/code.metainfo.xml.in:80
+msgid "\"Follow System Style\" is now fully respected"
+msgstr ""
+
+#: data/code.metainfo.xml.in:81
+msgid "The \"--new-tab\" commandline option now works"
+msgstr ""
+
+#: data/code.metainfo.xml.in:82
+msgid "The symbol pane width is now synchronised and saved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:83
+msgid ""
+"Project folders are automatically closed if they are externally renamed, "
+"moved or deleted"
+msgstr ""
+
+#: data/code.metainfo.xml.in:84
+msgid "Fixed temporary backup files persisting under some circumstances"
+msgstr ""
+
+#: data/code.metainfo.xml.in:85
+msgid "The Show-Replace action has been improved"
+msgstr ""
+
+#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:175 data/code.metainfo.xml.in:207
+#: data/code.metainfo.xml.in:230 data/code.metainfo.xml.in:249
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:112
+msgid "Search options transferred to searchbar menu"
+msgstr ""
+
+#: data/code.metainfo.xml.in:113
+msgid "Whole word search option added"
+msgstr ""
+
+#: data/code.metainfo.xml.in:114
+msgid ""
+"Whole word, case sensitive mode and use regex search settings now persist"
+msgstr ""
+
+#: data/code.metainfo.xml.in:118
+msgid "The search bar now updates properly after changing the active document"
+msgstr ""
+
+#: data/code.metainfo.xml.in:119
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:81
+#: data/code.metainfo.xml.in:120
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:121
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:122
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:123
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:124
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:86
+#: data/code.metainfo.xml.in:125
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:87
+#: data/code.metainfo.xml.in:126
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136
-#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191
-#: data/code.metainfo.xml.in:210
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:121
+#: data/code.metainfo.xml.in:160
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:122
+#: data/code.metainfo.xml.in:161
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:123
+#: data/code.metainfo.xml.in:162
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:124
+#: data/code.metainfo.xml.in:163
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:167
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:129
+#: data/code.metainfo.xml.in:168
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:130
+#: data/code.metainfo.xml.in:169
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:131
+#: data/code.metainfo.xml.in:170
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:132
+#: data/code.metainfo.xml.in:171
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:133
+#: data/code.metainfo.xml.in:172
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:173
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:174
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:153
+#: data/code.metainfo.xml.in:192
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:154
+#: data/code.metainfo.xml.in:193
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:194
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:156
+#: data/code.metainfo.xml.in:195
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182
-#: data/code.metainfo.xml.in:198
+#: data/code.metainfo.xml.in:197 data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:237
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:160
+#: data/code.metainfo.xml.in:199
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:161
+#: data/code.metainfo.xml.in:200
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:162
+#: data/code.metainfo.xml.in:201
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:202
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:203
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
-#: data/code.metainfo.xml.in:177
+#: data/code.metainfo.xml.in:216
msgid ""
"Projects with the same name now include their parent folder name as well"
msgstr ""
-#: data/code.metainfo.xml.in:178
+#: data/code.metainfo.xml.in:217
msgid ""
"When scrolling to search results, overshoot slightly for better visibility"
msgstr ""
-#: data/code.metainfo.xml.in:179
+#: data/code.metainfo.xml.in:218
msgid "Use the FileChooser portal instead of the one from GTK"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:219
msgid "Center the global search dialog over the main Code window"
msgstr ""
-#: data/code.metainfo.xml.in:184
+#: data/code.metainfo.xml.in:223
msgid "Fix visibility of Terminal button on Welcome page"
msgstr ""
-#: data/code.metainfo.xml.in:185
+#: data/code.metainfo.xml.in:224
msgid ""
"Fix some keyboard shortcuts affecting unfocused Document instead of focused "
"Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:186
+#: data/code.metainfo.xml.in:225
msgid ""
"Close Terminal if shell exited and create new Terminal if re-opened with no "
"shell"
msgstr ""
-#: data/code.metainfo.xml.in:190
+#: data/code.metainfo.xml.in:229
msgid "\"Visible whitespace\" combobox is now a switch"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:239
msgid "Fix crash when creating new window from tab drop"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:240
msgid "Ensure files created from the sidebar are automatically opened"
msgstr ""
-#: data/code.metainfo.xml.in:205
+#: data/code.metainfo.xml.in:244
msgid "Hide project chooser button when hiding sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:209
+#: data/code.metainfo.xml.in:248
msgid "Ensure all copy is translatable"
msgstr ""
diff --git a/po/extra/zh_CN.po b/po/extra/zh_CN.po
index 8e339cd553..82e4b2bf1c 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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) \n"
"Language-Team: Persian \n"
@@ -19,96 +19,104 @@ msgstr ""
"X-Generator: Weblate 3.7.1\n"
"X-Launchpad-Export-Date: 2017-05-03 06:03+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "تب جدید"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "پنجره جدید"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "چاپ اطلاعات نسخه و خارج شدن"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "کد"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "کد"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "پنهان کردن نوار جستجو"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
msgid "Find on Page…"
msgstr "باز کردن پرونده"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "پنهان کردن نوار جستجو"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Project templates"
msgid "Show Projects Sidebar"
msgstr "قالب پروژه ها"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "همه ی فایلها"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "پروندههای متنی"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "باز کردن چند پرونده"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "باز کردن"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "انصراف"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -151,7 +159,7 @@ msgstr ""
msgid "Create Branch"
msgstr "تغییر دادن تنظیمات اسکرچ"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "تنظیمات"
@@ -161,84 +169,94 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "ذخیره پروندهها پس از تغییر:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "دندانهگذاری خودکار:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "قرار دادن فاصله به جای تب:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "عرض هر تب:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project templates"
+msgid "Projects"
+msgstr "قالب پروژه ها"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "رفتار"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "رابط"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "بستن"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "افزونهها"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "نمایش کروشه مطابق:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "فاصله بین خطوط:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "پهنای خط راهنما:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "قلم سفارشی:"
@@ -258,81 +276,86 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
#, fuzzy
msgid "Open In"
msgstr "باز کردن"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
#, fuzzy
msgid "Other Actions"
msgstr "قالبهای دیگر"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
msgid "Find in Folder…"
msgstr "باز کردن پرونده"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
msgid "New"
msgstr "تب جدید"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "پرونده جدید"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
msgid "Close Other Folders"
msgstr "باز کردن پرونده"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -340,125 +363,125 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "سند جدید"
msgstr[1] "سند جدید"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
msgid "Find in Project…"
msgstr "باز کردن پرونده"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
msgid "New Branch…"
msgstr "تغییر دادن تنظیمات اسکرچ"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
#, fuzzy
msgid "Branch"
msgstr "تغییر دادن تنظیمات اسکرچ"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
#, fuzzy
msgid "Cancel Loading"
msgstr "انصراف"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
msgid "Save changes to “%s” before closing?"
msgstr "آیا تغییرات سند %s پیش از بسته شدن ذخیره شوند؟"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
#, fuzzy
msgid "If you don't save, changes will be permanently lost."
msgstr ""
"اگر تغییرات را ذخیره نکنید، موارد مربوط به ۴ ثانیه پیش از دست خواهند رفت."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "بستن بدون ذخیره کردن"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "ذخیره کردن"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
msgid "Saving to “%s” failed."
msgstr "آیا تغییرات سند %s پیش از بسته شدن ذخیره شوند؟"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "ذخیره پرونده"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "سند جدید"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
msgid "You may not have permission to read the file."
msgstr "%s قابل خواندن نیست.شاید خراب شده است."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -469,7 +492,7 @@ msgid ""
msgstr ""
"مکان فایل %s از دستگاه جدا شده است.مایلید در جایی دیگر آنرا ذخیره نمایید؟"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid "The file %s was deleted."
msgid "File “%s” was deleted and there are unsaved changes."
@@ -477,55 +500,55 @@ msgstr "پرونده %s حذف شده است."
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "%s پاک شده است. مایلید جایی دیگر آنرا ذخیره کنید؟"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "ارسال"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -548,18 +571,18 @@ msgstr ""
msgid "No Project Selected"
msgstr "قالب پروژه ها"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, fuzzy, c-format
msgid "Text file from %s:%d"
msgstr "پروندههای متنی"
@@ -621,72 +644,64 @@ msgid_plural "%d Tabs"
msgstr[0] "تب جدید"
msgstr[1] "تب جدید"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "باز کردن یک پرونده"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "قالب پروژه ها"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "ذخیره کردن این پرونده"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "ذخیره این پرونده با نام متفاوت"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "بازیابی این پرونده"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "بهاشتراک گذاری"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "باز کردن پرونده"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -752,20 +767,20 @@ msgstr "جایگزینی"
msgid "Replace all"
msgstr "جايگزينی همه"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "نمایش دیدگاه"
diff --git a/po/ff.po b/po/ff.po
index c189ddecec..d15c3930c9 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 5639dfbb42..8d8547de9f 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
-"PO-Revision-Date: 2023-07-03 13:07+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
+"PO-Revision-Date: 2023-08-27 12:08+0000\n"
"Last-Translator: Jiri Grönroos \n"
"Language-Team: Finnish \n"
"Language: fi\n"
@@ -19,92 +19,100 @@ msgstr ""
"X-Generator: Weblate 4.17\n"
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Uusi välilehti"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Uusi ikkuna"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Tulosta versiotiedot ja poistu"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr "[TIEDOSTO…]"
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr "Koodi (%s)"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Koodi"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Piilota hakupalkki"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr "Etsi sivulta…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr "Piilota projektipalkki"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr "Näytä projektipalkki"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "No Symbols Found"
msgid "Show Symbol Outline"
msgstr "Symboleja ei löytynyt"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Piilota pääte"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Näytä pääte"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Kaikki tiedostot"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Tekstitiedostot"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Avaa tiedostoja"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Avaa"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Peru"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Avaa"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Peru"
@@ -145,7 +153,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Luo haara"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Asetukset"
@@ -157,84 +165,94 @@ msgstr ""
"Leikkaaminen tai kopiointi ilman aktiivista valintaa leikkaa tai kopioi koko "
"nykyisen rivin"
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "Yleiset"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Tallenna tiedostot muutoksien jälkeen:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "Älykäs rivien leikkaus/kopiointi:"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Sarkaimet"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Automaattinen sisennys:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Käytä välilyöntejä sarkainten tilalla:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr "Poista tekstirivien loppuun jääneet turhat välilyönnit:"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Sarkaimen leveys:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "Projekti"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Toiminta"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Käyttöliittymä"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Sulje"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Laajennukset"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Muokkain"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Korosta toisiaan vastaavat hakasulut:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Rivitys:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr "Näkyvät välilyönnit:"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "Näytä pienoiskartta:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Rivileveyden merkki:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "Fontti"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Mukautettu fontti:"
@@ -256,193 +274,198 @@ msgstr "Älä palauta"
msgid "Restore Anyway"
msgstr "Palauta silti"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "Muu sovellus…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "Avaa kohteessa"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "Muut toiminnot"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "Nimeä uudelleen"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "Siirrä roskakoriin"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Kansiot"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr "Etsi kansiosta…"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "Kansio"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "Tyhjä tiedosto"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "Uusi"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "nimetön kansio"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "uusi tiedosto"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Sulje kansio"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "Sulje muut kansiot"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] "Sulje %u avoin asiakirja"
msgstr[1] "Sulje %u avointa asiakirjaa"
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] "Piilota %u avoin asiakirja"
msgstr[1] "Piilota %u avointa asiakirjaa"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] "Palauta %u piilotettu asiakirja"
msgstr[1] "Palauta %u piilotettua asiakirjaa"
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr "Etsi projektista…"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr "Muokattu"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr "Virhe uutta haaraa luotaessa: “%s”"
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr "Uusi haara…"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "Haara"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s ei ole tekstitiedosto"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "Koodi ei voi ladata tämäntyyppistä tiedostoa."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "Lataa silti"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "Tiedoston “%s” lataaminen kestää kauan"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "Koodi lataa tiedostoa. Ole hyvä ja odota."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "Peru lataaminen"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Tallennetaanko tiedostoon “%s” tehdyt muutokset ennen sulkemista?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr "Jos et tallenna, muutokset katoavat pysyvästi."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "Sulje tallentamatta"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Tallenna"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
#| msgid "Save changes to “%s” before closing?"
msgid "Saving to “%s” failed."
msgstr "Tallennetaanko tiedostoon “%s” tehdyt muutokset ennen sulkemista?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Tallenna tiedosto"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Uusi asiakirja"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr "Tiedoston “%s” tekstiä ei voi lukea"
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr "Tarvittava käyttöoikeus sen lukemiseen saattaa puuttua."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr "Tiedosto saattaa olla rikkoutunut tai se ei ole tekstitiedosto"
#. 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:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr "Näytä silti"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file “%s” was unmounted. Do you want to save "
@@ -454,64 +477,61 @@ msgstr ""
"Liitos, jossa tiedosto “%s” sijaitsee, irrotettiin. Haluatko tallentaa "
"tiedoston jonnekin muualle?"
-#: src/Services/Document.vala:822
-#, fuzzy, c-format
-#| msgid "File “%s” was modified by an external application."
+#: src/Services/Document.vala:830
+#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
-msgstr "Tiedostoa “%s” muokattiin toisella sovelluksella."
+msgstr "Tiedosto “%s” poistettiin ja siihen on tallentamattomia muutoksia."
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
-#, fuzzy, c-format
-#| msgid "File “%s” was deleted. Do you want to save it anyway?"
+#: src/Services/Document.vala:844
+#, c-format
msgid "File “%s” does not have write permission."
-msgstr "Tiedosto “%s” poistettiin. Haluatko tallentaa sen silti?"
+msgstr "Tiedostoon “%s” ei ole kirjoitusoikeutta."
-#: src/Services/Document.vala:882
-#, fuzzy, c-format
-#| msgid "File “%s” was modified by an external application."
+#: src/Services/Document.vala:890
+#, c-format
msgid "File “%s” was modified by an external application"
-msgstr "Tiedostoa “%s” muokattiin toisella sovelluksella."
+msgstr "Tiedostoa “%s” muokattiin toisella sovelluksella"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
+"Asiakirjaa “%s” ei voi tallentaa tänne. Tallennetaanko kaksoiskappale "
+"muualle?"
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
-msgstr ""
+msgstr "Ohita"
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr "Tallenna kaksoiskappale…"
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Jatka"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr "Lataa uudelleen"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
-msgstr ""
+msgstr "Korvaa"
-#: src/Services/Document.vala:975
-#, fuzzy
-#| msgid "Save the document elsewhere"
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr "Tallenna asiakirja muualle"
@@ -530,18 +550,18 @@ msgstr "Symbolit"
msgid "No Project Selected"
msgstr "Projektia ei ole valittu"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr "Aktiivinen Git-projekti: %s"
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr "Suodata projekteja"
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "Tekstitiedosto lähteestä %s:%d"
@@ -596,71 +616,63 @@ msgid_plural "%d Tabs"
msgstr[0] "%d Sarkainlyönti"
msgstr[1] "%d Sarkainlyöntiä"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Avaa tiedosto"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Projektimallit"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Tallenna tämä tiedosto"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Tallenna tämä tiedosto eri nimellä"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Palauta tämä tiedosto"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Jaa"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "Loitonna"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Zoomaus 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "Lähennä"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr "Seuraa järjestelmän tyyliä"
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Näytä pääte"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "Valikko"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Piilota pääte"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr "Avaa kansio…"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "Supista kaikki"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "Aakkosta"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "Hallitse projektikansioita"
@@ -724,20 +736,20 @@ msgstr "Korvaa"
msgid "Replace all"
msgstr "Korvaa kaikki"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr "%d/%d"
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr "ei tuloksia"
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "Järjestä valitut rivit"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "Kytke kommentti"
@@ -1181,9 +1193,6 @@ msgstr "%s - Sanojen täydennys"
#~ msgid "Files"
#~ msgstr "Tiedostot"
-#~ msgid "Project"
-#~ msgstr "Projekti"
-
#~ msgid "Bookmarks"
#~ msgstr "Kirjanmerkit"
diff --git a/po/fj.po b/po/fj.po
index c189ddecec..d15c3930c9 100644
--- a/po/fj.po
+++ b/po/fj.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/fo.po b/po/fo.po
index c189ddecec..d15c3930c9 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 2ca0c04bf8..6e2649908a 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
-"PO-Revision-Date: 2023-07-21 09:07+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
+"PO-Revision-Date: 2024-02-08 15:11+0000\n"
"Last-Translator: Nathan \n"
"Language-Team: French \n"
"Language: fr\n"
@@ -16,93 +16,101 @@ 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 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Nouvel Onglet"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Nouvelle fenêtre"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Afficher les détails de version et quitter"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr "[FICHIER…]"
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr "Code (%s)"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Cacher la barre de recherche"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr "Rechercher sur la page…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr "Masquer la barre latérale des projets"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr "Afficher la barre latérale des projets"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr "Masquer le contour des symboles"
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr "Afficher le contour des symboles"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Cacher le terminal"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Afficher le terminal"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Tous les fichiers"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Fichiers texte"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Ouvrez des fichiers"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Ouvrir"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Annuler"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Ouvrir"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Annuler"
@@ -142,7 +150,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Créer une branche"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Préférences"
@@ -154,84 +162,92 @@ msgstr ""
"Couper ou copier sans sélection active coupera ou copiera toute la ligne "
"courante"
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr "Répertoire de compilation par défaut"
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "Général"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Sauvegarder les fichiers lorsqu'ils sont modifiés :"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "Coupure/copie intelligente des lignes :"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Indentations"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Indentation automatique :"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Insérer des espaces au lieu des tabulations :"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr "Supprimer les espaces en fin de ligne :"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Largeur des tabulations :"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr "Projets"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Comportement"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Interface"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Fermer"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Extensions"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Éditeur"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Surligner les crochets correspondants :"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Retour à la ligne :"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr "Espaces blancs visibles :"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "Afficher l'aperçu du fichier :"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Guide de largeur de ligne :"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "Police"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Police personnalisée :"
@@ -253,195 +269,200 @@ msgstr "Ne pas restaurer"
msgid "Restore Anyway"
msgstr "Restaurer quand-même"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr "Ouvrir dans le panneau du Terminal"
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "Une autre application…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "Ouvrir dans"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "Autres actions"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "Renommer"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "Déplacer dans la corbeille"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Dossiers"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr "Rechercher dans le dossier…"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "Dossier"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "Fichier vide"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "Nouveau"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "dossier sans-titre"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "nouveau fichier"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Fermer ce dossier"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "Fermer les autres dossiers"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] "Fermer %u document ouvert"
msgstr[1] "Fermer %u documents ouverts"
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] "Cacher %u document ouvert"
msgstr[1] "Cacher %u documents ouverts"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] "Afficher %u document caché"
msgstr[1] "Afficher %u documents cachés"
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr "Rechercher dans le projet…"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr "Modifié"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr "Erreur lors de la création de la nouvelle branche : « %s »"
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr "Nouvelle branche…"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "Branche"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s n'est pas un fichier texte"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "Code ne chargera pas ce type de fichier."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "Ouvrir quand-même"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "Le chargement du fichier « %s » semble prendre beaucoup de temps"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "Veuillez patienter pendant que Code charge le fichier."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "Annuler le chargement"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
"Voulez-vous enregistrer les modifications apportées à « %s » avant de "
"fermer ?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
"Si vous n'enregistrez pas, les modifications seront perdues définitivement."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "Fermer sans enregistrer"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Enregistrer"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr "L'enregistrement vers « %s » a échoué."
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Enregistrer le fichier"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Nouveau document"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr "Impossible d'enregistrer ce document vers %s"
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr "Rechercher du texte dans le dossier « %s »"
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr "Vous n'avez peut-être pas l'autorisation de lire le fichier."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr "Le fichier peut être corrompu ou ne pas être un fichier texte"
#. 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:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr "Afficher quand-même"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
@@ -450,7 +471,7 @@ msgstr ""
"L'emplacement contenant le fichier « %s » a été démonté et certaines "
"modifications n'ont pas été enregistrées."
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
@@ -459,17 +480,17 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr "Le fichier « %s » n'est pas accessible en écriture."
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr "Le fichier « %s » a été modifié par une application externe"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
@@ -477,39 +498,39 @@ msgstr ""
"Certaines modifications n'ont pas été enregistrées. Recharger le document "
"écrasera ces modifications."
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
"Le document a été modifié depuis que vous l'avez enregistré pour la première "
"fois."
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
"« %s » ne peut pas être enregistré ici. Enregistrer un doublon ailleurs ?"
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr "Ignorer"
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr "Enregistrer un doublon…"
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Continuer"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr "Recharger"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr "Écraser"
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr "Enregistrer le document ailleurs"
@@ -528,18 +549,18 @@ msgstr "Symboles"
msgid "No Project Selected"
msgstr "Aucun projet sélectionné"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr "Projet Git actif : %s"
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr "Filtrer les projets"
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "Fichier texte du %s:%d"
@@ -594,71 +615,63 @@ msgid_plural "%d Tabs"
msgstr[0] "%d tabulation"
msgstr[1] "%d tabulations"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Ouvrir un fichier"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Modèles de projet"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Enregistrer ce fichier"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Enregistrer ce fichier avec un nom différent"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Restaurer ce fichier"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Partager"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "Zoom arrière"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Zoom 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "Zoom avant"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr "Suivre le thème du système"
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Afficher le terminal"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "Menu"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Cacher le terminal"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr "Ouvrir un dossier…"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "Tout réduire"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "Trier par ordre alphabétique"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "Gérer les dossiers du projet"
@@ -722,20 +735,20 @@ msgstr "Remplacer"
msgid "Replace all"
msgstr "Tout remplacer"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr "%d sur %d"
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr "Aucun résultat"
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "Trier les lignes sélectionnées"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "Commenter/Décommenter"
@@ -1222,9 +1235,6 @@ msgstr "%s - Autocomplétion"
#~ msgid "Files"
#~ msgstr "Fichiers"
-#~ msgid "Project"
-#~ msgstr "Projet"
-
#~ msgid "Bookmarks"
#~ msgstr "Favoris"
diff --git a/po/fr_CA.po b/po/fr_CA.po
index bcdf346b29..24248e7ddb 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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"
@@ -18,95 +18,103 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Sykbalke ferbergje"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
msgid "Find on Page…"
msgstr "In bestân iepenje"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Sykbalke ferbergje"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Project templates"
msgid "Show Projects Sidebar"
msgstr "Projektsjabloanen"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "In pear bestannen iepenje"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Iepenje"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -146,7 +154,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Scratch-ynstellings feroarje"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Ynstellings"
@@ -156,84 +164,94 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project templates"
+msgid "Projects"
+msgstr "Projektsjabloanen"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Slute"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -253,79 +271,84 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
#, fuzzy
msgid "Open In"
msgstr "Iepenje"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
msgid "Find in Folder…"
msgstr "In bestân iepenje"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "In bestân iepenje"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
msgid "Close Other Folders"
msgstr "In bestân iepenje"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -333,180 +356,180 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Nij dokumint"
msgstr[1] "Nij dokumint"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
msgid "Find in Project…"
msgstr "In bestân iepenje"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
msgid "New Branch…"
msgstr "Scratch-ynstellings feroarje"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
#, fuzzy
msgid "Branch"
msgstr "Scratch-ynstellings feroarje"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Wizigings yn dokumint %s bewarje?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "Slute sûnder bewarje"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Bewarje"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
msgid "Saving to “%s” failed."
msgstr "Wizigings yn dokumint %s bewarje?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Bestân bewarje"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Nij dokumint"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -529,18 +552,18 @@ msgstr ""
msgid "No Project Selected"
msgstr "Projektsjabloanen"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -595,72 +618,64 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "In bestân iepenje"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Projektsjabloanen"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Bestân werombringe"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "In bestân iepenje"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -724,20 +739,20 @@ msgstr "Ferfange"
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ga.po b/po/ga.po
index c189ddecec..d15c3930c9 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/gd.po b/po/gd.po
index c189ddecec..d15c3930c9 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/gl.po b/po/gl.po
index 539d511ce1..15471a32c7 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2020-02-25 20:09+0000\n"
"Last-Translator: Daniel R. \n"
"Language-Team: Galician \n"
@@ -19,99 +19,107 @@ msgstr ""
"X-Generator: Weblate 3.9.1\n"
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Nova lapela"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Nova xanela"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Amosar información da versión e saír"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "Code"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Agochar a barra de buscas"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "Abrir un cartafol"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Agochar a barra de buscas"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Mostrar vista previa"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "Simbolos"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Ocultar Terminal"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Mostrar Terminal"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Todos os ficheiros"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Ficheiros de texto"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Abrir algúns ficheiros"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Abrir"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Cancelar"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Abrir"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Cancelar"
@@ -154,7 +162,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Rama"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Preferencias"
@@ -164,88 +172,98 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "Xeral"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Gardar os ficheiros ao modificalos:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Tabulacións"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Sangría automática:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Inserir espazos no canto de tabulacións:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
#, fuzzy
#| msgid "Strip trailing whitespace on save"
msgid "Strip trailing whitespace:"
msgstr "Eliminar espazos en branco ao gardar"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Largo do tabulador:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "Proxecto"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Comportamento"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Interface"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Pechar"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Extensións"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Editor"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Resaltar a parella de corchetes:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Liña de envoltura:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
#, fuzzy
#| msgid "Strip trailing whitespace"
msgid "Visible whitespace:"
msgstr "Eliminar espazos en branco"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "Mostrar minimapa:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Guía de largura da liña:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "Letra"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Tipo de letra personalizado:"
@@ -266,80 +284,85 @@ msgstr "Non restaurar"
msgid "Restore Anyway"
msgstr "Cargar de todos os xeitos"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "Outro aplicativo…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "Abrir en"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "Outras accións"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "Renomear"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "Mover ao Lixo"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Cartafoles"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Folder…"
msgstr "Abrir un cartafol"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "Cartafol"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "Arquivo baleiro"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "Novo"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "cartafol sen título"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "Novo ficheiro"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Pechar o cartafol"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
#| msgid "Close Folder"
msgid "Close Other Folders"
msgstr "Pechar o cartafol"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -347,128 +370,128 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Novo documento"
msgstr[1] "Novo documento"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Project…"
msgstr "Abrir un cartafol"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
msgid "New Branch…"
msgstr "Rama"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
#, fuzzy
msgid "Branch"
msgstr "Rama"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s non é un ficheiro de texto"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "Code non abrirá este tipo de ficheiro."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "Cargar de todos modos"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, fuzzy, c-format
#| msgid "Loading File \"%s\" Is Taking a Long Time"
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "Cargando Ficheiro \"%s\" Está a Tomar Moito Tempo"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "Por favor agarda mentres Code está cargando o ficheiro."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "Cancelar carga"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
#| msgid "Save changes to \"%s\" before closing?"
msgid "Save changes to “%s” before closing?"
msgstr "Gardar os cambios ao documento «%s» antes de pechar?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr "Se non garda o documento, os cambios perderanse permanentemente."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "Pechar sen gardar cambios"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Gardar"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
#| msgid "Save changes to \"%s\" before closing?"
msgid "Saving to “%s” failed."
msgstr "Gardar os cambios ao documento «%s» antes de pechar?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Gardar o ficheiro"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Novo documento"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
#| msgid "It may be corrupt or you don't have permission to read it."
msgid "You may not have permission to read the file."
msgstr "Talvez está danado ou non dispós dos permisos necesarios para lelo."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
#, fuzzy
#| msgid "Load Anyway"
msgid "Show Anyway"
msgstr "Cargar de todos modos"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -480,7 +503,7 @@ msgstr ""
"A ubicación que conten o arquivo \"%s\" está desmotanda. Quere gardar en "
"outro sitio?"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -492,13 +515,13 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "O arquivo \"%s\" foi eliminado. Desexa gardar de todas formas?"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -508,44 +531,44 @@ msgstr ""
"O arquivo \"%s\" foi modificado por unha aplicación externa. Desexa cargalo "
"de novo ou continuar editando?"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Continuar"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "Enviar"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -568,18 +591,18 @@ msgstr "Simbolos"
msgid "No Project Selected"
msgstr "Modelos de proxecto"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "Ficheiros de texto de %s:%d"
@@ -640,73 +663,65 @@ msgid_plural "%d Tabs"
msgstr[0] "%d tabulación"
msgstr[1] "%d tabulacións"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Abrir un ficheiro"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Modelos de proxecto"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Gardar este ficheiro"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Gardar este ficheiro cunnome diferente"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Restaurar este ficheiro"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Compartir"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "Reducir"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Zoom 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "Ampliar"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Mostrar Terminal"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "Menú"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Ocultar Terminal"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
#| msgid "Open Folder"
msgid "Open Folder…"
msgstr "Abrir carpeta"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -772,20 +787,20 @@ msgstr "Substituír"
msgid "Replace all"
msgstr "Substituír todo"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "Ordenar liñas seleccionadas"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "Conmutar comentario"
@@ -1187,9 +1202,6 @@ msgstr "%s - Completado de palabras"
#~ msgid "Files"
#~ msgstr "Ficheiros"
-#~ msgid "Project"
-#~ msgstr "Proxecto"
-
#~ msgid "Bookmarks"
#~ msgstr "Marcadores"
diff --git a/po/gn.po b/po/gn.po
index c189ddecec..d15c3930c9 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/gu.po b/po/gu.po
index c92c3f74cd..85d365340f 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-21 13:37+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: Gujarati \n"
@@ -18,95 +18,103 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "નવી ટેબ"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "નવી વિંડો"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "શોધ બારને છુપાવો"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
msgid "Find on Page…"
msgstr "ફાઈલ ખોલો"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "શોધ બારને છુપાવો"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Project templates"
msgid "Show Projects Sidebar"
msgstr "પ્રોજેક્ટના ટેમ્પલેટ્સ"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "બધી ફાઇલો"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "ખોલો"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -146,7 +154,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Scratch ના સેટિંગ્સ બદલો"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "પસંદગીઓ"
@@ -156,84 +164,94 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "સાચવો ફાઈલ્સને જયારે બદલાય"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "સ્વયંસંચાલિત ઇન્ડેનટેસન"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "ટેબ્સને બદલે જગ્યાઓ સામેલ કરો"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "ટૅબની પહોળાઈ"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project templates"
+msgid "Projects"
+msgstr "પ્રોજેક્ટના ટેમ્પલેટ્સ"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "વર્તણુક"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "ઇન્ટરફેસ"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "બંધ કરો"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "એક્સ્ટેન્શન્સ"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "પ્રકાશિત બંધબેસતા કૌંસ"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "વાક્ય પહોળાઈની માર્ગદર્શિકા"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "વૈવિધ્યપૂર્ણ અક્ષર"
@@ -253,262 +271,267 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
#, fuzzy
msgid "Open In"
msgstr "ખોલો"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
msgid "Find in Folder…"
msgstr "ફાઈલ ખોલો"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
msgid "New"
msgstr "નવી ટેબ"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "નવી ફાઈલ"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
msgid "Close Other Folders"
msgstr "ફાઈલ ખોલો"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
msgid "Find in Project…"
msgstr "ફાઈલ ખોલો"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
msgid "New Branch…"
msgstr "Scratch ના સેટિંગ્સ બદલો"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
#, fuzzy
msgid "Branch"
msgstr "Scratch ના સેટિંગ્સ બદલો"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
#, fuzzy
msgid "Close Without Saving"
msgstr "સંગ્રહ કર્યા વગર બંધ કરો"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "સાચવો"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "ફાઇલને સાચવો"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "ચાલુ રાખો"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "અપલોડ"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -529,18 +552,18 @@ msgstr ""
msgid "No Project Selected"
msgstr "પ્રોજેક્ટના ટેમ્પલેટ્સ"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -602,72 +625,64 @@ msgid_plural "%d Tabs"
msgstr[0] "નવી ટેબ"
msgstr[1] "નવી ટેબ"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "એક ફાઇલ ખોલો"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "પ્રોજેક્ટના ટેમ્પલેટ્સ"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "આ ફાઈલ ને સાચવો"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "આ ફાઈલ ને એક અલગ નામથી સાચવો"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "આ ફાઇલનો સંગ્રહ કરો"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "વહેંચો"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "ફાઈલ ખોલો"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -731,20 +746,20 @@ msgstr "બદલો"
msgid "Replace all"
msgstr "બધા બદલો"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/gv.po b/po/gv.po
index c189ddecec..d15c3930c9 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ha.po b/po/ha.po
index f53299d6cb..f8647ca36c 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/he.po b/po/he.po
index 617653a487..e481300b35 100644
--- a/po/he.po
+++ b/po/he.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
-"PO-Revision-Date: 2023-07-12 15:07+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
+"PO-Revision-Date: 2024-01-27 13:11+0000\n"
"Last-Translator: Yaron Shahrabani \n"
"Language-Team: Hebrew \n"
"Language: he\n"
@@ -16,93 +16,101 @@ 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 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "לשונית חדשה"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "חלון חדש"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "הדפסת מידע גרסה ויציאה"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr "[FILE…]"
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr "קוד (%s)"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "קוד"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "הסתרת סרגל החיפוש"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr "איתור בעמוד…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr "הסתרת סרגל המיזמים"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr "הצגת סרגל המיזמים"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr "הסתרת קווי מתאר של סמלים"
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr "הצגת קווי מתאר של סמלים"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "הסתרת המסוף"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "הצגת המסוף"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "כל הקבצים"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "קבצי טקסט"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "פתיחת מספר קבצים"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "פתיחה"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "ביטול"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_פתיחה"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_ביטול"
@@ -141,7 +149,7 @@ msgstr "שם הענף חייב להיות ייחודי ולהיצמד לכללי
msgid "Create Branch"
msgstr "יצירת ענף"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "העדפות"
@@ -152,84 +160,92 @@ msgid ""
msgstr ""
"גזירה או העתקה ללא בחירה פעילה תובלנה לגזירה או להעתקה של כל השורה הנוכחית"
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr "תיקיית בנייה כברירת מחדל"
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "כללי"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "שמירת קבצים בעת שינוי:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "גזירה/העתקה חכמה של שורות:"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "טאבים"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "הזחה אוטומטית:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "הוספת רווחים במקום טאבים:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr "הסרה של הרווחים בסוף השורה:"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "רוחב טאב:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr "מיזמים"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "התנהגות"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "ממשק"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "סגירה"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "הרחבות"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "עורך"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "הדגשת הסוגר התואם:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "גלישת שורות:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr "רווח גלוי:"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "הצגת מפת סקירה:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "הנחיית רוחב שורה:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "גופן"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "גופן מותאם אישית:"
@@ -249,251 +265,256 @@ msgstr "לא לשחזר"
msgid "Restore Anyway"
msgstr "לשחזר בכל זאת"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr "פתיחה בסרגל במסוף"
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "יישום אחר…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "פתיחה עם"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "פעולות אחרות"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "שינוי שם"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "העברה לאשפה"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "תיקיות"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr "איתור בתיקייה…"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "תיקייה"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "קובץ ריק"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "חדש"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "תיקייה ללא שם"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "קובץ חדש"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "סגירת תיקייה"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "לסגור את התיקיות האחרות"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] "סגירת מסמך אחד פתוח"
msgstr[1] "סגירת %u מסמכים פתוחים"
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] "הסתרת מסמך פתוח"
msgstr[1] "הסתרת %u מסמכים פתוחים"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] "שחזור מסמך נסתר"
msgstr[1] "שחזור %u מסמכים נסתרים"
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr "איתור במיזם…"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr "נערכה"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr "שגיאה ביצירת ענף חדש: „%s”"
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr "ענף חדש…"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "ענף"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s אינו קובץ טקסט"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "קוד לא ידע לטעון סוג כזה של קובץ."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "לטעון בכל זאת"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "טעינת הקובץ „%s” אורכת זמן רב"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "נא להמתין בזמן שקוד טוען את הקובץ."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "ביטול הטעינה"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr "לשמור את השינויים אל „%s” לפני הסגירה?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr "בחירה שלא לשמור תוביל לאבדן השינויים לעד."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "סגירה ללא שמירה"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "שמירה"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr "השמירה אל „%s” נכשלה."
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "שמירת קובץ"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "מסמך חדש"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr "לא ניתן לשמור את המסמך הזה אל %s"
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr "לא ניתן לקרוא טקסט בקובץ „%s”"
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr "כנראה שאין לך הרשאות לקרוא את הקובץ."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr "כנראה שהקובץ פגום או שאינו קובץ טקסט"
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr "להציג בכל זאת"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr "בוטלה העגינה של המקום המכיל את הקובץ „%s” והיו שינויים שלא נשמרו."
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr "הקובץ „%s” נמחק ויש שינויים שלא נשמרו."
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr "לקובץ „%s” אין הרשאות כתיבה."
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr "הקובץ „%s” נערך ביישום חיצוני"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr "יש גם שינויים שלא נשמרו. טעינת המסמך מחדש ישכתב את השינויים שלא נשמרו."
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr "המסמך נערך חיצונית מאז ששמרת אותו לאחרונה."
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr "אי אפשר לשמור לכאן את „%s”. לשמור שכפול במקום אחר?"
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr "התעלמות"
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr "שמירת שכפול…"
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "המשך"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr "רענון"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr "לשכתב"
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr "לשמור את המסמך במקום אחר"
@@ -512,18 +533,18 @@ msgstr "סמלים"
msgid "No Project Selected"
msgstr "לא נבחר מיזם"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr "מיזם Git פעיל: %s"
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr "סינון מיזמים"
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "קובץ טקסט מ־%s:%d"
@@ -578,77 +599,69 @@ msgid_plural "%d Tabs"
msgstr[0] "טאב אחד"
msgstr[1] "%d טאבים"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "פתיחת קובץ"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "תבניות מיזם"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "שמירת קובץ זה"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "שמירת קובץ זה בשם שונה"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "שחזור קובץ זה לקדמותו"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "שיתוף"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "התרחקות"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "תקריב 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "התקרבות"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr "כמו ערכת העיצוב של המערכת"
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "הצגת המסוף"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "תפריט"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "הסתרת המסוף"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr "פתיחת תיקייה…"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "לצמצם הכול"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "סידור אלפביתי"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "ניהול תיקיות המיזם"
#: src/Widgets/SearchBar.vala:71
msgid "Find"
-msgstr "חיפוש"
+msgstr "איתור"
#: src/Widgets/SearchBar.vala:74
msgid "No Results"
@@ -706,20 +719,20 @@ msgstr "החלפה"
msgid "Replace all"
msgstr "החלפת הכול"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr "%d מתוך %d"
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr "אין תוצאות"
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "סידור השורות הנבחרות"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "החלפת מצב הערה"
@@ -1160,9 +1173,6 @@ msgstr "%s - השלמת מילים"
#~ msgid "Files"
#~ msgstr "קבצים"
-#~ msgid "Project"
-#~ msgstr "מיזם"
-
#~ msgid "Bookmarks"
#~ msgstr "סימניות"
diff --git a/po/hi.po b/po/hi.po
index c142dd2bbf..6dc13f3b22 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2019-05-10 06:32+0000\n"
"Last-Translator: Prachi Joshi \n"
"Language-Team: Hindi \n"
@@ -19,99 +19,107 @@ msgstr ""
"X-Generator: Weblate 3.6.1\n"
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "नया टैब"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "नया विंडो"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "प्रिन्ट संस्करण जानकारी और बाहर"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "कोड"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "कोड"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "सर्च बार छुपायें"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "एक फ़ोल्डर खोलें"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "सर्च बार छुपायें"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "पूर्वावलोकन दिखाएँ"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "संकेत"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "टर्मिनल छिपाएं"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "टर्मिनल दिखाएँ"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "सभी फाइलें"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "टेक्स्ट फाइलें"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "कुछ फ़ाइल खोलें"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "खोलें"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "रद्द करें"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "खोलें (_O)"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "रद्द करें (_C)"
@@ -153,7 +161,7 @@ msgstr ""
msgid "Create Branch"
msgstr "शाखा बदलें"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "वरीयताएँ"
@@ -163,84 +171,94 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "सामान्य"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "बदलाव करने पर फाइलों को सहेजे:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "टैब्स"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "स्वचालित हाशिया:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "टैब की जगह रिक्ति डालें:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "टैब चौड़ाई :"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "प्रोजेक्ट"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "व्यवहार"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "इंटरफ़ेस"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "बंद करें"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "एक्सटेंशन्स"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "एडीटर"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "सामान कोष्ठकों को हाईलाइट करें:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "लाइन रैप:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "लघु मानचित्र चित्रित करें:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "पंक्ति चौड़ाई गाइड:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "फॉन्ट"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "मनपसंद फ़ॉन्ट:"
@@ -261,79 +279,84 @@ msgstr ""
msgid "Restore Anyway"
msgstr "वैसे भी लोड करें"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "अन्य अनुप्रयोग…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "में खोलें"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "अन्य अनुप्रयोग"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "पुनः नामकरण"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "रद्दी में डालें"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "फोल्डर"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Folder…"
msgstr "एक फ़ोल्डर खोलें"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "फ़ोल्डर"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "ख़ाली फ़ाइल"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "नया"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "अनाम फ़ोल्डर"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "नई फ़ाइल"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "फ़ोल्डर बंद करें"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
#| msgid "Close Folder"
msgid "Close Other Folders"
msgstr "फ़ोल्डर बंद करें"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -341,128 +364,128 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "नया दस्तावेज़"
msgstr[1] "नया दस्तावेज़"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
#| msgid "Open a folder"
msgid "Find in Project…"
msgstr "एक फ़ोल्डर खोलें"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
msgid "New Branch…"
msgstr "शाखा बदलें"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
#, fuzzy
msgid "Branch"
msgstr "शाखा बदलें"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s एक टेक्स्ट फ़ाइल नहीं है"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "कोड इस प्रकार के फ़ाइल को लोड नहीं कर सकता।"
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "वैसे भी लोड करें"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, fuzzy, c-format
#| msgid "Loading File \"%s\" Is Taking a Long Time"
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "\"%s\" फ़ाइल लोड होने में ज्यादा समय ले रहा है"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "कृपया प्रतीक्षा करें जब तक कि कोड फ़ाइल लोड नहीं करता।"
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "लोड रद्द करें"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
#| msgid "Save changes to \"%s\" before closing?"
msgid "Save changes to “%s” before closing?"
msgstr "डाँकयुमेन्ट बंद करनेसे पहले \"%s\" के बदलाव सेव करे?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr "अगर आप फाइल को नहीं सहेजेंगे, तो बदलाव हमेशा के लिए खो जाएँगे |"
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "बिना सहेजे बंद करें"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "सहेजें"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
#| msgid "Save changes to \"%s\" before closing?"
msgid "Saving to “%s” failed."
msgstr "डाँकयुमेन्ट बंद करनेसे पहले \"%s\" के बदलाव सेव करे?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "फ़ाइल सहेजें"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "नया दस्तावेज़"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
#| msgid "It may be corrupt or you don't have permission to read it."
msgid "You may not have permission to read the file."
msgstr "शायद यह ख़राब है अथवाआपके पास इसे पढ़ने के लिए आवश्यक अनुमति नहीं है।"
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
#, fuzzy
#| msgid "Load Anyway"
msgid "Show Anyway"
msgstr "वैसे भी लोड करें"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -472,7 +495,7 @@ msgid ""
"changes."
msgstr "फ़ाइल \"%s\" उक्त स्थान हटा दिया गया था। आप कहीं और सहेजना चाहते हैं?"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -484,13 +507,13 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "फ़ाइल \"%s\" हटा दी गई थी।आप फिर भी सहेजना चाहते हैं?"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -500,44 +523,44 @@ msgstr ""
"फ़ाइल \"%s\" किसी बाह्य एप्लीकेशन द्वारा बदला गया है. क्या आप इसे पुनः लोड करना चाहते "
"हैं या संपादन जारी रखना चाहते हैं?"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "जारी रखें"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "अपलोड करें"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -560,18 +583,18 @@ msgstr "संकेत"
msgid "No Project Selected"
msgstr "प्रोजेक्ट टेम्प्लेट"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "टेक्स्ट फाइलें %s से : %d तक"
@@ -632,73 +655,65 @@ msgid_plural "%d Tabs"
msgstr[0] "%d टैब"
msgstr[1] "%d टैब"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "फाइल खोलें"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "प्रोजेक्ट टेम्प्लेट"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "इस फाइल को सुरक्षित करें"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "इस फाइल को किसी अन्य नाम से सुरक्षित करें"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "इस फाइल को वापस लौटाएँ"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "साझा करें"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "ज़ूम आउट"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "ज़ूम 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "ज़ूम इन"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "टर्मिनल दिखाएँ"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "मेन्यू"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "टर्मिनल छिपाएं"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
#| msgid "Open Folder"
msgid "Open Folder…"
msgstr "फाइल खोलें"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -764,20 +779,20 @@ msgstr "बदलें"
msgid "Replace all"
msgstr "सबको प्रतिस्थापित करें"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "चयनित लाइनों को क्रमबद्ध करें"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "टिप्पणी टॉगल करें"
@@ -1190,9 +1205,6 @@ msgstr "%s - शब्द समापन"
#~ msgid "Files"
#~ msgstr "फ़ाइलें"
-#~ msgid "Project"
-#~ msgstr "प्रोजेक्ट"
-
#~ msgid "..."
#~ msgstr "..."
diff --git a/po/ho.po b/po/ho.po
index f53299d6cb..f8647ca36c 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index 1bacdd4ceb..c47c3a2896 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2017-08-16 12:16+0000\n"
"Last-Translator: gogogogi \n"
"Language-Team: Croatian \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/hu.po b/po/hu.po
index a9b7b19613..072cbf5368 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,103 +7,111 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
-"PO-Revision-Date: 2023-07-12 15:07+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
+"PO-Revision-Date: 2024-01-27 13:11+0000\n"
"Last-Translator: TomiOhl \n"
-"Language-Team: Hungarian \n"
+"Language-Team: Hungarian "
+"\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Új lap"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Új ablak"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Verzióinformáció kiírása és kilépés"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr "[FILE…]"
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr "Kód (%s)"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Kód"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "A keresősáv elrejtése"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr "Keresés az oldalon…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr "A Projektek oldalsáv elrejtése"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr "A Projektek oldalsáv megjelenítése"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr "Szimbólumkiemelés elrejtése"
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr "Szimbólumkiemelés megjelenítése"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Terminál elrejtése"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+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:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Minden fájl"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Szövegfájlok"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Nyisson meg fájlokat"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Megnyitás"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Mégse"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "Meg_nyitás"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Mégse"
@@ -118,7 +126,7 @@ msgstr "A keresési kifejezés legalább 3 karakter hosszú kell legyen."
#: src/Dialogs/GlobalSearchDialog.vala:83
msgid "Case sensitive:"
-msgstr "Kis-nagybetű érzékeny:"
+msgstr "Kis-nagybetű érzékenység:"
#: src/Dialogs/GlobalSearchDialog.vala:92
msgid "Use regular expressions:"
@@ -143,7 +151,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Ág létrehozása"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Beállítások"
@@ -155,84 +163,92 @@ msgstr ""
"A kijelölés nélküli kivágás vagy másolás az egész jelenlegi sort kivágja "
"vagy kimásolja"
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr "Alapértelmezett fordítási mappa"
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "Általános"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Fájlok mentése változtatáskor:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "Sorok okos vágása/másolása:"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Lapok"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Automatikus behúzás:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Szóközök beillesztése tabulátorok helyett:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr "Sorvégi szóközök eltávolítása:"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Tabulátor szélessége:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr "Projektek"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Viselkedés"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Felület"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Bezárás"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Bővítmények"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Szerkesztő"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Zárójelpárok kiemelése:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "Sortörés:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr "Látható szóközök:"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "Minitérkép megjelenítése:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Sorhosszúság-mutató:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "Betűtípus"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Egyéni betűtípus:"
@@ -253,194 +269,199 @@ msgstr "Ne állítsa vissza"
msgid "Restore Anyway"
msgstr "Visszaállítás mindenképp"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr "Megnyitás a Terminál panelen"
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "Másik alkalmazás…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "Megnyitás ezzel"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "Egyéb műveletek"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "Átnevezés"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "Áthelyezés a kukába"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Mappák"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr "Keresés a mappában…"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "Mappa"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "Üres fájl"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "Új"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "névtelen mappa"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "új fájl"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Mappa bezárása"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "Többi mappa bezárása"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] "%u dokumentum bezárása"
msgstr[1] "%u dokumentum bezárása"
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] "%u megnyitott dokumentum elrejtése"
msgstr[1] "%u megnyitott dokumentum elrejtése"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] "%u elrejtett dokumentum visszaállítása"
msgstr[1] "%u elrejtett dokumentum visszaállítása"
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr "Keresés a projektben…"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr "Módosítva"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr "Hiba az ág létrehozása közben: \"%s\""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr "Új ág…"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "Ág"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "A(z) %s nem szövegfájl"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "A Kód nem tölt be ilyen típusú fájlt."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "Betöltés mindenképp"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "A(z) \"%s\" fájl betöltése túl sokáig tart"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "Várjon, amíg a Kód betölti a fájlt."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "Betöltés megszakítása"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr "Menti a(z) %s módosításait bezárás előtt?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr "Ha nem menti, akkor a módosítások véglegesen elvesznek."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "Bezárás mentés nélkül"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Mentés"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr "Mentés a(z) %s fájlba sikertelen."
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Fájl mentése"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Új dokumentum"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr "A dokumentumot nem lehet menteni ide: %s"
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr "A szöveg beolvasása sikertelen a(z) \"%s\" fájlban"
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
"Lehet, hogy nem rendelkezik a szükséges engedélyekkel ahhoz, hogy olvashassa "
"a fájlt."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr "A fál sérült lehet, vagy pedig nem szövegfájl"
#. 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:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr "Megnyitás mindenképp"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
@@ -449,24 +470,24 @@ msgstr ""
"A hely, amely tartalmazta a(z) \"%s\" fájlt, leválasztásra került és nem "
"mentett módosítások vannak."
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr "A(z) \"%s\" fájl törōlve és nem mentett módosítások vannak."
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr "A(z) \"%s\" fájlhoz nincs írási engedélye."
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr "A(z) \"%s\" fájlt egy külső alkalmazás módosította"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
@@ -474,36 +495,36 @@ msgstr ""
"Nem mentett módosítások is vannak. A dokumentum újratöltése felülírja a nem "
"mentett módosításokat."
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr "A dokumentum külső forrásból módosult a legutóbbi mentés óta."
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr "A(z) “%s” nem menthető ide. Készít egy másolatot máshova?"
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr "Mellőzés"
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr "Másolat mentése…"
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Folytatás"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr "Újratöltés"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr "Felülírás"
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr "A dokumentum mentése máshova"
@@ -522,18 +543,18 @@ msgstr "Szimbólumok"
msgid "No Project Selected"
msgstr "Nincs kiválasztott projekt"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr "Aktív Git projekt: %s"
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr "Projektek szűrése"
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "Szöveges fájl innen: %s:%d"
@@ -588,71 +609,63 @@ msgid_plural "%d Tabs"
msgstr[0] "%d tabulatúra"
msgstr[1] "%d tabulatúra"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Fájl megnyitása"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Projektsablonok"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Fájl mentése"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Fájl mentése más néven"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Fájl visszaállítása"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Megosztás"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "Kicsinyítés"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Eredeti méret"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "Nagyítás"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr "Rendszertéma követése"
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Terminál megjelenítése"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "Menü"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Terminál elrejtése"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr "Mappa megnyitása…"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "Összes becsukása"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "Betűrendbe"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "Projekt mappáinak kezelése"
@@ -690,7 +703,7 @@ msgstr "Mindig"
#: src/Widgets/SearchBar.vala:107
msgid "Case Sensitive"
-msgstr "Kis-nagybetű érzékeny"
+msgstr "Kis-nagybetű érzékenység"
#: src/Widgets/SearchBar.vala:114
msgid "Use Regular Expressions"
@@ -716,20 +729,20 @@ msgstr "Csere"
msgid "Replace all"
msgstr "Összes cseréje"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr "%d/%d"
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr "nincs találat"
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "A kiválasztott sorok sorrendbe rakása"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "Megjegyzés megjelenítése/elrejtése"
@@ -1178,9 +1191,6 @@ msgstr "%s - szókiegészítés"
#~ msgid "Files"
#~ msgstr "Fájlok"
-#~ msgid "Project"
-#~ msgstr "Projekt"
-
#~ msgid "Bookmarks"
#~ msgstr "Könyvjelzők"
diff --git a/po/hy.po b/po/hy.po
index 87c786d361..a4dc9ce339 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-21 13:38+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:00+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Փակել"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr "Փոխարինել"
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/hz.po b/po/hz.po
index f53299d6cb..f8647ca36c 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ia.po b/po/ia.po
index f53299d6cb..f8647ca36c 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/id.po b/po/id.po
index e516653eba..94b8bbf18b 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+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"
@@ -14,90 +14,98 @@ msgstr ""
"X-Generator: Weblate 3.7.1\n"
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -136,7 +144,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -146,84 +154,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -243,249 +259,254 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "Maybe you do not have the necessary permissions."
msgid "File “%s” does not have write permission."
msgstr "Probablemente no tienes los permisos necesarios."
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -504,18 +525,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -570,71 +591,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -698,20 +711,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ii.po b/po/ii.po
index f53299d6cb..f8647ca36c 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ik.po b/po/ik.po
index f53299d6cb..f8647ca36c 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/io.elementary.code.pot b/po/io.elementary.code.pot
index 38ed1ad69c..f6b44a3f57 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -18,90 +18,98 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -140,7 +148,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -150,84 +158,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -247,251 +263,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -510,18 +531,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -576,71 +597,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -704,20 +717,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/io.po b/po/io.po
index f53299d6cb..f8647ca36c 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/is.po b/po/is.po
index f53299d6cb..f8647ca36c 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/it.po b/po/it.po
index 51439a922d..e6f9a0e66c 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2020-10-23 17:15+0000\n"
"Last-Translator: Fabio Zaramella \n"
"Language-Team: Italian \n"
@@ -19,99 +19,107 @@ msgstr ""
"X-Generator: Weblate 3.9.1\n"
"X-Launchpad-Export-Date: 2017-05-04 05:45+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "Nuova scheda"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "Nuova finestra"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "Stampa informazioni sulla versione ed esci"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "Codice"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "Codice"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Nascondi la barra di ricerca"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
#| msgid "Open Project Folder…"
msgid "Find on Page…"
msgstr "Apri cartella progetto…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Nascondi la barra di ricerca"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Mostra anteprima"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
#, fuzzy
#| msgid "No Symbols Found"
msgid "Show Symbol Outline"
msgstr "Nessun simbolo trovato"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "Nascondi terminale"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "Mostra terminale"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Tutti i file"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "File di testo"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "Apri alcuni file"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Apri"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "Annulla"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "_Apri"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "_Annulla"
@@ -157,7 +165,7 @@ msgstr ""
msgid "Create Branch"
msgstr "Ramo di sviluppo"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "Preferenze"
@@ -169,88 +177,98 @@ msgstr ""
"Tagliare o copiare senza una selezione comporterà il taglio o la copia "
"dell'intera riga corrente"
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "Generali"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "Salva i file appena modificati:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "Copia/Incolla righe intelligente:"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "Tabulazioni"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "Capoverso automatico:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "Inserisci spazi invece di tabulazioni:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
#, fuzzy
#| msgid "Strip trailing whitespace on save"
msgid "Strip trailing whitespace:"
msgstr "Rimuovi spazi a fine riga al salvataggio"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "Larghezza di tabulazione:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+#, fuzzy
+#| msgid "Project"
+msgid "Projects"
+msgstr "Progetto"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "Azioni"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "Interfaccia"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Chiudi"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "Estensioni"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "Editor"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "Evidenzia parentesi corrispondenti:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "A capo automatico:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
#, fuzzy
#| msgid "Strip trailing whitespace"
msgid "Visible whitespace:"
msgstr "Rimuovi spazi a fine riga"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "Mostra minimappa:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "Linea guida di larghezza:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "Tipo di carattere"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "Carattere personalizzato:"
@@ -271,77 +289,82 @@ msgstr "Non ripristinare"
msgid "Restore Anyway"
msgstr "Ripristina lo stesso"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "Un'altra applicazione…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "Apri con"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "Altre azioni"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "Rinomina"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "Sposta nel cestino"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "Cartelle"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
#| msgid "Open Project Folder…"
msgid "Find in Folder…"
msgstr "Apri cartella progetto…"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "Cartella"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "File vuoto"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "Nuovo"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "cartella senza titolo"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "nuovo file"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "Chiudi cartella"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "Chiudi le altre cartelle"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -349,113 +372,113 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "Nuovo documento"
msgstr[1] "Nuovo documento"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
#| msgid "Open Project Folder…"
msgid "Find in Project…"
msgstr "Apri cartella progetto…"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
#, fuzzy
#| msgid "%s, Modified"
msgid "Modified"
msgstr "%s, modificato"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
#, fuzzy
#| msgid "Branch"
msgid "New Branch…"
msgstr "Ramo di sviluppo"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "Ramo di sviluppo"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s non è un file di testo"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "Codice non può caricare questo tipo di file."
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "Carica lo stesso"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, fuzzy, c-format
#| msgid "Loading File \"%s\" Is Taking a Long Time"
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "Il caricamento del file \"%s\" sta impiegando molto tempo"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "Attendere mentre Codice carica il file."
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "Annulla il caricamento"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, fuzzy, c-format
#| msgid "Save changes to \"%s\" before closing?"
msgid "Save changes to “%s” before closing?"
msgstr "Salvare le modifiche apportate a \"%s\" prima di chiudere?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
"Se non esegui il salvataggio le modifiche verranno perse in modo permanente."
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "Chiudi senza salvare"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Salva"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, fuzzy, c-format
#| msgid "Save changes to \"%s\" before closing?"
msgid "Saving to “%s” failed."
msgstr "Salvare le modifiche apportate a \"%s\" prima di chiudere?"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "Salva il file"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "Nuovo documento"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
#, fuzzy
#| msgid "It may be corrupt or you don't have permission to read it."
msgid "You may not have permission to read the file."
@@ -463,19 +486,19 @@ msgstr ""
"Potrebbe essere danneggiato o potresti non possedere i permessi necessari ad "
"aprirlo."
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
#, fuzzy
#| msgid "Load Anyway"
msgid "Show Anyway"
msgstr "Carica lo stesso"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, fuzzy, c-format
#| msgid ""
#| "The location containing the file \"%s\" was unmounted. Do you want to "
@@ -487,7 +510,7 @@ msgstr ""
"Il percorso che contiene il file \"%s\" è stato smontato. Vuoi salvarlo da "
"qualche altra parte?"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -499,13 +522,13 @@ msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, fuzzy, c-format
#| msgid "File \"%s\" was deleted. Do you want to save it anyway?"
msgid "File “%s” does not have write permission."
msgstr "Il file \"%s\" è stato cancellato. Vuoi salvarlo comunque?"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, fuzzy, c-format
#| msgid ""
#| "File \"%s\" was modified by an external application. Do you want to load "
@@ -515,44 +538,44 @@ msgstr ""
"Il file \"%s\" è stato modificato da un programma esterno. Vuoi caricare "
"nuovamente o continuare la modifica?"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "Continua"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
#, fuzzy
#| msgid "Upload"
msgid "Reload"
msgstr "Carica"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -575,18 +598,18 @@ msgstr "Simboli"
msgid "No Project Selected"
msgstr "Modelli di progetto"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "File di testo da %s:%d"
@@ -647,73 +670,65 @@ msgid_plural "%d Tabs"
msgstr[0] "%d scheda"
msgstr[1] "%d schede"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Apri un file"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "Modelli di progetto"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "Salva questo file"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "Salva questo file con un nome diverso"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "Ripristina questo file"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "Condividi"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "Riduci ingrandimento"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "Ingrandimento 1:1"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "Aumenta ingrandimento"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "Mostra terminale"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "Menu"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "Nascondi terminale"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
#| msgid "Open Folder"
msgid "Open Folder…"
msgstr "Apri una cartella"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "Comprimi tutto"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "Disponi in ordine alfabetico"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "Gestisci le cartelle dei progetti"
@@ -779,20 +794,20 @@ msgstr "Sostituisci"
msgid "Replace all"
msgstr "Sostituisci tutto"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "Ordina le linee selezionate"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "Attiva o disattiva il commento"
@@ -1243,9 +1258,6 @@ msgstr "%s - Autocompletamento parole"
#~ msgid "Files"
#~ msgstr "File"
-#~ msgid "Project"
-#~ msgstr "Progetto"
-
#~ msgid "Bookmarks"
#~ msgstr "Preferiti"
diff --git a/po/iu.po b/po/iu.po
index f53299d6cb..f8647ca36c 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -13,90 +13,98 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr ""
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -135,7 +143,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -145,84 +153,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -242,251 +258,256 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr ""
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr ""
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr ""
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr ""
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr ""
@@ -505,18 +526,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr ""
@@ -571,71 +592,63 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr ""
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -699,20 +712,20 @@ msgstr ""
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index 8efa8fb264..5d655cbe7d 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
-"PO-Revision-Date: 2023-07-12 15:07+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
+"PO-Revision-Date: 2024-01-27 13:11+0000\n"
"Last-Translator: Ryo Nakano \n"
"Language-Team: Japanese \n"
"Language: ja\n"
@@ -16,93 +16,101 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.17\n"
+"X-Generator: Weblate 5.0.2\n"
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr "新しいタブ"
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "新しいウィンドウ"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr "バージョン情報を表示して終了します"
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr "[ファイル…]"
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr "コード (%s)"
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr "コード"
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "検索バーを非表示"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
msgid "Find on Page…"
msgstr "ページ内を検索…"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
msgid "Hide Projects Sidebar"
msgstr "プロジェクトサイドバーを非表示"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr "プロジェクトサイドバーを表示"
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr "シンボルアウトラインを非表示"
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr "シンボルアウトラインを表示"
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr "ターミナルを非表示"
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr "ターミナルを表示"
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "すべてのファイル"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "テキストファイル"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr "複数のファイルを開く"
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "開く"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr "キャンセル"
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr "開く(_O)"
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr "キャンセル(_C)"
@@ -141,7 +149,7 @@ msgstr "ブランチ名は固有で Git の命名規則に従う必要があり
msgid "Create Branch"
msgstr "ブランチを作成"
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr "設定"
@@ -151,84 +159,92 @@ msgid ""
"current line"
msgstr "文字を選択していない場合は、現在の行全体の切り取りやコピーを行います"
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr "デフォルトのビルドディレクトリ"
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr "一般"
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr "変更が加えられた時にファイルを保存:"
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr "便利な行の切り取り/コピー:"
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr "タブ"
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr "自動インデント:"
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr "タブの代わりにスペースを挿入:"
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr "行末の余分な空白を削除:"
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr "タブ幅:"
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr "プロジェクト"
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr "挙動"
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr "インターフェース"
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "閉じる"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr "拡張機能"
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr "エディター"
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr "対となるブラケットをハイライト:"
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr "行の折り返し:"
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr "空白を表示:"
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr "ミニマップを表示:"
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr "行の幅のガイド:"
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr "フォント"
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr "カスタムフォント:"
@@ -250,189 +266,194 @@ msgstr "復元しない"
msgid "Restore Anyway"
msgstr "了解して復元"
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr "“ターミナル”ペインで開く"
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr "ほかのアプリケーション…"
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
msgid "Open In"
msgstr "指定した方法で開く"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr "ほかの操作"
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr "名前を変更"
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr "ゴミ箱に移動"
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr "フォルダー"
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
msgid "Find in Folder…"
msgstr "フォルダー内を検索…"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr "フォルダー"
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr "空のファイル"
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr "新規作成"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr "名称未設定フォルダー"
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "new file"
msgstr "新しいファイル"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr "フォルダーを閉じる"
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
msgid "Close Other Folders"
msgstr "ほかのフォルダーを閉じる"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] "%u 項目の開いているドキュメントを閉じる"
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, c-format
msgid "Hide %u Open Document"
msgid_plural "Hide %u Open Documents"
msgstr[0] "%u 項目の開いているドキュメントを非表示"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] "%u 項目の非表示にしたドキュメントを復元"
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
msgid "Find in Project…"
msgstr "プロジェクト内を検索…"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr "変更済み"
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr "新しいブランチの作成中にエラーが発生しました: “%s”"
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr "新しいブランチ…"
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr "ブランチ"
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr "%s はテキストファイルではありません"
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr "“コード”はこの種類のファイルを読み込むことができません。"
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr "強制的に読み込む"
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr "ファイル “%s” の読み込みに時間がかかっています"
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr "ファイルが読み込まれるまでお待ちください。"
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr "読み込みをキャンセル"
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr "閉じる前に “%s” への変更を保存しますか?"
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr "保存しない場合、変更は破棄されます。"
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr "保存せずに閉じる"
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "保存"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr "“%s” に保存できませんでした。"
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr "ファイルを保存"
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "新しいドキュメント"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr "%s にこのドキュメントを保存できません"
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr "ファイル “%s” 内のテキストを読み込めません"
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr "ファイルを読み込む権限がない可能性があります。"
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr "ファイルが破損しているか、テキストファイルではない可能性があります"
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr "強制的に表示"
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
@@ -440,24 +461,24 @@ msgid ""
msgstr ""
"ファイル “%s” を含む場所はアンマウントされていて、未保存の変更があります。"
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr "ファイル “%s” は削除されていて、未保存の変更があります。"
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr "“%s” への書き込み権限がありません。"
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr "ファイル “%s” は外部のアプリケーションによって変更されました"
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
@@ -465,36 +486,36 @@ msgstr ""
"未保存の変更も存在します。ドキュメントを最読み込みすると、未保存の変更は上書"
"きされます。"
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr "ドキュメントは、最後の保存以降に外部で変更されました。"
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr "“%s” はここには保存できません。複製をほかの場所に保存しますか?"
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr "無視"
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr "複製を保存…"
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr "編集を続行"
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr "再読み込み"
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr "上書きする"
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
msgid "Save Document elsewhere"
msgstr "ドキュメントをほかの場所に保存"
@@ -513,18 +534,18 @@ msgstr "シンボル"
msgid "No Project Selected"
msgstr "プロジェクト未選択"
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr "アクティブな Git プロジェクト: %s"
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr "プロジェクトをフィルター"
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, c-format
msgid "Text file from %s:%d"
msgstr "テキストファイル %s:%d"
@@ -569,7 +590,7 @@ msgstr "行へ移動:"
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
-msgstr[0] "%d個のスペース"
+msgstr[0] "%dスペース"
#: src/Widgets/FormatBar.vala:289
#, c-format
@@ -577,71 +598,63 @@ msgid "%d Tab"
msgid_plural "%d Tabs"
msgstr[0] "%d個のタブ"
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "ファイルを開きます"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr "プロジェクトテンプレート"
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr "このファイルを保存します"
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr "このファイルを別の名前で保存します"
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr "このファイルを編集前の状態に復元します"
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr "共有"
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr "縮小"
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr "100 % 表示"
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr "拡大"
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr "システムのスタイルに従う"
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr "ターミナルを表示"
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr "メニュー"
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr "ターミナルを非表示"
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
msgid "Open Folder…"
msgstr "フォルダーを開く…"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr "すべて折りたたむ"
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr "アルファベット順に並び替え"
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr "プロジェクトフォルダーを管理"
@@ -705,20 +718,20 @@ msgstr "置換"
msgid "Replace all"
msgstr "すべて置換"
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr "%d / %d件"
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr "結果がありません"
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr "選択された行を並べ替え"
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr "コメントアウト/コメントイン"
@@ -1172,9 +1185,6 @@ msgstr "%s - 単語補完"
#~ msgid "Files"
#~ msgstr "ファイル"
-#~ msgid "Project"
-#~ msgstr "プロジェクト"
-
#~ msgid "Bookmarks"
#~ msgstr "ブックマーク"
diff --git a/po/jv.po b/po/jv.po
index 02e854d1f1..844a190e80 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: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2015-12-21 13:38+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: Javanese \n"
@@ -18,93 +18,101 @@ msgstr ""
"X-Launchpad-Export-Date: 2017-05-03 06:02+0000\n"
"X-Generator: Launchpad (build 18366)\n"
-#: src/Application.vala:37
+#: src/Application.vala:38
msgid "New Tab"
msgstr ""
-#: src/Application.vala:38 src/FolderManager/FileItem.vala:31
+#: src/Application.vala:39 src/FolderManager/FileItem.vala:35
msgid "New Window"
msgstr "jendela baru"
-#: src/Application.vala:39
+#: src/Application.vala:40
msgid "Print version info and exit"
msgstr ""
-#: src/Application.vala:40
+#: src/Application.vala:42
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:207
+#: src/MainWindow.vala:223
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:209
+#: src/MainWindow.vala:225
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:321
+#: src/MainWindow.vala:362
msgid "Hide search bar"
msgstr "Umpetke papan golek"
-#: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121
+#: src/MainWindow.vala:367 src/Widgets/HeaderBar.vala:122
#, fuzzy
msgid "Find on Page…"
msgstr "Bukak berkas"
-#: src/MainWindow.vala:337
+#: src/MainWindow.vala:378
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Umpetke papan golek"
-#: src/MainWindow.vala:342
+#: src/MainWindow.vala:383
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:351
+#: src/MainWindow.vala:392
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:356
+#: src/MainWindow.vala:397
msgid "Show Symbol Outline"
msgstr ""
+#: src/MainWindow.vala:406
+msgid "Hide Terminal"
+msgstr ""
+
+#: src/MainWindow.vala:411 src/Widgets/HeaderBar.vala:196
+msgid "Show Terminal"
+msgstr ""
+
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:533
+#: src/MainWindow.vala:604
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:838 src/Services/Document.vala:597
+#: src/MainWindow.vala:932 src/Services/Document.vala:605
msgid "All files"
msgstr "Kabeh berkas"
-#: src/MainWindow.vala:842 src/Services/Document.vala:601
+#: src/MainWindow.vala:936 src/Services/Document.vala:609
msgid "Text files"
msgstr "Berkas aksara"
-#: src/MainWindow.vala:846
+#: src/MainWindow.vala:940
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:849
+#: src/MainWindow.vala:943
msgid "Open"
msgstr "Bukak"
-#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109
-#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441
-#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327
+#: src/MainWindow.vala:944 src/Dialogs/GlobalSearchDialog.vala:109
+#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:448
+#: src/Services/Document.vala:617 plugins/pastebin/pastebin_dialog.vala:327
#: plugins/pastebin/pastebin_dialog.vala:378
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:875
+#: src/MainWindow.vala:971
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:876
+#: src/MainWindow.vala:972
msgid "_Cancel"
msgstr ""
@@ -145,7 +153,7 @@ msgstr ""
msgid "Create Branch"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:217
+#: src/Dialogs/PreferencesDialog.vala:37 src/Widgets/HeaderBar.vala:218
msgid "Preferences"
msgstr ""
@@ -155,84 +163,92 @@ msgid ""
"current line"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:55
+#: src/Dialogs/PreferencesDialog.vala:52
+msgid "Default build directory"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:64
msgid "General"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:56
+#: src/Dialogs/PreferencesDialog.vala:65
msgid "Save files when changed:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:58
+#: src/Dialogs/PreferencesDialog.vala:67
msgid "Smart cut/copy lines:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:61
+#: src/Dialogs/PreferencesDialog.vala:70
msgid "Tabs"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:62
+#: src/Dialogs/PreferencesDialog.vala:71
msgid "Automatic indentation:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:64
+#: src/Dialogs/PreferencesDialog.vala:73
msgid "Insert spaces instead of tabs:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:66
+#: src/Dialogs/PreferencesDialog.vala:75
msgid "Strip trailing whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:68
+#: src/Dialogs/PreferencesDialog.vala:77
msgid "Tab width:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:74
+#: src/Dialogs/PreferencesDialog.vala:79
+msgid "Projects"
+msgstr ""
+
+#: src/Dialogs/PreferencesDialog.vala:87
msgid "Behavior"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:75
+#: src/Dialogs/PreferencesDialog.vala:88
msgid "Interface"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:91
+#: src/Dialogs/PreferencesDialog.vala:104
#: plugins/pastebin/pastebin_dialog.vala:434
msgid "Close"
msgstr "Tutup"
-#: src/Dialogs/PreferencesDialog.vala:105
+#: src/Dialogs/PreferencesDialog.vala:118
msgid "Extensions"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:114
+#: src/Dialogs/PreferencesDialog.vala:127
msgid "Editor"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:116
+#: src/Dialogs/PreferencesDialog.vala:129
msgid "Highlight matching brackets:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:119
+#: src/Dialogs/PreferencesDialog.vala:132
msgid "Line wrap:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:122
+#: src/Dialogs/PreferencesDialog.vala:135
msgid "Visible whitespace:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:128
+#: src/Dialogs/PreferencesDialog.vala:141
msgid "Show Mini Map:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:131
+#: src/Dialogs/PreferencesDialog.vala:144
msgid "Line width guide:"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:139
+#: src/Dialogs/PreferencesDialog.vala:152
msgid "Font"
msgstr ""
-#: src/Dialogs/PreferencesDialog.vala:141
+#: src/Dialogs/PreferencesDialog.vala:154
msgid "Custom font:"
msgstr ""
@@ -252,79 +268,84 @@ msgstr ""
msgid "Restore Anyway"
msgstr ""
-#: src/FolderManager/FileItem.vala:52 src/FolderManager/FolderItem.vala:148
+#: src/FolderManager/FileItem.vala:31 src/FolderManager/FolderItem.vala:91
+#: src/FolderManager/ProjectFolderItem.vala:120
+msgid "Open in Terminal Pane"
+msgstr ""
+
+#: src/FolderManager/FileItem.vala:56 src/FolderManager/FolderItem.vala:171
msgid "Other Application…"
msgstr ""
-#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:188
+#: src/FolderManager/FileItem.vala:117 src/FolderManager/FolderItem.vala:211
#, fuzzy
msgid "Open In"
msgstr "Bukak"
-#: src/FolderManager/FileItem.vala:116 src/FolderManager/FolderItem.vala:116
+#: src/FolderManager/FileItem.vala:120 src/FolderManager/FolderItem.vala:121
msgid "Other Actions"
msgstr ""
-#: src/FolderManager/FileItem.vala:119 src/FolderManager/FolderItem.vala:119
+#: src/FolderManager/FileItem.vala:123 src/FolderManager/FolderItem.vala:124
msgid "Rename"
msgstr ""
-#: src/FolderManager/FileItem.vala:125 src/FolderManager/FolderItem.vala:125
-#: src/FolderManager/ProjectFolderItem.vala:163
+#: src/FolderManager/FileItem.vala:150 src/FolderManager/FolderItem.vala:147
+#: src/FolderManager/ProjectFolderItem.vala:182
msgid "Move to Trash"
msgstr ""
-#: src/FolderManager/FileView.vala:42
+#: src/FolderManager/FileView.vala:49
msgid "Folders"
msgstr ""
-#: src/FolderManager/FolderItem.vala:128
+#: src/FolderManager/FolderItem.vala:150
#, fuzzy
msgid "Find in Folder…"
msgstr "Bukak berkas"
-#: src/FolderManager/FolderItem.vala:195
+#: src/FolderManager/FolderItem.vala:218
msgid "Folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:198
+#: src/FolderManager/FolderItem.vala:221
msgid "Empty File"
msgstr ""
#. scan all children
#. No need to show status when children shown
-#: src/FolderManager/FolderItem.vala:205
-#: src/FolderManager/ProjectFolderItem.vala:251
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/FolderItem.vala:228
+#: src/FolderManager/ProjectFolderItem.vala:271
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "New"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
msgid "untitled folder"
msgstr ""
-#: src/FolderManager/FolderItem.vala:360
+#: src/FolderManager/FolderItem.vala:387
#, fuzzy
msgid "new file"
msgstr "Berkas anyar"
-#: src/FolderManager/ProjectFolderItem.vala:111
+#: src/FolderManager/ProjectFolderItem.vala:130
msgid "Close Folder"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:116
+#: src/FolderManager/ProjectFolderItem.vala:135
#, fuzzy
msgid "Close Other Folders"
msgstr "Bukak berkas"
-#: src/FolderManager/ProjectFolderItem.vala:121
+#: src/FolderManager/ProjectFolderItem.vala:140
#, c-format
msgid "Close %u Open Document"
msgid_plural "Close %u Open Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:135
+#: src/FolderManager/ProjectFolderItem.vala:154
#, fuzzy, c-format
#| msgid "New Document"
msgid "Hide %u Open Document"
@@ -332,177 +353,177 @@ msgid_plural "Hide %u Open Documents"
msgstr[0] "dokumen anyar"
msgstr[1] "dokumen anyar"
-#: src/FolderManager/ProjectFolderItem.vala:150
+#: src/FolderManager/ProjectFolderItem.vala:169
#, c-format
msgid "Restore %u Hidden Document"
msgid_plural "Restore %u Hidden Documents"
msgstr[0] ""
msgstr[1] ""
-#: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130
+#: src/FolderManager/ProjectFolderItem.vala:189 src/Widgets/HeaderBar.vala:131
#, fuzzy
msgid "Find in Project…"
msgstr "Bukak berkas"
-#: src/FolderManager/ProjectFolderItem.vala:257
+#: src/FolderManager/ProjectFolderItem.vala:277
msgid "Modified"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:295
+#: src/FolderManager/ProjectFolderItem.vala:315
#, c-format
msgid "Error while creating new branch: “%s”"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:577
+#: src/FolderManager/ProjectFolderItem.vala:601
msgid "New Branch…"
msgstr ""
-#: src/FolderManager/ProjectFolderItem.vala:590
+#: src/FolderManager/ProjectFolderItem.vala:614
msgid "Branch"
msgstr ""
-#: src/Services/Document.vala:317
+#: src/Services/Document.vala:324
#, c-format
msgid "%s Is Not a Text File"
msgstr ""
-#: src/Services/Document.vala:318
+#: src/Services/Document.vala:325
msgid "Code will not load this type of file."
msgstr ""
-#: src/Services/Document.vala:320
+#: src/Services/Document.vala:327
msgid "Load Anyway"
msgstr ""
-#: src/Services/Document.vala:341
+#: src/Services/Document.vala:348
#, c-format
msgid "Loading File “%s” Is Taking a Long Time"
msgstr ""
-#: src/Services/Document.vala:342
+#: src/Services/Document.vala:349
msgid "Please wait while Code is loading the file."
msgstr ""
-#: src/Services/Document.vala:344
+#: src/Services/Document.vala:351
msgid "Cancel Loading"
msgstr ""
-#: src/Services/Document.vala:431
+#: src/Services/Document.vala:438
#, c-format
msgid "Save changes to “%s” before closing?"
msgstr ""
-#: src/Services/Document.vala:432
+#: src/Services/Document.vala:439
msgid "If you don't save, changes will be permanently lost."
msgstr ""
-#: src/Services/Document.vala:438
+#: src/Services/Document.vala:445
msgid "Close Without Saving"
msgstr ""
-#: src/Services/Document.vala:442 src/Services/Document.vala:608
+#: src/Services/Document.vala:449 src/Services/Document.vala:616
msgid "Save"
msgstr "Simpen"
-#: src/Services/Document.vala:567
+#: src/Services/Document.vala:575
#, c-format
msgid "Saving to “%s” failed."
msgstr ""
-#: src/Services/Document.vala:605
+#: src/Services/Document.vala:613
msgid "Save File"
msgstr ""
-#: src/Services/Document.vala:692 src/Services/Document.vala:710
+#: src/Services/Document.vala:700 src/Services/Document.vala:718
msgid "New Document"
msgstr "dokumen anyar"
#. No path for a new document
-#: src/Services/Document.vala:712
+#: src/Services/Document.vala:720
#, c-format
msgid "Cannot save this document to %s"
msgstr ""
#. Show an error view which says "Hey, I cannot read that file!"
-#: src/Services/Document.vala:778
+#: src/Services/Document.vala:786
#, c-format
msgid "Cannot read text in file “%s”"
msgstr ""
-#: src/Services/Document.vala:781
+#: src/Services/Document.vala:789
msgid "You may not have permission to read the file."
msgstr ""
-#: src/Services/Document.vala:783
+#: src/Services/Document.vala:791
msgid "The file may be corrupt or may not be a text file"
msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
-#: src/Services/Document.vala:789
+#: src/Services/Document.vala:797
msgid "Show Anyway"
msgstr ""
-#: src/Services/Document.vala:820
+#: src/Services/Document.vala:828
#, c-format
msgid ""
"The location containing the file “%s” was unmounted and there are unsaved "
"changes."
msgstr ""
-#: src/Services/Document.vala:822
+#: src/Services/Document.vala:830
#, c-format
msgid "File “%s” was deleted and there are unsaved changes."
msgstr ""
#. Check external changes after loading
#. The file has become unwritable while changes are pending
-#: src/Services/Document.vala:836
+#: src/Services/Document.vala:844
#, c-format
msgid "File “%s” does not have write permission."
msgstr ""
-#: src/Services/Document.vala:882
+#: src/Services/Document.vala:890
#, c-format
msgid "File “%s” was modified by an external application"
msgstr ""
-#: src/Services/Document.vala:887
+#: src/Services/Document.vala:895
msgid ""
"There are also unsaved changes. Reloading the document will overwrite the "
"unsaved changes."
msgstr ""
-#: src/Services/Document.vala:891
+#: src/Services/Document.vala:899
msgid "The document changed externally since you last saved it."
msgstr ""
-#: src/Services/Document.vala:907
+#: src/Services/Document.vala:915
#, c-format
msgid "“%s” can't be saved here. Save a duplicate somewhere else?"
msgstr ""
-#: src/Services/Document.vala:916
+#: src/Services/Document.vala:924
msgid "Ignore"
msgstr ""
-#: src/Services/Document.vala:918
+#: src/Services/Document.vala:926
msgid "Save Duplicate…"
msgstr ""
-#: src/Services/Document.vala:967
+#: src/Services/Document.vala:975
msgid "Continue"
msgstr ""
-#: src/Services/Document.vala:969
+#: src/Services/Document.vala:977
msgid "Reload"
msgstr ""
-#: src/Services/Document.vala:972
+#: src/Services/Document.vala:980
msgid "Overwrite"
msgstr ""
-#: src/Services/Document.vala:975
+#: src/Services/Document.vala:983
#, fuzzy
#| msgid "Save the current file"
msgid "Save Document elsewhere"
@@ -523,18 +544,18 @@ msgstr ""
msgid "No Project Selected"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:38
-#: src/Widgets/ChooseProjectButton.vala:112
-#: src/Widgets/ChooseProjectButton.vala:162
+#: src/Widgets/ChooseProjectButton.vala:47
+#: src/Widgets/ChooseProjectButton.vala:127
+#: src/Widgets/ChooseProjectButton.vala:136
#, c-format
msgid "Active Git project: %s"
msgstr ""
-#: src/Widgets/ChooseProjectButton.vala:53
+#: src/Widgets/ChooseProjectButton.vala:62
msgid "Filter projects"
msgstr ""
-#: src/Widgets/DocumentView.vala:161
+#: src/Widgets/DocumentView.vala:167
#, fuzzy, c-format
msgid "Text file from %s:%d"
msgstr "Berkas aksara"
@@ -589,72 +610,64 @@ msgid_plural "%d Tabs"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/HeaderBar.vala:37
+#: src/Widgets/HeaderBar.vala:38
msgid "Open a file"
msgstr "Bukak berkas"
-#: src/Widgets/HeaderBar.vala:43
+#: src/Widgets/HeaderBar.vala:44
msgid "Project templates"
msgstr ""
-#: src/Widgets/HeaderBar.vala:50
+#: src/Widgets/HeaderBar.vala:51
msgid "Save this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:58
+#: src/Widgets/HeaderBar.vala:59
msgid "Save this file with a different name"
msgstr ""
-#: src/Widgets/HeaderBar.vala:66
+#: src/Widgets/HeaderBar.vala:67
msgid "Restore this file"
msgstr ""
-#: src/Widgets/HeaderBar.vala:75
+#: src/Widgets/HeaderBar.vala:76
msgid "Share"
msgstr ""
-#: src/Widgets/HeaderBar.vala:83
+#: src/Widgets/HeaderBar.vala:84
msgid "Zoom Out"
msgstr ""
-#: src/Widgets/HeaderBar.vala:91
+#: src/Widgets/HeaderBar.vala:92
msgid "Zoom 1:1"
msgstr ""
-#: src/Widgets/HeaderBar.vala:99
+#: src/Widgets/HeaderBar.vala:100
msgid "Zoom In"
msgstr ""
-#: src/Widgets/HeaderBar.vala:144
+#: src/Widgets/HeaderBar.vala:145
msgid "Follow System Style"
msgstr ""
-#: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265
-msgid "Show Terminal"
-msgstr ""
-
-#: src/Widgets/HeaderBar.vala:239
+#: src/Widgets/HeaderBar.vala:240
msgid "Menu"
msgstr ""
-#: src/Widgets/HeaderBar.vala:260
-msgid "Hide Terminal"
-msgstr ""
-
-#: src/Widgets/Sidebar.vala:57
+#: src/Widgets/Sidebar.vala:63
#, fuzzy
msgid "Open Folder…"
msgstr "Bukak berkas"
-#: src/Widgets/Sidebar.vala:60
+#: src/Widgets/Sidebar.vala:66
msgid "Collapse All"
msgstr ""
-#: src/Widgets/Sidebar.vala:64
+#: src/Widgets/Sidebar.vala:70
msgid "Alphabetize"
msgstr ""
-#: src/Widgets/Sidebar.vala:76
+#: src/Widgets/Sidebar.vala:82
msgid "Manage project folders"
msgstr ""
@@ -720,20 +733,20 @@ msgstr "Tumpuk"
msgid "Replace all"
msgstr ""
-#: src/Widgets/SearchBar.vala:576
+#: src/Widgets/SearchBar.vala:569
#, c-format
msgid "%d of %d"
msgstr ""
-#: src/Widgets/SearchBar.vala:581
+#: src/Widgets/SearchBar.vala:574
msgid "no results"
msgstr ""
-#: src/Widgets/SourceView.vala:522
+#: src/Widgets/SourceView.vala:551
msgid "Sort Selected Lines"
msgstr ""
-#: src/Widgets/SourceView.vala:535
+#: src/Widgets/SourceView.vala:564
msgid "Toggle Comment"
msgstr ""
diff --git a/po/ka.po b/po/ka.po
index 79abf25797..1814366498 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-08-01 20:46+0000\n"
+"POT-Creation-Date: 2024-01-25 13:56+0000\n"
"PO-Revision-Date: 2023-07-14 18:07+0000\n"
"Last-Translator: NorwayFun