From fce4733d22669aaa8dcd13ab0b8065bec8ff49b4 Mon Sep 17 00:00:00 2001 From: kmwallio Date: Thu, 23 Jun 2022 23:59:57 -0700 Subject: [PATCH 01/34] UI Refresh --- src/Controllers/SheetManager.vala | 1 + src/ThiefApp.vala | 1 - src/Widgets/Sheets.vala | 53 +++++++++++++++++++++++++++---- 3 files changed, 48 insertions(+), 7 deletions(-) diff --git a/src/Controllers/SheetManager.vala b/src/Controllers/SheetManager.vala index c01c7163..7a2ce211 100644 --- a/src/Controllers/SheetManager.vala +++ b/src/Controllers/SheetManager.vala @@ -63,6 +63,7 @@ namespace ThiefMD.Controllers.SheetManager { if (_box_view == null) { _box_view = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); + _box_view.add (ThiefApp.get_instance ().toolbar); _box_view.add (ThiefApp.get_instance ().search_bar); _bar = new Gtk.InfoBar (); diff --git a/src/ThiefApp.vala b/src/ThiefApp.vala index 94e0ca52..ce1dacfe 100644 --- a/src/ThiefApp.vala +++ b/src/ThiefApp.vala @@ -175,7 +175,6 @@ namespace ThiefMD { notes.set_reveal_child (false); desktop_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); - desktop_box.add (toolbar); desktop_box.add (editor_notes_pane); desktop_box.add (stats_bar); diff --git a/src/Widgets/Sheets.vala b/src/Widgets/Sheets.vala index 2fc26c19..d6474084 100644 --- a/src/Widgets/Sheets.vala +++ b/src/Widgets/Sheets.vala @@ -115,22 +115,64 @@ namespace ThiefMD.Widgets { * * Sheets View keeps track of *.md files in a provided directory */ - public class Sheets : Gtk.ScrolledWindow { + public class Sheets : Gtk.Box { public ThiefSheets metadata; private string _sheets_dir; private Gee.HashMap _sheets; + private Gtk.ScrolledWindow _scroller; private Gtk.Box _view; private PreventDelayedDrop _reorderable; private FileMonitor _monitor; + private NewSheet new_sheet_widget; + public Gtk.MenuButton new_sheet; Gtk.Label _empty; public Sheets (string path) { + orientation = Gtk.Orientation.VERTICAL; + var settings = AppSettings.get_default (); _sheets_dir = path; _view = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); + _scroller = new Gtk.ScrolledWindow (null, null); + + _scroller.set_policy (Gtk.PolicyType.EXTERNAL, Gtk.PolicyType.AUTOMATIC); + _scroller.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC); + _scroller.add (_view); + _scroller.vexpand = true; + _scroller.hexpand = true; + + string title = ""; + if (path != "") { + title = make_title (path.substring (path.last_index_of (Path.DIR_SEPARATOR_S) + 1)); + } + + var bar = new Hdy.HeaderBar (); + bar.set_title (""); + var bar_label = new Gtk.Label ("" + title + ""); + bar_label.use_markup = true; + bar.pack_start (bar_label); + bar.set_show_close_button (false); + + new_sheet = new Gtk.MenuButton (); + new_sheet_widget = new NewSheet (); + new_sheet.has_tooltip = true; + new_sheet.tooltip_text = (_("New Sheet")); + new_sheet.set_image (new Gtk.Image.from_icon_name ("document-new-symbolic", Gtk.IconSize.BUTTON)); + new_sheet.popover = new_sheet_widget; + new_sheet.clicked.connect(() => { + settings.menu_active = true; + new_sheet.popover.hide.connect (() => { + settings.menu_active = false; + }); + }); + + bar.pack_end (new_sheet); + + var header_context = bar.get_style_context (); + header_context.add_class ("thief-toolbar"); - set_policy (Gtk.PolicyType.EXTERNAL, Gtk.PolicyType.AUTOMATIC); - add (_view); + add (bar); + add (_scroller); debug ("Got %s\n", _sheets_dir); if (_sheets_dir == "" || !FileUtils.test(path, FileTest.IS_DIR)) { @@ -139,8 +181,8 @@ namespace ThiefMD.Widgets { load_sheets (); } - var header_context = this.get_style_context (); - header_context.add_class ("thief-sheets"); + var sheets_context = this.get_style_context (); + sheets_context.add_class ("thief-sheets"); _reorderable = new PreventDelayedDrop (); File current_directory = File.new_for_path (_sheets_dir); @@ -156,7 +198,6 @@ namespace ThiefMD.Widgets { } } width_request = settings.view_sheets_width; - set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC); } public void folder_changed (File file, File? other_file, FileMonitorEvent event_type) { From b11ac97481cfdbe356e4346a10dd6533791fb6c6 Mon Sep 17 00:00:00 2001 From: kmwallio Date: Fri, 24 Jun 2022 00:41:44 -0700 Subject: [PATCH 02/34] Experiment with colors per pane and per pane header bars --- src/Constants/ThiefProperties.vala | 19 ++++++++----- src/ThiefApp.vala | 34 ++++++++++++++++++++++- src/Widgets/HeaderBar.vala | 42 ----------------------------- src/Widgets/KeyBindings.vala | 2 +- src/Widgets/Library.vala | 3 ++- src/Widgets/MarkdownCheatSheet.vala | 2 +- src/Widgets/ProjectStatistics.vala | 2 +- src/Widgets/SearchWindow.vala | 2 +- src/Widgets/Sheets.vala | 9 ++++++- 9 files changed, 60 insertions(+), 55 deletions(-) diff --git a/src/Constants/ThiefProperties.vala b/src/Constants/ThiefProperties.vala index 4ec10db5..33b47631 100644 --- a/src/Constants/ThiefProperties.vala +++ b/src/Constants/ThiefProperties.vala @@ -287,17 +287,24 @@ The `markdown` editor worth stealing. *Focus* more on **writing**. background: darker(@colorPrimary); color: @textColorPrimary; } - - placessidebar, treeview { + + placessidebar, treeview, .thief-library-header { background: lighter(@colorPrimaryActive); color: @textColorGlobal; } - - treeview.view header button { - background: @colorPrimary; + + .thief-library-header button:active, + .thief-library-header button:hover, + .thief-library-header button:hover:active { + background: lighter(lighter(@colorPrimaryActive)); + color: @textColorGlobal; + } + + treeview.view header button, .thief-library-header button { + background: lighter(@colorPrimaryActive); color: @textColorGlobal; } - + placessidebar *:selected, treeview.view:selected { background: lighter(@colorPrimary); color: @textColorGlobal; diff --git a/src/ThiefApp.vala b/src/ThiefApp.vala index ce1dacfe..2f6e8c38 100644 --- a/src/ThiefApp.vala +++ b/src/ThiefApp.vala @@ -149,7 +149,39 @@ namespace ThiefMD { main_content.set_homogeneous (true, Gtk.Orientation.HORIZONTAL, false); main_content.set_orientation (Gtk.Orientation.HORIZONTAL); - library_view.add (library); + var library_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); + var library_header = new Hdy.HeaderBar (); + library_header.set_title (""); + library_header.pack_start (new Gtk.Label (_("Library"))); + + var add_library_button = new Gtk.Button (); + add_library_button.has_tooltip = true; + add_library_button.tooltip_text = (_("Add Folder to Library")); + add_library_button.set_image (new Gtk.Image.from_icon_name ("folder-new-symbolic", Gtk.IconSize.BUTTON)); + add_library_button.clicked.connect (() => { + settings.menu_active = true; + string new_lib = Dialogs.select_folder_dialog (); + if (FileUtils.test(new_lib, FileTest.IS_DIR)) { + if (settings.add_to_library (new_lib)) { + // Refresh + ThiefApp instance = ThiefApp.get_instance (); + instance.refresh_library (); + } + } + settings.menu_active = false; + }); + + library_header.pack_end (add_library_button); + + var library_header_context = library_header.get_style_context (); + library_header_context.add_class ("thief-library-header"); + + library_box.add (library_header); + library_box.add (library); + library.vexpand = true; + library.hexpand = true; + + library_view.add (library_box); library_view.width_request = settings.view_library_width; stats_bar = new StatisticsBar (); start_sheet = library.get_sheets (start_dir); diff --git a/src/Widgets/HeaderBar.vala b/src/Widgets/HeaderBar.vala index 176e07fd..aa25efcc 100644 --- a/src/Widgets/HeaderBar.vala +++ b/src/Widgets/HeaderBar.vala @@ -25,11 +25,8 @@ namespace ThiefMD.Widgets { private Hdy.HeaderBar the_bar; private ThiefApp _instance; private Gtk.Button change_view_button; - private Gtk.Button add_library_button; - private Gtk.MenuButton new_sheet; private Gtk.MenuButton menu_button; private Gtk.Button sidebar_button; - private NewSheet new_sheet_widget; private Gtk.Label spacer; public Headerbar (ThiefApp instance) { @@ -50,10 +47,6 @@ namespace ThiefMD.Widgets { } } - public void make_new_sheet () { - new_sheet_widget.popup (); - } - public void toggle_headerbar () { if (child_revealed) { hide_headerbar (); @@ -80,19 +73,6 @@ namespace ThiefMD.Widgets { private void build_ui () { var settings = AppSettings.get_default (); - new_sheet = new Gtk.MenuButton (); - new_sheet_widget = new NewSheet (); - new_sheet.has_tooltip = true; - new_sheet.tooltip_text = (_("New Sheet")); - new_sheet.set_image (new Gtk.Image.from_icon_name ("document-new-symbolic", Gtk.IconSize.BUTTON)); - new_sheet.popover = new_sheet_widget; - new_sheet.clicked.connect(() => { - settings.menu_active = true; - new_sheet.popover.hide.connect (() => { - settings.menu_active = false; - }); - }); - change_view_button = new Gtk.Button (); change_view_button.has_tooltip = true; change_view_button.tooltip_text = (_("Change View")); @@ -101,23 +81,6 @@ namespace ThiefMD.Widgets { UI.toggle_view(); }); - add_library_button = new Gtk.Button (); - add_library_button.has_tooltip = true; - add_library_button.tooltip_text = (_("Add Folder to Library")); - add_library_button.set_image (new Gtk.Image.from_icon_name ("folder-new-symbolic", Gtk.IconSize.BUTTON)); - add_library_button.clicked.connect (() => { - settings.menu_active = true; - string new_lib = Dialogs.select_folder_dialog (); - if (FileUtils.test(new_lib, FileTest.IS_DIR)) { - if (settings.add_to_library (new_lib)) { - // Refresh - ThiefApp instance = ThiefApp.get_instance (); - instance.refresh_library (); - } - } - settings.menu_active = false; - }); - // search_button = new Gtk.Button (); // search_button.has_tooltip = true; @@ -153,13 +116,8 @@ namespace ThiefMD.Widgets { return false; }); }); - spacer = new Gtk.Label(" "); the_bar.pack_start (change_view_button); - the_bar.pack_start (add_library_button); - // @TODO: Need to find a better way to do this - // the_bar.pack_start (spacer); - the_bar.pack_start (new_sheet); the_bar.pack_end (sidebar_button); the_bar.pack_end (menu_button); diff --git a/src/Widgets/KeyBindings.vala b/src/Widgets/KeyBindings.vala index 9ec61fae..f86c8c98 100644 --- a/src/Widgets/KeyBindings.vala +++ b/src/Widgets/KeyBindings.vala @@ -118,7 +118,7 @@ namespace ThiefMD.Widgets { if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && is_main) { if (match_keycode (Gdk.Key.n, keycode)) { if (window is ThiefApp) { - ((ThiefApp)window).toolbar.make_new_sheet (); + SheetManager.get_sheets ().make_new_sheet (); } } } diff --git a/src/Widgets/Library.vala b/src/Widgets/Library.vala index 26c0ba9f..78dc0607 100644 --- a/src/Widgets/Library.vala +++ b/src/Widgets/Library.vala @@ -70,12 +70,13 @@ namespace ThiefMD.Widgets { library_item_display.add_attribute (library_item_text, "text", 0); library_item_display.add_attribute (library_item_icon, "pixbuf", 2); // insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); - library_item_display.set_title (_("Library")); append_column (library_item_display); get_selection ().changed.connect (on_selection); folder_popup = new NewFolder (); _droppable = new PreventDelayedDrop (); + headers_visible = false; + // Drop Support enable_model_drag_dest (target_list, DragAction.MOVE); this.drag_motion.connect(this.on_drag_motion); diff --git a/src/Widgets/MarkdownCheatSheet.vala b/src/Widgets/MarkdownCheatSheet.vala index a8ac1ad8..96b22272 100644 --- a/src/Widgets/MarkdownCheatSheet.vala +++ b/src/Widgets/MarkdownCheatSheet.vala @@ -34,7 +34,7 @@ namespace ThiefMD.Widgets { headerbar.set_title ("Cheat Sheet"); var header_context = headerbar.get_style_context (); header_context.add_class (Gtk.STYLE_CLASS_FLAT); - header_context.add_class ("thief-toolbar"); + header_context.add_class ("thiefmd-toolbar"); var grid = new Gtk.Grid (); grid.orientation = Gtk.Orientation.VERTICAL; diff --git a/src/Widgets/ProjectStatistics.vala b/src/Widgets/ProjectStatistics.vala index d08f6e48..a39ebd77 100644 --- a/src/Widgets/ProjectStatistics.vala +++ b/src/Widgets/ProjectStatistics.vala @@ -40,7 +40,7 @@ namespace ThiefMD.Widgets { headerbar.set_title (get_base_library_path (monitor_path).replace (Path.DIR_SEPARATOR_S, " " + Path.DIR_SEPARATOR_S + " ")); var header_context = headerbar.get_style_context (); header_context.add_class (Gtk.STYLE_CLASS_FLAT); - header_context.add_class ("thief-toolbar"); + header_context.add_class ("thiefmd-toolbar"); word_label = new Gtk.Label (""); word_label.xalign = 0; diff --git a/src/Widgets/SearchWindow.vala b/src/Widgets/SearchWindow.vala index c8281b7e..5cc45541 100644 --- a/src/Widgets/SearchWindow.vala +++ b/src/Widgets/SearchWindow.vala @@ -422,7 +422,7 @@ namespace ThiefMD.Widgets { } var header_context = headerbar.get_style_context (); header_context.add_class (Gtk.STYLE_CLASS_FLAT); - header_context.add_class ("thief-toolbar"); + header_context.add_class ("thiefmd-toolbar"); Gtk.Box vbox = new Gtk.Box(Gtk.Orientation.VERTICAL, 0); diff --git a/src/Widgets/Sheets.vala b/src/Widgets/Sheets.vala index d6474084..23084ed4 100644 --- a/src/Widgets/Sheets.vala +++ b/src/Widgets/Sheets.vala @@ -150,8 +150,11 @@ namespace ThiefMD.Widgets { bar.set_title (""); var bar_label = new Gtk.Label ("" + title + ""); bar_label.use_markup = true; + bar_label.wrap_mode = Pango.WrapMode.WORD_CHAR; bar.pack_start (bar_label); bar.set_show_close_button (false); + bar.width_request = settings.view_sheets_width; + bar_label.width_request = settings.view_sheets_width; new_sheet = new Gtk.MenuButton (); new_sheet_widget = new NewSheet (); @@ -169,7 +172,7 @@ namespace ThiefMD.Widgets { bar.pack_end (new_sheet); var header_context = bar.get_style_context (); - header_context.add_class ("thief-toolbar"); + header_context.add_class ("thiefmd-toolbar"); add (bar); add (_scroller); @@ -200,6 +203,10 @@ namespace ThiefMD.Widgets { width_request = settings.view_sheets_width; } + public void make_new_sheet () { + new_sheet_widget.popup (); + } + public void folder_changed (File file, File? other_file, FileMonitorEvent event_type) { if (event_type == FileMonitorEvent.CREATED || event_type == FileMonitorEvent.MOVED || event_type == FileMonitorEvent.MOVED_IN || event_type == FileMonitorEvent.MOVED_OUT || From 2c13f09cac273d82afec5f248fe5498191d8cb48 Mon Sep 17 00:00:00 2001 From: kmwallio Date: Fri, 24 Jun 2022 16:14:54 -0700 Subject: [PATCH 03/34] Additional CSS tweaks to prevent the library font from matching the background --- data/styles/app-stylesheet.css | 12 ++++++++++-- src/Controllers/UI.vala | 10 +++++++++- src/Widgets/Sheets.vala | 1 + 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/data/styles/app-stylesheet.css b/data/styles/app-stylesheet.css index 26bf7a3c..4e5ba7c3 100644 --- a/data/styles/app-stylesheet.css +++ b/data/styles/app-stylesheet.css @@ -87,12 +87,20 @@ filechooser actionbar, filechooser, filechooser stack, placessidebar, window { color: @colorPrimary; } -placessidebar, treeview { +placessidebar, treeview, .thief-library-header { background: lighter(@windowColor); color: @colorPrimary; + border: 0; } -treeview.view header button { +.thief-library-header button:active, +.thief-library-header button:hover, +.thief-library-header button:hover:active { + background: lighter(@windowColor); + color: @textColorGlobal; +} + +treeview.view header button, .thief-library-header button { background: lighter(@windowColor); color: @colorPrimary; } diff --git a/src/Controllers/UI.vala b/src/Controllers/UI.vala index 672e0c5b..886d3a63 100644 --- a/src/Controllers/UI.vala +++ b/src/Controllers/UI.vala @@ -414,9 +414,17 @@ namespace ThiefMD.Controllers.UI { return; } + Ultheme.Color bg_active = Ultheme.Color.from_string (palette.global_active.background); + Ultheme.Color bg_lighter = bg_active.lighten ().lighten (); + warning ("Comparing %s to %s", palette.global.foreground, bg_lighter.to_string ()); + if (bg_lighter.to_string ().has_prefix (palette.global.foreground)) { + bg_active = bg_active.darken ().darken (); + } + warning ("Setting %s", bg_active.to_string ()); + string new_css = ThiefProperties.DYNAMIC_CSS.printf ( palette.global.background, - palette.global_active.background, + bg_active.to_string ().substring (0, 7), palette.headers.foreground, palette.global_active.foreground, palette.global.foreground diff --git a/src/Widgets/Sheets.vala b/src/Widgets/Sheets.vala index 23084ed4..83e81478 100644 --- a/src/Widgets/Sheets.vala +++ b/src/Widgets/Sheets.vala @@ -151,6 +151,7 @@ namespace ThiefMD.Widgets { var bar_label = new Gtk.Label ("" + title + ""); bar_label.use_markup = true; bar_label.wrap_mode = Pango.WrapMode.WORD_CHAR; + bar_label.xalign = 0; bar.pack_start (bar_label); bar.set_show_close_button (false); bar.width_request = settings.view_sheets_width; From b845dd812cc725ace5eb4251b9e0ce6260657d7d Mon Sep 17 00:00:00 2001 From: kmwallio Date: Fri, 24 Jun 2022 21:31:01 -0700 Subject: [PATCH 04/34] Remove warnings --- src/Controllers/UI.vala | 3 +-- src/Widgets/Sheets.vala | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Controllers/UI.vala b/src/Controllers/UI.vala index 886d3a63..981c92f7 100644 --- a/src/Controllers/UI.vala +++ b/src/Controllers/UI.vala @@ -416,11 +416,10 @@ namespace ThiefMD.Controllers.UI { Ultheme.Color bg_active = Ultheme.Color.from_string (palette.global_active.background); Ultheme.Color bg_lighter = bg_active.lighten ().lighten (); - warning ("Comparing %s to %s", palette.global.foreground, bg_lighter.to_string ()); + debug ("Comparing %s to %s", palette.global.foreground, bg_lighter.to_string ()); if (bg_lighter.to_string ().has_prefix (palette.global.foreground)) { bg_active = bg_active.darken ().darken (); } - warning ("Setting %s", bg_active.to_string ()); string new_css = ThiefProperties.DYNAMIC_CSS.printf ( palette.global.background, diff --git a/src/Widgets/Sheets.vala b/src/Widgets/Sheets.vala index 83e81478..921c279f 100644 --- a/src/Widgets/Sheets.vala +++ b/src/Widgets/Sheets.vala @@ -152,6 +152,7 @@ namespace ThiefMD.Widgets { bar_label.use_markup = true; bar_label.wrap_mode = Pango.WrapMode.WORD_CHAR; bar_label.xalign = 0; + bar_label.set_ellipsize (Pango.EllipsizeMode.END); bar.pack_start (bar_label); bar.set_show_close_button (false); bar.width_request = settings.view_sheets_width; From d375ef46274954f65a8e062d150818d2ccc006df Mon Sep 17 00:00:00 2001 From: Gregor Goldbach Date: Tue, 28 Jun 2022 17:19:33 +0200 Subject: [PATCH 05/34] add info about how to build and run the tests --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 61a49280..79e17bc0 100644 --- a/README.md +++ b/README.md @@ -156,6 +156,17 @@ $ sudo ninja install [Prebuilt packages](https://github.com/kmwallio/ThiefMD/releases) are available. +### Building and Running the Tests + +By default the code is built without tests. To compile the test suite the project has to be told to do so by setting the meson variable `build_tests`. + +After that they can be built and run by `ninja`: + +```bash +$ meson configure -Dbuild_tests=true build +$ cd build && ninja && ninja tests +``` + ## Acknowledgments * [Contributors who help make ThiefMD awesome](https://github.com/kmwallio/ThiefMD/graphs/contributors) From 27d043f7bd4339b361c915bd4a794a282b1d6e13 Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 29 Jun 2022 21:52:10 -0700 Subject: [PATCH 06/34] Update Language Specs, add support toml frontmatter --- data/language-specs | 2 +- src/Controllers/FileManager.vala | 30 ++++++++++++++++-------------- 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/data/language-specs b/data/language-specs index 6342e646..6169c4b5 160000 --- a/data/language-specs +++ b/data/language-specs @@ -1 +1 @@ -Subproject commit 6342e64617c59d38423db9cf8ba04c1fcd7bbd59 +Subproject commit 6169c4b516b636ed31d07145d1f26efd6d5321be diff --git a/src/Controllers/FileManager.vala b/src/Controllers/FileManager.vala index d55868ac..980230ca 100644 --- a/src/Controllers/FileManager.vala +++ b/src/Controllers/FileManager.vala @@ -415,16 +415,17 @@ namespace ThiefMD.Controllers.FileManager { Regex headers = null; try { - headers = new Regex ("^\\s*(.+?)\\s*:\\s+(.*)", RegexCompileFlags.MULTILINE | RegexCompileFlags.CASELESS, 0); + headers = new Regex ("^\\s*(.+?)\\s*[=:]\\s+(.*)", RegexCompileFlags.MULTILINE | RegexCompileFlags.CASELESS, 0); } catch (Error e) { warning ("Could not compile regex: %s", e.message); } - - if (buffer.has_prefix ("---" + ThiefProperties.THIEF_MARK_CONST)) { + + if (buffer.has_prefix ("---" + ThiefProperties.THIEF_MARK_CONST) || buffer.has_prefix ("+++" + ThiefProperties.THIEF_MARK_CONST)) { buffer = buffer.replace (ThiefProperties.THIEF_MARK_CONST, ""); } - if (buffer.length > 4 && buffer[0:4] == "---\n") { + string buffer_prefix = (buffer.length > 4) ? buffer[0:4] : ""; + if (buffer.length > 4 && (buffer_prefix == "---\n" || buffer_prefix == "+++\n")) { int i = 0; int last_newline = 3; int next_newline; @@ -433,7 +434,7 @@ namespace ThiefMD.Controllers.FileManager { while (valid_frontmatter) { next_newline = buffer.index_of_char('\n', last_newline + 1); - if (next_newline == -1 && !((buffer.length > last_newline + 1) && buffer.substring (last_newline + 1).has_prefix("---"))) { + if (next_newline == -1 && !((buffer.length > last_newline + 1) && (buffer.substring (last_newline + 1).has_prefix("---") || buffer.substring (last_newline + 1).has_prefix("+++")))) { valid_frontmatter = false; break; } @@ -446,7 +447,7 @@ namespace ThiefMD.Controllers.FileManager { line = line.replace (ThiefProperties.THIEF_MARK_CONST, ""); last_newline = next_newline; - if (line == "---") { + if (line == "---" || line == "+++") { break; } @@ -476,11 +477,11 @@ namespace ThiefMD.Controllers.FileManager { } } else { string quick_parse = line.chomp (); - int split = quick_parse.index_of (":"); + int split = quick_parse.index_of (":") != -1 ? quick_parse.index_of (":") : quick_parse.index_of ("="); if (split != -1) { string match = quick_parse.substring (0, split); string key = quick_parse.substring (0, split).chug ().chomp (); - string value = quick_parse.substring (quick_parse.index_of (":") + 1); + string value = quick_parse.substring (split + 1).chug ().chomp (); if (value.has_prefix ("\"") && value.has_suffix ("\"")) { value = value.substring (1, value.length - 2); } @@ -517,7 +518,7 @@ namespace ThiefMD.Controllers.FileManager { string buffer = markdown; Regex headers = null; try { - headers = new Regex ("^\\s*(.+?)\\s*:\\s+(.*)", RegexCompileFlags.MULTILINE | RegexCompileFlags.CASELESS, 0); + headers = new Regex ("^\\s*(.+?)\\s*[=:]\\s+(.*)", RegexCompileFlags.MULTILINE | RegexCompileFlags.CASELESS, 0); } catch (Error e) { warning ("Could not compile regex: %s", e.message); } @@ -529,11 +530,12 @@ namespace ThiefMD.Controllers.FileManager { var markout = new StringBuilder (); int mklines = 0; - if (buffer.has_prefix ("---" + ThiefProperties.THIEF_MARK_CONST)) { + if (buffer.has_prefix ("---" + ThiefProperties.THIEF_MARK_CONST) || buffer.has_prefix ("+++" + ThiefProperties.THIEF_MARK_CONST)) { buffer = buffer.replace (ThiefProperties.THIEF_MARK_CONST, ""); } - if (buffer.length > 4 && buffer[0:4] == "---\n") { + string buffer_prefix = (buffer.length > 4) ? buffer[0:4] : ""; + if (buffer.length > 4 && ((buffer_prefix == "---\n") || (buffer_prefix == "+++\n"))) { int i = 0; int last_newline = 3; int next_newline; @@ -555,7 +557,7 @@ namespace ThiefMD.Controllers.FileManager { line = line.replace (ThiefProperties.THIEF_MARK_CONST, ""); last_newline = next_newline; - if (line == "---") { + if (line == "---" || line == "+++") { break; } @@ -638,7 +640,7 @@ namespace ThiefMD.Controllers.FileManager { try { var file = File.new_for_path (file_path); - Regex headers = new Regex ("^\\s*(.+?)\\s*:\\s+(.+)", RegexCompileFlags.MULTILINE | RegexCompileFlags.CASELESS, 0); + Regex headers = new Regex ("^\\s*(.+?)\\s*[=:]\\s+(.+)", RegexCompileFlags.MULTILINE | RegexCompileFlags.CASELESS, 0); MatchInfo matches; if (file.query_exists ()) { @@ -652,7 +654,7 @@ namespace ThiefMD.Controllers.FileManager { while (((line = input.read_line (null)) != null) && (lines_read < lines || lines <= 0)) { if ((!non_empty_lines_only) || (line.chomp() != "")) { - if (line == "---") { + if (line == "---" || line == "+++") { if (in_yaml) { in_yaml = false; continue; From baa958a642ce5ada6e580c62d2b1fc522b60c25d Mon Sep 17 00:00:00 2001 From: kmwallio Date: Tue, 5 Jul 2022 20:45:53 -0700 Subject: [PATCH 07/34] Initial work on support for opening files from file manager in solo windows --- data/com.github.kmwallio.thiefmd.desktop | 3 +- meson.build | 2 + src/Application.vala | 76 +++++++++++- src/Controllers/FileManager.vala | 2 +- src/ThiefApp.vala | 36 ++++++ src/Widgets/HeaderBar.vala | 16 +-- src/Widgets/QuickPreferences.vala | 66 +++++++--- src/Widgets/Sheet.vala | 12 ++ src/Widgets/SoloEditor.vala | 150 +++++++++++++++++++++++ src/Widgets/Welcome.vala | 0 10 files changed, 333 insertions(+), 30 deletions(-) create mode 100644 src/Widgets/SoloEditor.vala create mode 100644 src/Widgets/Welcome.vala diff --git a/data/com.github.kmwallio.thiefmd.desktop b/data/com.github.kmwallio.thiefmd.desktop index b4eddad3..cf3063ff 100644 --- a/data/com.github.kmwallio.thiefmd.desktop +++ b/data/com.github.kmwallio.thiefmd.desktop @@ -3,8 +3,9 @@ Name=ThiefMD GenericName=Thief Markdown Editor Comment=The Markdown Editor worth Stealing Categories=Office -Exec=com.github.kmwallio.thiefmd +Exec=com.github.kmwallio.thiefmd %U Icon=com.github.kmwallio.thiefmd Terminal=false Type=Application Keywords=markdown;text;editor; +MimeType=text/x-markdown;text/markdown;text/fountain;text/spmd; diff --git a/meson.build b/meson.build index 6ba8e515..c8710fc8 100644 --- a/meson.build +++ b/meson.build @@ -131,6 +131,8 @@ executable( 'src/Widgets/ThemePreview.vala', 'src/Widgets/Thinking.vala', 'src/Widgets/MarkdownCheatSheet.vala', + 'src/Widgets/SoloEditor.vala', + 'src/Widgets/Welcome.vala', 'src/ultheme/src/HexColors.vala', 'src/ultheme/src/Ultheme.vala', 'src/writegood/src/language.vala', diff --git a/src/Application.vala b/src/Application.vala index abff9654..1c203ffd 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -23,19 +23,85 @@ using ThiefMD.Controllers; namespace ThiefMD { public class ThiefApplication : Gtk.Application { + private static Gtk.Window main_window = null; + private static List important_windows = new List (); public ThiefApplication () { Object ( application_id: "com.github.kmwallio.thiefmd", - flags: ApplicationFlags.FLAGS_NONE + flags: ApplicationFlags.HANDLES_OPEN ); } protected override void activate () { - var window = this.active_window; - if (window == null) { - window = new ThiefApp (this); + if (main_window == null) { + main_window = this.active_window; + main_window = new ThiefApp (this); + } + ThiefApp.show_main_instance (); + } + + public static void open_file (File file) { + foreach (var win in important_windows) { + if (win is SoloEditor) { + var w = (SoloEditor)win; + if (w.already_opened (file)) { + w.present (); + warning ("Already opened"); + return; + } + } + } + var solo_win = new SoloEditor (file); + important_windows.append (solo_win); + solo_win.present (); + } + + public override void open (File[] files, string hint) { + // Start library hidden + if (main_window == null) { + main_window = new ThiefApp (this); + ThiefApp.hide_main_instance (); + } + + foreach (var file in files) { + if (file.query_exists ()) { + open_file (file); + } + } + } + + public static bool close_window (Gtk.Window win) { + debug ("Open Files: %u", important_windows.length ()); + if (win is ThiefApp && important_windows.length () > 0) { + ThiefApp.hide_main_instance (); + debug ("Hide main window"); + return false; + } else if (win is ThiefApp && important_windows.length () == 0) { + debug ("Close main window"); + return true; + } + + important_windows.remove (win); + debug ("Closing solo window"); + if (important_windows.length () == 0 && ThiefApp.get_instance () != null && ThiefApp.main_instance_hidden ()) { + ThiefApp.get_instance ().close (); + } + return true; + } + + public static uint active_window_count () { + return important_windows.length (); + } + + public static void exit () { + debug ("Calling exit"); + foreach (var win in important_windows) { + win.close (); + } + + if (main_window != null) { + main_window.close (); } - window.present (); } public static int main (string[] args) { diff --git a/src/Controllers/FileManager.vala b/src/Controllers/FileManager.vala index 980230ca..b4044656 100644 --- a/src/Controllers/FileManager.vala +++ b/src/Controllers/FileManager.vala @@ -544,7 +544,7 @@ namespace ThiefMD.Controllers.FileManager { while (valid_frontmatter) { next_newline = buffer.index_of_char('\n', last_newline + 1); - if (next_newline == -1 && !((buffer.length > last_newline + 1) && buffer.substring (last_newline + 1).has_prefix("---"))) { + if (next_newline == -1 && !((buffer.length > last_newline + 1) && (buffer.substring (last_newline + 1).has_prefix("---") || buffer.substring (last_newline + 1).has_prefix("+++")))) { valid_frontmatter = false; break; } diff --git a/src/ThiefApp.vala b/src/ThiefApp.vala index 94e0ca52..31c8f6f1 100644 --- a/src/ThiefApp.vala +++ b/src/ThiefApp.vala @@ -24,6 +24,7 @@ using ThiefMD.Controllers; namespace ThiefMD { public class ThiefApp : Hdy.ApplicationWindow { private static ThiefApp _instance; + private static bool am_hidden = false; public Headerbar toolbar; public Library library; public Hdy.Leaflet main_content; @@ -58,6 +59,29 @@ namespace ThiefMD { return _instance; } + public static void hide_main_instance () { + if (_instance != null) { + am_hidden = true; + _instance.hide (); + } + } + + public static void show_main_instance () { + if (_instance != null) { + am_hidden = false; + _instance.show (); + _instance.present (); + } + } + + public static bool main_instance_hidden () { + if (_instance != null) { + return am_hidden; + } + + return false; + } + public int pane_position { get { var settings = AppSettings.get_default (); @@ -306,6 +330,18 @@ namespace ThiefMD { } }); + delete_event.connect (() => { + bool can_close = ThiefApplication.close_window (this); + debug ("Can close (%u): %s", ThiefApplication.active_window_count (), can_close ? "Yes" : "No"); + if (!can_close) { + am_hidden = true; + debug ("Hiding instead of closing"); + return hide_on_delete (); + } + ThiefApplication.exit (); + return false; + }); + destroy.connect (() => { SheetManager.save_active (); notes_widget.save_notes (); diff --git a/src/Widgets/HeaderBar.vala b/src/Widgets/HeaderBar.vala index 176e07fd..8ac820bd 100644 --- a/src/Widgets/HeaderBar.vala +++ b/src/Widgets/HeaderBar.vala @@ -195,14 +195,16 @@ namespace ThiefMD.Widgets { the_bar.set_subtitle (""); } - if (ThiefApp.get_instance ().main_content.folded) { - spacer.hide (); - } else { - spacer.show (); - } + if (ThiefApp.get_instance ().ready) { + if (ThiefApp.get_instance ().main_content.folded) { + spacer.hide (); + } else { + spacer.show (); + } - if (!settings.hide_toolbar) { - show_headerbar (); + if (!settings.hide_toolbar) { + show_headerbar (); + } } } } diff --git a/src/Widgets/QuickPreferences.vala b/src/Widgets/QuickPreferences.vala index 4a301669..f2145670 100644 --- a/src/Widgets/QuickPreferences.vala +++ b/src/Widgets/QuickPreferences.vala @@ -30,11 +30,11 @@ namespace ThiefMD.Widgets { public Gtk.ToggleButton _writegood_button; public Gtk.ToggleButton _grammar_button; public Gtk.ToggleButton _typewriter_button; - private ThiefApp _instance; + private Gtk.Window _instance; private bool am_mobile = false; private Gtk.Grid menu_grid; - public QuickPreferences (ThiefApp instance) { + public QuickPreferences (Gtk.Window instance) { _instance = instance; var settings = AppSettings.get_default (); @@ -96,8 +96,13 @@ namespace ThiefMD.Widgets { preview_button.has_tooltip = true; preview_button.tooltip_text = _("Launch Preview"); preview_button.clicked.connect (() => { - PreviewWindow pvw = PreviewWindow.get_instance (); - pvw.show (); + if (_instance is ThiefApp) { + PreviewWindow pvw = PreviewWindow.get_instance (); + pvw.show (); + } else { + var editor = (SoloEditor)_instance; + editor.toggle_preview (); + } }); var export_button = new Gtk.ModelButton (); @@ -105,8 +110,13 @@ namespace ThiefMD.Widgets { export_button.has_tooltip = true; export_button.tooltip_text = _("Open Export Window"); export_button.clicked.connect (() => { - PublisherPreviewWindow ppw = new PublisherPreviewWindow (SheetManager.get_markdown (), is_fountain (settings.last_file)); - ppw.show (); + if (_instance is ThiefApp) { + PublisherPreviewWindow ppw = new PublisherPreviewWindow (SheetManager.get_markdown (), is_fountain (settings.last_file)); + ppw.show (); + } else if (_instance is SoloEditor) { + var editor = (SoloEditor)_instance; + editor.export (); + } }); var search_button = new Gtk.ModelButton (); @@ -114,7 +124,11 @@ namespace ThiefMD.Widgets { search_button.has_tooltip = true; search_button.tooltip_text = _("Open Search Window"); search_button.clicked.connect (() => { - UI.show_search (); + if (_instance is ThiefApp) { + UI.show_search (); + } else if (_instance is SoloEditor) { + + } }); var preferences_button = new Gtk.ModelButton (); @@ -149,10 +163,12 @@ namespace ThiefMD.Widgets { menu_grid.add (_writegood_button); menu_grid.add (separator2); menu_grid.add (preview_button); - if (_instance.show_touch_friendly) { + if (_instance is ThiefApp && ((ThiefApp)_instance).show_touch_friendly) { menu_grid.add (export_button); menu_grid.add (search_button); am_mobile = true; + } else if (_instance is SoloEditor) { + menu_grid.add (export_button); } menu_grid.add (preferences_button); menu_grid.add (about_button); @@ -189,8 +205,13 @@ namespace ThiefMD.Widgets { export_button.has_tooltip = true; export_button.tooltip_text = _("Open Export Window"); export_button.clicked.connect (() => { - PublisherPreviewWindow ppw = new PublisherPreviewWindow (SheetManager.get_markdown (), is_fountain (settings.last_file)); - ppw.show (); + if (_instance is ThiefApp) { + PublisherPreviewWindow ppw = new PublisherPreviewWindow (SheetManager.get_markdown (), is_fountain (settings.last_file)); + ppw.show (); + } else if (_instance is SoloEditor) { + var editor = (SoloEditor)_instance; + editor.export (); + } }); var search_button = new Gtk.ModelButton (); @@ -259,8 +280,13 @@ namespace ThiefMD.Widgets { preview_button.has_tooltip = true; preview_button.tooltip_text = _("Launch Preview"); preview_button.clicked.connect (() => { - PreviewWindow pvw = PreviewWindow.get_instance (); - pvw.show_all (); + if (_instance is ThiefApp) { + PreviewWindow pvw = PreviewWindow.get_instance (); + pvw.show_all (); + } else if (_instance is SoloEditor) { + var editor = (SoloEditor)_instance; + editor.toggle_preview (); + } }); var export_button = new Gtk.ModelButton (); @@ -268,8 +294,13 @@ namespace ThiefMD.Widgets { export_button.has_tooltip = true; export_button.tooltip_text = _("Open Export Window"); export_button.clicked.connect (() => { - PublisherPreviewWindow ppw = new PublisherPreviewWindow (SheetManager.get_markdown (), is_fountain (settings.last_file)); - ppw.show (); + if (_instance is ThiefApp) { + PublisherPreviewWindow ppw = new PublisherPreviewWindow (SheetManager.get_markdown (), is_fountain (settings.last_file)); + ppw.show (); + } else if (_instance is SoloEditor) { + var editor = (SoloEditor)_instance; + editor.export (); + } }); var search_button = new Gtk.ModelButton (); @@ -312,6 +343,9 @@ namespace ThiefMD.Widgets { menu_grid.add (_writegood_button); menu_grid.add (separator2); menu_grid.add (preview_button); + if (_instance is SoloEditor) { + menu_grid.add (export_button); + } menu_grid.add (preferences_button); menu_grid.add (about_button); menu_grid.show_all (); @@ -326,9 +360,9 @@ namespace ThiefMD.Widgets { _grammar_button.set_active (settings.grammar); _writegood_button.set_active (settings.writegood); - if (_instance.show_touch_friendly && !am_mobile) { + if (_instance is ThiefApp && ((ThiefApp)_instance).show_touch_friendly && !am_mobile) { build_mobilemenu (); - } else if (!_instance.show_touch_friendly && am_mobile) { + } else if (_instance is ThiefApp && !((ThiefApp)_instance).show_touch_friendly && am_mobile) { build_desktopmenu (); } } diff --git a/src/Widgets/Sheet.vala b/src/Widgets/Sheet.vala index 1e873c2d..e527a19b 100644 --- a/src/Widgets/Sheet.vala +++ b/src/Widgets/Sheet.vala @@ -256,6 +256,18 @@ namespace ThiefMD.Widgets { sort_sheets.submenu = sort_menu; menu.add (sort_sheets); + /* + menu.add (new Gtk.SeparatorMenuItem ()); + + Gtk.MenuItem menu_new_window = new Gtk.MenuItem.with_label (_("Open in Separate Window")); + menu.add (menu_new_window); + menu_new_window.activate.connect (() => { + File target = File.new_for_path (_sheet_path); + ThiefApplication.open_file (target); + }); + menu.add (menu_new_window); + */ + menu.add (new Gtk.SeparatorMenuItem ()); Gtk.MenuItem menu_preview_sheet = new Gtk.MenuItem.with_label (_("Preview")); diff --git a/src/Widgets/SoloEditor.vala b/src/Widgets/SoloEditor.vala new file mode 100644 index 00000000..e88bbe49 --- /dev/null +++ b/src/Widgets/SoloEditor.vala @@ -0,0 +1,150 @@ +/* + * Copyright (C) 2020 kmwallio + * + * Modified August 29, 2020 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +using ThiefMD; +using ThiefMD.Widgets; +using ThiefMD.Controllers; + +namespace ThiefMD { + public class SoloEditor : Hdy.Window { + private Editor editor; + private Gtk.Box vbox; + private Preview preview; + private Gtk.ScrolledWindow scroller; + private Hdy.HeaderBar headerbar; + private File file; + private TimedMutex preview_mutex; + public Gtk.Paned preview_display; + + public SoloEditor (File fp) { + file = fp; + editor = new Editor (file.get_path ()); + new KeyBindings (this, false); + build_ui (); + } + + private void build_ui () { + var settings = AppSettings.get_default (); + headerbar = new Hdy.HeaderBar (); + + vbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); + scroller = new Gtk.ScrolledWindow (null, null); + scroller.set_policy (Gtk.PolicyType.EXTERNAL, Gtk.PolicyType.AUTOMATIC); + + string title = ""; + if (!settings.brandless) { + title = "ThiefMD: "; + } + title += file.get_basename (); + headerbar.set_title (title); + var header_context = headerbar.get_style_context (); + header_context.add_class (Gtk.STYLE_CLASS_FLAT); + header_context.add_class ("thief-toolbar"); + header_context.add_class("thiefmd-toolbar"); + headerbar.show_close_button = true; + + populate_header (); + + preview_display = new Gtk.Paned (Gtk.Orientation.HORIZONTAL); + preview_display.add2 (preview); + scroller.vexpand = true; + scroller.hexpand = true; + editor.vexpand = true; + editor.hexpand = true; + vbox.add (headerbar); + scroller.add (editor); + vbox.add (scroller); + vbox.show_all (); + add (vbox); + set_default_size (settings.window_width, settings.window_height); + + editor.buffer.changed.connect (update_preview); + + delete_event.connect (this.on_delete_event); + } + + private void populate_header () { + var menu_button = new Gtk.MenuButton (); + menu_button.has_tooltip = true; + menu_button.tooltip_text = (_("Settings")); + menu_button.set_image (new Gtk.Image.from_icon_name ("open-menu-symbolic", Gtk.IconSize.BUTTON)); + menu_button.popover = new QuickPreferences (this); + headerbar.pack_end (menu_button); + } + + private void update_preview () { + if (preview != null && preview_mutex.can_do_action ()) { + editor.update_preview (); + preview.update_html_view (true, editor.preview_markdown, has_fountain ()); + } + } + + public void export () { + PublisherPreviewWindow ppw = new PublisherPreviewWindow (editor.get_buffer_text (), has_fountain ()); + ppw.show (); + } + + public void toggle_preview () { + int w = 0, h = 0; + this.get_size (out w, out h); + if (preview_display.get_child1 () == null) { + // Remove default display + vbox.remove (scroller); + + // Populate the preview display + preview_display.add1 (scroller); + preview = new Preview (); + preview_mutex = new TimedMutex (); + preview.update_html_view (true, editor.get_buffer_text (), has_fountain ()); + preview_display.add2 (preview); + + vbox.add (preview_display); + preview_display.show_all (); + preview_display.set_position (w / 2); + vbox.show_all (); + preview.show_all (); + update_preview (); + } else { + vbox.remove (preview_display); + preview_display.remove (scroller); + preview_display.remove (preview); + preview = null; + vbox.add (scroller); + vbox.show_all (); + } + } + + public bool already_opened (File f) { + if (file != null) { + return (f.get_path () == file.get_path ()); + } + return true; + } + + public bool on_delete_event () { + editor.save (); + ThiefApplication.close_window (this); + return false; + } + + public bool has_fountain () { + return is_fountain (file.get_basename ()); + } + } +} diff --git a/src/Widgets/Welcome.vala b/src/Widgets/Welcome.vala new file mode 100644 index 00000000..e69de29b From ad3b9eeb6cbcd62670d5c4d55983c80a29998f63 Mon Sep 17 00:00:00 2001 From: kmwallio Date: Tue, 5 Jul 2022 21:15:58 -0700 Subject: [PATCH 08/34] Start work on release notes --- data/com.github.kmwallio.thiefmd.appdata.xml | 10 ++++++++++ meson.build | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/data/com.github.kmwallio.thiefmd.appdata.xml b/data/com.github.kmwallio.thiefmd.appdata.xml index de0f0f54..edd6b219 100644 --- a/data/com.github.kmwallio.thiefmd.appdata.xml +++ b/data/com.github.kmwallio.thiefmd.appdata.xml @@ -72,6 +72,16 @@ + + +

Like your files to fly solo? Open files from your file manager. Even abandon our library concept if you want to.

+
    +
  • Add support for single file opening
  • +
  • Fix some null references
  • +
+
+ https://github.com/kmwallio/ThiefMD/releases/tag/v0.2.7 +

Publish to Hashnode, Medium, or Forem! Share your story in more places faster than ever.

diff --git a/meson.build b/meson.build index c8710fc8..34c932c2 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ # Name our project project('com.github.kmwallio.thiefmd', ['vala', 'c'], - version: '0.2.6' + version: '0.2.7' ) # Application ID From 3a1e3c8c97f23a1fd65bc5a202156a38d9916a2c Mon Sep 17 00:00:00 2001 From: kmwallio Date: Tue, 5 Jul 2022 21:23:46 -0700 Subject: [PATCH 09/34] Update year? --- src/Constants/ThiefProperties.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Constants/ThiefProperties.vala b/src/Constants/ThiefProperties.vala index 24c5bf0b..ea1980cb 100644 --- a/src/Constants/ThiefProperties.vala +++ b/src/Constants/ThiefProperties.vala @@ -21,7 +21,7 @@ namespace ThiefMD { public class ThiefProperties : Object { public const string NAME = "ThiefMD"; public const string URL = "https://thiefmd.com"; - public const string COPYRIGHT = "Copyright © 2020 kmwallio"; + public const string COPYRIGHT = "Copyright © 2020-2022 kmwallio"; public const string TAGLINE = _("The Markdown editor worth stealing"); public const string THIEF_MARK_CONST = "THIEFMDa63471e6ec1b4f35b7ca635f3ca39a85"; public const string THIEF_MARK = ""; From 948df95c81872f4d1df2c61694314b6fa4592961 Mon Sep 17 00:00:00 2001 From: kmwallio Date: Tue, 5 Jul 2022 22:08:36 -0700 Subject: [PATCH 10/34] Fix keybindings and margins for solo editor --- src/Application.vala | 13 ++++++ src/Widgets/Editor.vala | 43 ++++++++++++------ src/Widgets/KeyBindings.vala | 88 ++++++++++++++++++++++++------------ src/Widgets/SoloEditor.vala | 12 ++++- 4 files changed, 113 insertions(+), 43 deletions(-) diff --git a/src/Application.vala b/src/Application.vala index 1c203ffd..d359699f 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -56,6 +56,19 @@ namespace ThiefMD { solo_win.present (); } + public static SoloEditor? get_solo (File file) { + foreach (var win in important_windows) { + if (win is SoloEditor) { + var w = (SoloEditor)win; + if (w.already_opened (file)) { + return w; + } + } + } + + return null; + } + public override void open (File[] files, string hint) { // Start library hidden if (main_window == null) { diff --git a/src/Widgets/Editor.vala b/src/Widgets/Editor.vala index ee931644..bc5fa35c 100644 --- a/src/Widgets/Editor.vala +++ b/src/Widgets/Editor.vala @@ -915,17 +915,27 @@ namespace ThiefMD.Widgets { } int w, h; - ThiefApp.get_instance ().get_size (out w, out h); + SoloEditor se = ThiefApplication.get_solo (file); + if (se == null) { + ThiefApp.get_instance ().get_size (out w, out h); - int note_w = 0; - if (ThiefApp.get_instance ().notes != null) { - note_w = (ThiefApp.get_instance ().notes.child_revealed) ? Notes.get_notes_width () : 0; - } - w = w - ThiefApp.get_instance ().pane_position - note_w; - last_height = h; + int note_w = 0; + if (ThiefApp.get_instance ().notes != null) { + note_w = (ThiefApp.get_instance ().notes.child_revealed) ? Notes.get_notes_width () : 0; + } + w = w - ThiefApp.get_instance ().pane_position - note_w; + last_height = h; - if (w == last_width) { - return; + if (w == last_width) { + return; + } + } else { + se.get_editor_size (out w, out h); + last_height = h; + + if (w == last_width) { + return; + } } move_margins (); @@ -940,13 +950,18 @@ namespace ThiefMD.Widgets { } int w, h, m, p; - ThiefApp.get_instance ().get_size (out w, out h); + SoloEditor se = ThiefApplication.get_solo (file); + if (se == null) { + ThiefApp.get_instance ().get_size (out w, out h); - int note_w = 0; - if (ThiefApp.get_instance ().notes != null) { - note_w = (ThiefApp.get_instance ().notes.child_revealed) ? Notes.get_notes_width () : 0; + int note_w = 0; + if (ThiefApp.get_instance ().notes != null) { + note_w = (ThiefApp.get_instance ().notes.child_revealed) ? Notes.get_notes_width () : 0; + } + w = w - ThiefApp.get_instance ().pane_position - note_w; + } else { + se.get_editor_size (out w, out h); } - w = w - ThiefApp.get_instance ().pane_position - note_w; last_height = h; last_width = w; diff --git a/src/Widgets/KeyBindings.vala b/src/Widgets/KeyBindings.vala index 9ec61fae..df6f37cd 100644 --- a/src/Widgets/KeyBindings.vala +++ b/src/Widgets/KeyBindings.vala @@ -45,7 +45,7 @@ namespace ThiefMD.Widgets { } // Experimental Mode - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) != 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) != 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.m, keycode)) { settings.experimental = !settings.experimental; } @@ -86,15 +86,19 @@ namespace ThiefMD.Widgets { } // Preview - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) != 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) != 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.p, keycode)) { - PreviewWindow pvw = PreviewWindow.get_instance (); - pvw.show_all (); + if (window is ThiefApp) { + PreviewWindow pvw = PreviewWindow.get_instance (); + pvw.show_all (); + } else { + ((SoloEditor)window).toggle_preview (); + } } } // Focus - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) != 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) != 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.r, keycode)) { settings.focus_mode = !settings.focus_mode; } @@ -108,7 +112,7 @@ namespace ThiefMD.Widgets { } // Write-Good Suggestions - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) != 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) != 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.w, keycode)) { settings.writegood = !settings.writegood; } @@ -124,39 +128,55 @@ namespace ThiefMD.Widgets { } // Bold - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.b, keycode)) { - SheetManager.bold (); + if (window is ThiefApp) { + SheetManager.bold (); + } else { + ((SoloEditor)window).editor.bold (); + } return true; } } // Italic - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.i, keycode)) { - SheetManager.italic (); + if (window is ThiefApp) { + SheetManager.italic (); + } else { + ((SoloEditor)window).editor.italic (); + } return true; } } // Strikethrough - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.d, keycode)) { - SheetManager.strikethrough (); + if (window is ThiefApp) { + SheetManager.strikethrough (); + } else { + ((SoloEditor)window).editor.strikethrough (); + } return true; } } // Link - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.k, keycode)) { - SheetManager.link (); + if (window is ThiefApp) { + SheetManager.link (); + } else { + ((SoloEditor)window).editor.link (); + } return true; } } // Shrink font - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.minus, keycode)) { int next_font_size = settings.font_size - 2; if (next_font_size >= 6) { @@ -167,7 +187,7 @@ namespace ThiefMD.Widgets { } // Enlarge font - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.plus, keycode)) { int next_font_size = settings.font_size + 2; if (next_font_size <= 512) { @@ -181,11 +201,14 @@ namespace ThiefMD.Widgets { if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0) { if (match_keycode (Gdk.Key.s, keycode)) { SheetManager.save_active (); + if (window is SoloEditor) { + ((SoloEditor)window).editor.save (); + } } } // Toggle statistics bar - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) != 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) != 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.s, keycode)) { if (window is ThiefApp) { ((ThiefApp)window).stats_bar.toggle_statistics (); @@ -194,14 +217,15 @@ namespace ThiefMD.Widgets { } // Toggle Dark/Light theme - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) != 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) != 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.l, keycode)) { - if (window is ThiefApp) { - if (settings.theme_id != "thiefmd") { - settings.dark_mode = !settings.dark_mode; - settings.theme_id = settings.theme_id.substring (0, settings.theme_id.last_index_of_char ('-')) + ((settings.dark_mode) ? "-dark" : "-light"); - UI.load_css_scheme (); - SheetManager.refresh_scheme (); + if (settings.theme_id != "thiefmd") { + settings.dark_mode = !settings.dark_mode; + settings.theme_id = settings.theme_id.substring (0, settings.theme_id.last_index_of_char ('-')) + ((settings.dark_mode) ? "-dark" : "-light"); + UI.load_css_scheme (); + SheetManager.refresh_scheme (); + if (window is SoloEditor) { + ((SoloEditor)window).editor.set_scheme (settings.theme_id); } } } @@ -216,17 +240,25 @@ namespace ThiefMD.Widgets { } // Undo - if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK) != 0 && (e.state & Gdk.ModifierType.SHIFT_MASK) == 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.z, keycode)) { - SheetManager.undo (); + if (window is ThiefApp) { + SheetManager.undo (); + } else { + ((SoloEditor)window).editor.undo (); + } return true; } } // Redo - if ((e.state & Gdk.ModifierType.CONTROL_MASK & Gdk.ModifierType.SHIFT_MASK) != 0 && is_main) { + if ((e.state & Gdk.ModifierType.CONTROL_MASK & Gdk.ModifierType.SHIFT_MASK) != 0 && (window is ThiefApp || window is SoloEditor)) { if (match_keycode (Gdk.Key.z, keycode)) { - SheetManager.redo (); + if (window is ThiefApp) { + SheetManager.redo (); + } else { + ((SoloEditor)window).editor.redo (); + } return true; } } diff --git a/src/Widgets/SoloEditor.vala b/src/Widgets/SoloEditor.vala index e88bbe49..5e2ac574 100644 --- a/src/Widgets/SoloEditor.vala +++ b/src/Widgets/SoloEditor.vala @@ -23,7 +23,7 @@ using ThiefMD.Controllers; namespace ThiefMD { public class SoloEditor : Hdy.Window { - private Editor editor; + public Editor editor; private Gtk.Box vbox; private Preview preview; private Gtk.ScrolledWindow scroller; @@ -77,6 +77,9 @@ namespace ThiefMD { editor.buffer.changed.connect (update_preview); delete_event.connect (this.on_delete_event); + size_allocate.connect (() => { + editor.dynamic_margins (); + }); } private void populate_header () { @@ -130,6 +133,13 @@ namespace ThiefMD { } } + public void get_editor_size (out int w, out int h) { + get_size (out w, out h); + if (preview_display.get_child1 () != null) { + w = preview_display.get_position (); + } + } + public bool already_opened (File f) { if (file != null) { return (f.get_path () == file.get_path ()); From 247da37c94c3ec6be4c79843cf57a4df6f113acb Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 01:16:24 -0700 Subject: [PATCH 11/34] Fix notes and side panes widths --- src/Controllers/SheetManager.vala | 2 -- src/ThiefApp.vala | 26 +++++++++++++++++--------- src/Widgets/Sheets.vala | 26 ++++++++++++++++++++++++-- 3 files changed, 41 insertions(+), 13 deletions(-) diff --git a/src/Controllers/SheetManager.vala b/src/Controllers/SheetManager.vala index 7a2ce211..cc7e6614 100644 --- a/src/Controllers/SheetManager.vala +++ b/src/Controllers/SheetManager.vala @@ -63,8 +63,6 @@ namespace ThiefMD.Controllers.SheetManager { if (_box_view == null) { _box_view = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); - _box_view.add (ThiefApp.get_instance ().toolbar); - _box_view.add (ThiefApp.get_instance ().search_bar); _bar = new Gtk.InfoBar (); _bar.revealed = false; diff --git a/src/ThiefApp.vala b/src/ThiefApp.vala index 340afd94..9f61279a 100644 --- a/src/ThiefApp.vala +++ b/src/ThiefApp.vala @@ -36,7 +36,9 @@ namespace ThiefMD { public Gee.ConcurrentList connections; public bool ready = false; public Gtk.Revealer notes; - public Gtk.Box editor_notes_pane; + public Gtk.Box main_window_horizon_box; + public Gtk.Box editor_widgets; + public Gtk.Box editor_notes_widget; public Notes notes_widget; public bool show_touch_friendly = true; public SearchWidget search_widget; @@ -164,7 +166,7 @@ namespace ThiefMD { library_pane.set_orientation (Gtk.Orientation.HORIZONTAL); library_view = new Gtk.ScrolledWindow (null, null); library_view.set_policy(Gtk.PolicyType.EXTERNAL, Gtk.PolicyType.AUTOMATIC); - editor_notes_pane = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); + main_window_horizon_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); notes = new Gtk.Revealer (); notes.set_transition_type (Gtk.RevealerTransitionType.SLIDE_LEFT); notes.set_reveal_child (false); @@ -201,15 +203,18 @@ namespace ThiefMD { library_header_context.add_class ("thief-library-header"); library_box.add (library_header); - library_box.add (library); + library_box.add (library_view); library.vexpand = true; library.hexpand = true; - library_view.add (library_box); + editor_widgets = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); + editor_notes_widget = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); + + library_view.add (library); library_view.width_request = settings.view_library_width; stats_bar = new StatisticsBar (); start_sheet = library.get_sheets (start_dir); - library_pane.add (library_view); + library_pane.add (library_box); library_view.show_all (); start_sheet.width_request = settings.view_sheets_width; library_pane.add (start_sheet); @@ -224,14 +229,17 @@ namespace ThiefMD { main_content.add (library_pane); library_pane.width_request = settings.view_library_width + settings.view_sheets_width; - main_content.add (SheetManager.get_view ()); - editor_notes_pane.add (main_content); - editor_notes_pane.add (notes); + editor_widgets.add (toolbar); + editor_notes_widget.add (SheetManager.get_view ()); + editor_notes_widget.add (notes); + editor_widgets.add (editor_notes_widget); + main_content.add (editor_widgets); + main_window_horizon_box.add (main_content); notes.add (notes_widget); notes.set_reveal_child (false); desktop_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); - desktop_box.add (editor_notes_pane); + desktop_box.add (main_window_horizon_box); desktop_box.add (stats_bar); hide_titlebar_when_maximized = true; diff --git a/src/Widgets/Sheets.vala b/src/Widgets/Sheets.vala index 921c279f..07e2cbee 100644 --- a/src/Widgets/Sheets.vala +++ b/src/Widgets/Sheets.vala @@ -110,6 +110,20 @@ namespace ThiefMD.Widgets { } } + private int get_string_px_width (Gtk.Label lbl, string str) { + int f_w = 14; + var font_context = lbl.get_pango_context (); + var font_desc = font_context.get_font_description (); + var font_layout = new Pango.Layout (font_context); + font_layout.set_font_description (font_desc); + font_layout.set_text (str, str.length); + Pango.Rectangle ink, logical; + font_layout.get_pixel_extents (out ink, out logical); + font_layout.dispose (); + warning ("# Ink: %d, Logical: %d", ink.width, logical.width); + return int.max (ink.width, logical.width); + } + /** * Sheets View * @@ -150,13 +164,19 @@ namespace ThiefMD.Widgets { bar.set_title (""); var bar_label = new Gtk.Label ("" + title + ""); bar_label.use_markup = true; - bar_label.wrap_mode = Pango.WrapMode.WORD_CHAR; + while (title.length > 12 && get_string_px_width(bar_label, title + "...") > 180) { + title = title.substring (0, title.length - 2); + warning (title); + bar_label.set_markup ("" + title + "..."); + } bar_label.xalign = 0; bar_label.set_ellipsize (Pango.EllipsizeMode.END); + int w1, w2; + bar_label.get_layout_offsets (out w1, out w2); + warning ("Label width: %d, %d", w1, w2); bar.pack_start (bar_label); bar.set_show_close_button (false); bar.width_request = settings.view_sheets_width; - bar_label.width_request = settings.view_sheets_width; new_sheet = new Gtk.MenuButton (); new_sheet_widget = new NewSheet (); @@ -173,6 +193,8 @@ namespace ThiefMD.Widgets { bar.pack_end (new_sheet); + bar_label.width_request = settings.view_sheets_width - 20; + var header_context = bar.get_style_context (); header_context.add_class ("thiefmd-toolbar"); From 121cc697a35dde06d891843d45f67008002c27b8 Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 01:29:12 -0700 Subject: [PATCH 12/34] Fix critical warnings from UI changes --- src/Controllers/UI.vala | 5 ++++- src/Widgets/HeaderBar.vala | 6 ------ src/Widgets/Sheets.vala | 5 ----- 3 files changed, 4 insertions(+), 12 deletions(-) diff --git a/src/Controllers/UI.vala b/src/Controllers/UI.vala index 981c92f7..35f0c058 100644 --- a/src/Controllers/UI.vala +++ b/src/Controllers/UI.vala @@ -526,7 +526,7 @@ namespace ThiefMD.Controllers.UI { var settings = AppSettings.get_default (); ThiefApp instance = ThiefApp.get_instance (); if (instance.main_content != null) { - instance.main_content.set_visible_child (SheetManager.get_view ()); + instance.main_content.set_visible_child (instance.editor_widgets); if (instance.main_content.folded) { settings.view_state = 2; } @@ -597,6 +597,9 @@ namespace ThiefMD.Controllers.UI { _show_filename = settings.show_filename; } + if (!ThiefApp.get_instance ().ready) { + return; + } ThiefApp.get_instance ().hide_search (); if (settings.view_state == 0) { show_sheets_and_library (); diff --git a/src/Widgets/HeaderBar.vala b/src/Widgets/HeaderBar.vala index 3f1a8cc2..1ad6af29 100644 --- a/src/Widgets/HeaderBar.vala +++ b/src/Widgets/HeaderBar.vala @@ -154,12 +154,6 @@ namespace ThiefMD.Widgets { } if (ThiefApp.get_instance ().ready) { - if (ThiefApp.get_instance ().main_content.folded) { - spacer.hide (); - } else { - spacer.show (); - } - if (!settings.hide_toolbar) { show_headerbar (); } diff --git a/src/Widgets/Sheets.vala b/src/Widgets/Sheets.vala index 07e2cbee..8ff66c4c 100644 --- a/src/Widgets/Sheets.vala +++ b/src/Widgets/Sheets.vala @@ -120,7 +120,6 @@ namespace ThiefMD.Widgets { Pango.Rectangle ink, logical; font_layout.get_pixel_extents (out ink, out logical); font_layout.dispose (); - warning ("# Ink: %d, Logical: %d", ink.width, logical.width); return int.max (ink.width, logical.width); } @@ -166,14 +165,10 @@ namespace ThiefMD.Widgets { bar_label.use_markup = true; while (title.length > 12 && get_string_px_width(bar_label, title + "...") > 180) { title = title.substring (0, title.length - 2); - warning (title); bar_label.set_markup ("" + title + "..."); } bar_label.xalign = 0; bar_label.set_ellipsize (Pango.EllipsizeMode.END); - int w1, w2; - bar_label.get_layout_offsets (out w1, out w2); - warning ("Label width: %d, %d", w1, w2); bar.pack_start (bar_label); bar.set_show_close_button (false); bar.width_request = settings.view_sheets_width; From ed366ad69dc99f06175a01266c382687a01e8dab Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 01:32:08 -0700 Subject: [PATCH 13/34] Fix null reference in Solo Editor when preview not created yet --- DEB-Packaging.md | 4 ++++ src/Widgets/SoloEditor.vala | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/DEB-Packaging.md b/DEB-Packaging.md index d5d772ca..a4f93ebf 100644 --- a/DEB-Packaging.md +++ b/DEB-Packaging.md @@ -33,3 +33,7 @@ Packages will be in parent directory. ## Push Tag `git push origin v0.0.0-label` + +## Running Under Debugger + +`G_DEBUG=fatal-criticals gdb --args ./com.github.kmwallio.thiefmd` diff --git a/src/Widgets/SoloEditor.vala b/src/Widgets/SoloEditor.vala index 5e2ac574..0cbcb804 100644 --- a/src/Widgets/SoloEditor.vala +++ b/src/Widgets/SoloEditor.vala @@ -62,7 +62,6 @@ namespace ThiefMD { populate_header (); preview_display = new Gtk.Paned (Gtk.Orientation.HORIZONTAL); - preview_display.add2 (preview); scroller.vexpand = true; scroller.hexpand = true; editor.vexpand = true; From c1fa8f6a0f195b01b625faa3d9c5987758037155 Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 02:04:29 -0700 Subject: [PATCH 14/34] Change active sheet appearance to avoid questionably visible off by one pixel --- data/styles/app-stylesheet.css | 4 ++++ src/Constants/ThiefProperties.vala | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/data/styles/app-stylesheet.css b/data/styles/app-stylesheet.css index 4e5ba7c3..b56c2f62 100644 --- a/data/styles/app-stylesheet.css +++ b/data/styles/app-stylesheet.css @@ -80,6 +80,10 @@ actionbar, .thief-search-results *:hover:active { background: @colorPrimaryActive; color: @textColorActive; + border-bottom: 0px solid @textColorPrimary; + border-top: 0px solid @textColorPrimary; + border-left: 5px solid @selectionColor; + border-right: 0px; } filechooser actionbar, filechooser, filechooser stack, placessidebar, window { diff --git a/src/Constants/ThiefProperties.vala b/src/Constants/ThiefProperties.vala index eeea43d7..fa0c6fb2 100644 --- a/src/Constants/ThiefProperties.vala +++ b/src/Constants/ThiefProperties.vala @@ -273,6 +273,10 @@ The `markdown` editor worth stealing. *Focus* more on **writing**. .thief-search-results *:hover:active { background: lighter(@colorPrimary); color: @textColorPrimary; + border-bottom: 0px solid @textColorPrimary; + border-top: 0px solid @textColorPrimary; + border-left: 5px solid @textColorPrimary; + border-right: 0px; } .thief-search-input:focus { From 6c1d338974f9b4b3bbe7068bec1786bb382e4a33 Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 02:05:01 -0700 Subject: [PATCH 15/34] Use system sidebar icon instead of page setup for changing sidebar view --- src/Widgets/HeaderBar.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Widgets/HeaderBar.vala b/src/Widgets/HeaderBar.vala index 1ad6af29..a69bf6e6 100644 --- a/src/Widgets/HeaderBar.vala +++ b/src/Widgets/HeaderBar.vala @@ -76,7 +76,7 @@ namespace ThiefMD.Widgets { change_view_button = new Gtk.Button (); change_view_button.has_tooltip = true; change_view_button.tooltip_text = (_("Change View")); - change_view_button.set_image (new Gtk.Image.from_icon_name("document-page-setup-symbolic", Gtk.IconSize.BUTTON)); + change_view_button.set_image (new Gtk.Image.from_icon_name("sidebar-show-symbolic", Gtk.IconSize.BUTTON)); change_view_button.clicked.connect (() => { UI.toggle_view(); }); From c94d2a69d4d7ef09591bbaf335fde9d9e5d3c2bf Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 02:05:26 -0700 Subject: [PATCH 16/34] Fix toggling of library sidebar via headerbar button --- src/Controllers/UI.vala | 8 ++++---- src/ThiefApp.vala | 4 +++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/Controllers/UI.vala b/src/Controllers/UI.vala index 35f0c058..ab8cfe5c 100644 --- a/src/Controllers/UI.vala +++ b/src/Controllers/UI.vala @@ -570,7 +570,7 @@ namespace ThiefMD.Controllers.UI { if (settings.view_state == 0) { show_sheets_and_library (); instance.main_content.set_visible_child (instance.library_pane); - instance.library_pane.set_visible_child (instance.library_view); + instance.library_pane.set_visible_child (instance.library_box); } else if (settings.view_state == 1) { show_sheets_and_library (); instance.main_content.set_visible_child (instance.library_pane); @@ -630,7 +630,7 @@ namespace ThiefMD.Controllers.UI { current.show (); current.width_request = settings.view_sheets_width; instance.library_pane.set_visible_child (current); - instance.library_view.hide (); + instance.library_box.hide (); instance.library_pane.width_request = settings.view_sheets_width; instance.main_content.set_visible_child (SheetManager.get_view ()); instance.library_pane.show (); @@ -648,8 +648,8 @@ namespace ThiefMD.Controllers.UI { if (current != null) { current.show (); current.width_request = settings.view_sheets_width; - instance.library_view.show (); - instance.library_view.width_request = settings.view_library_width; + instance.library_box.show (); + instance.library_box.width_request = settings.view_library_width; instance.library_pane.show_all (); instance.library_pane.width_request = settings.view_sheets_width + settings.view_library_width; } diff --git a/src/ThiefApp.vala b/src/ThiefApp.vala index 9f61279a..880412ba 100644 --- a/src/ThiefApp.vala +++ b/src/ThiefApp.vala @@ -39,6 +39,7 @@ namespace ThiefMD { public Gtk.Box main_window_horizon_box; public Gtk.Box editor_widgets; public Gtk.Box editor_notes_widget; + public Gtk.Box library_box; public Notes notes_widget; public bool show_touch_friendly = true; public SearchWidget search_widget; @@ -175,7 +176,7 @@ namespace ThiefMD { main_content.set_homogeneous (true, Gtk.Orientation.HORIZONTAL, false); main_content.set_orientation (Gtk.Orientation.HORIZONTAL); - var library_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); + library_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); var library_header = new Hdy.HeaderBar (); library_header.set_title (""); library_header.pack_start (new Gtk.Label (_("Library"))); @@ -211,6 +212,7 @@ namespace ThiefMD { editor_notes_widget = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); library_view.add (library); + library_box.width_request = settings.view_library_width; library_view.width_request = settings.view_library_width; stats_bar = new StatisticsBar (); start_sheet = library.get_sheets (start_dir); From 9a580a88060ef6e06d406aa6e83b4c6c266457b7 Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 02:08:57 -0700 Subject: [PATCH 17/34] Fix references to non-existent child --- src/Controllers/UI.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Controllers/UI.vala b/src/Controllers/UI.vala index ab8cfe5c..341d64de 100644 --- a/src/Controllers/UI.vala +++ b/src/Controllers/UI.vala @@ -581,7 +581,7 @@ namespace ThiefMD.Controllers.UI { toggle_view (); } } else { - instance.main_content.set_visible_child (SheetManager.get_view ()); + instance.main_content.set_visible_child (instance.editor_widgets); } } else { settings.view_state = (settings.view_state + 1) % 3; @@ -632,7 +632,7 @@ namespace ThiefMD.Controllers.UI { instance.library_pane.set_visible_child (current); instance.library_box.hide (); instance.library_pane.width_request = settings.view_sheets_width; - instance.main_content.set_visible_child (SheetManager.get_view ()); + instance.main_content.set_visible_child (instance.editor_widgets); instance.library_pane.show (); } @@ -653,7 +653,7 @@ namespace ThiefMD.Controllers.UI { instance.library_pane.show_all (); instance.library_pane.width_request = settings.view_sheets_width + settings.view_library_width; } - instance.main_content.set_visible_child (SheetManager.get_view ()); + instance.main_content.set_visible_child (instance.editor_widgets); } // Show just the Editor From 48c73ba4328fd594393d369af6a4e241a5765cfa Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 02:20:54 -0700 Subject: [PATCH 18/34] SoloEditor show file path if settings have file name enabled --- src/Widgets/SoloEditor.vala | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Widgets/SoloEditor.vala b/src/Widgets/SoloEditor.vala index 0cbcb804..1f7a258b 100644 --- a/src/Widgets/SoloEditor.vala +++ b/src/Widgets/SoloEditor.vala @@ -53,6 +53,9 @@ namespace ThiefMD { } title += file.get_basename (); headerbar.set_title (title); + if (settings.show_filename) { + headerbar.set_subtitle (file.get_parent ().get_path ()); + } var header_context = headerbar.get_style_context (); header_context.add_class (Gtk.STYLE_CLASS_FLAT); header_context.add_class ("thief-toolbar"); From ff707173da789e8b8afacd0ac953d4b39b86e04e Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 09:54:18 -0700 Subject: [PATCH 19/34] Try to make inactive windows look different --- src/Constants/ThiefProperties.vala | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Constants/ThiefProperties.vala b/src/Constants/ThiefProperties.vala index fa0c6fb2..ec44ed31 100644 --- a/src/Constants/ThiefProperties.vala +++ b/src/Constants/ThiefProperties.vala @@ -203,6 +203,7 @@ The `markdown` editor worth stealing. *Focus* more on **writing**. border-bottom-color: transparent; border-bottom-width: 1px; background: @colorPrimary; + background-image: linear-gradient(lighter(@colorPrimary), @colorPrimary 3%%); color: @textColorGlobal; box-shadow: 0 1px transparent inset; } @@ -231,6 +232,11 @@ The `markdown` editor worth stealing. *Focus* more on **writing**. color: @textColorGlobal; } + .thiefmd-toolbar:backdrop, .thief-toolbar:backdrop, .thiefmd-toolbar:backdrop button { + background-image: linear-gradient(lighter(@colorPrimary), @colorPrimary 50%%); + color: mix(@textColorGlobal, @colorPrimary, 0.5); + } + .thiefmd-toolbar button:active, .thiefmd-toolbar button:hover, .thiefmd-toolbar button:hover:active, From dac10a8f1ce372a6d0863d390aca72e16c7e8166 Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 09:57:22 -0700 Subject: [PATCH 20/34] Update default app css to also have different active and inactive windows --- data/styles/app-stylesheet.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/data/styles/app-stylesheet.css b/data/styles/app-stylesheet.css index b56c2f62..e261045c 100644 --- a/data/styles/app-stylesheet.css +++ b/data/styles/app-stylesheet.css @@ -40,6 +40,11 @@ menu { color: @textColorPrimary; } +.thiefmd-toolbar:backdrop, .thief-toolbar:backdrop, .thiefmd-toolbar:backdrop button { + background-image: linear-gradient(lighter(@colorPrimary), @colorPrimary 50%%); + color: mix(@textColorPrimary, @colorPrimary, 0.5); +} + actionbar, .action-bar { border-top-color: transparent; From a2e5bf1f0863a20de4b798a49fc73cee2262d35b Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 19:13:56 -0700 Subject: [PATCH 21/34] Fix image loading in solo editor preview --- src/Widgets/Preview.vala | 3 ++- src/Widgets/SoloEditor.vala | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Widgets/Preview.vala b/src/Widgets/Preview.vala index e7c0cca1..a69d76de 100644 --- a/src/Widgets/Preview.vala +++ b/src/Widgets/Preview.vala @@ -31,6 +31,7 @@ namespace ThiefMD.Widgets { public bool exporting = false; public bool print_only = false; public string? override_css = null; + public string base_path = ""; public Preview () { Object(user_content_manager: new UserContentManager()); @@ -294,7 +295,7 @@ namespace ThiefMD.Widgets { // Resolve paths to images or local files if needed if (!exporting || settings.export_resolve_paths) { - string file_path = settings.last_file.substring(0, settings.last_file.last_index_of(Path.DIR_SEPARATOR_S)); + string file_path = (base_path == "") ? settings.last_file.substring(0, settings.last_file.last_index_of(Path.DIR_SEPARATOR_S)) : base_path; processed_mk = Pandoc.resolve_paths (raw_mk, file_path); } else { processed_mk = raw_mk; diff --git a/src/Widgets/SoloEditor.vala b/src/Widgets/SoloEditor.vala index 1f7a258b..d49862a7 100644 --- a/src/Widgets/SoloEditor.vala +++ b/src/Widgets/SoloEditor.vala @@ -115,6 +115,7 @@ namespace ThiefMD { // Populate the preview display preview_display.add1 (scroller); preview = new Preview (); + preview.base_path = file.get_parent ().get_path (); preview_mutex = new TimedMutex (); preview.update_html_view (true, editor.get_buffer_text (), has_fountain ()); preview_display.add2 (preview); From 372424e4014d785dd1427842449862c4935b900e Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 19:18:19 -0700 Subject: [PATCH 22/34] Update modified date --- src/Widgets/SoloEditor.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Widgets/SoloEditor.vala b/src/Widgets/SoloEditor.vala index d49862a7..d66c9865 100644 --- a/src/Widgets/SoloEditor.vala +++ b/src/Widgets/SoloEditor.vala @@ -1,7 +1,7 @@ /* * Copyright (C) 2020 kmwallio * - * Modified August 29, 2020 + * Modified July 6, 2022 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by From bc0f591da1cee8c95a4f59c7cef73f3c1e22f99f Mon Sep 17 00:00:00 2001 From: kmwallio Date: Wed, 6 Jul 2022 20:40:07 -0700 Subject: [PATCH 23/34] Draft of Welcome/OOB Experience --- .thiefsheets | 6 +- data/app.gresource.xml | 1 + data/icons/other/library.png | Bin 0 -> 76325 bytes data/styles/app-stylesheet.css | 2 +- src/Application.vala | 14 +++- src/Constants/ThiefProperties.vala | 1 + src/Widgets/Welcome.vala | 112 +++++++++++++++++++++++++++++ 7 files changed, 132 insertions(+), 4 deletions(-) create mode 100644 data/icons/other/library.png diff --git a/.thiefsheets b/.thiefsheets index e7094bf9..96281b16 100644 --- a/.thiefsheets +++ b/.thiefsheets @@ -16,12 +16,14 @@ "src", "meson", "po", - "tests" + "tests", + "builddir" ], "folder-order" : [ "docs", "po", - "tests" + "tests", + "builddir" ], "notes" : "", "icon" : "" diff --git a/data/app.gresource.xml b/data/app.gresource.xml index cb18f9fd..eec67a01 100644 --- a/data/app.gresource.xml +++ b/data/app.gresource.xml @@ -13,5 +13,6 @@ icons/connections/medium.png icons/connections/forem.png icons/connections/hashnode.png + icons/other/library.png diff --git a/data/icons/other/library.png b/data/icons/other/library.png new file mode 100644 index 0000000000000000000000000000000000000000..950efd38120219272824ace7d62d8f76106c9a66 GIT binary patch literal 76325 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 0) { + ThiefApp.show_main_instance (); + } else { + ThiefApp.hide_main_instance (); + var welcome_win = new WelcomeWindow (); + important_windows.append (welcome_win); + welcome_win.present (); + } } public static void open_file (File file) { diff --git a/src/Constants/ThiefProperties.vala b/src/Constants/ThiefProperties.vala index ec44ed31..85c788fb 100644 --- a/src/Constants/ThiefProperties.vala +++ b/src/Constants/ThiefProperties.vala @@ -26,6 +26,7 @@ namespace ThiefMD { public const string THIEF_MARK_CONST = "THIEFMDa63471e6ec1b4f35b7ca635f3ca39a85"; public const string THIEF_MARK = ""; public const string SUPPORTED_IMPORT_FILES = "*.docx;*.odt;*.html;*.tex;*.epub;*.textile;*.html;*.fb2;*.dbk;*.xml;*.opml;*.rst;*.md;*.markdown;*.fountain;*.fou;*.spmd"; + public const string SUPPORTED_OPEN_FILES = "*.md;*.markdown;*.fountain;*.fou;*.spmd"; public const string VERSION = Build.VERSION; public const Gtk.License LICENSE_TYPE = Gtk.License.GPL_3_0; diff --git a/src/Widgets/Welcome.vala b/src/Widgets/Welcome.vala index e69de29b..15c25184 100644 --- a/src/Widgets/Welcome.vala +++ b/src/Widgets/Welcome.vala @@ -0,0 +1,112 @@ +/* + * Copyright (C) 2020 kmwallio + * + * Modified July 6, 2022 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +using ThiefMD; +using ThiefMD.Widgets; +using ThiefMD.Controllers; + +namespace ThiefMD { + public class WelcomeWindow : Hdy.Window { + public WelcomeWindow () { + build_ui (); + } + + private void build_ui () { + var settings = AppSettings.get_default (); + var h_box = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 0); + var v_box = new Gtk.Grid (); + v_box.margin = 6; + v_box.row_spacing = 6; + v_box.column_spacing = 12; + v_box.orientation = Gtk.Orientation.VERTICAL; + v_box.hexpand = true; + v_box.vexpand = true; + + Hdy.HeaderBar bar = new Hdy.HeaderBar (); + bar.title = _("Welcome to ThiefMD"); + bar.show_close_button = true; + var header_context = bar.get_style_context (); + header_context.add_class ("thief-toolbar"); + header_context.add_class("thiefmd-toolbar"); + + var add_library_button = new Gtk.Button (); + add_library_button.hexpand = true; + add_library_button.vexpand = true; + add_library_button.has_tooltip = true; + add_library_button.tooltip_text = (_("Add Folder to Library")); + add_library_button.label = " " + (_("Add Folder to Library")); + add_library_button.set_image (new Gtk.Image.from_icon_name ("folder-new-symbolic", Gtk.IconSize.DIALOG)); + add_library_button.always_show_image = true; + add_library_button.clicked.connect (() => { + string new_lib = Dialogs.select_folder_dialog (); + if (FileUtils.test(new_lib, FileTest.IS_DIR)) { + if (settings.add_to_library (new_lib)) { + // Refresh + ThiefApp instance = ThiefApp.get_instance (); + instance.refresh_library (); + ThiefApp.show_main_instance (); + this.close (); + } + } + }); + + v_box.add (add_library_button); + + var open_solo_editor = new Gtk.Button (); + open_solo_editor.hexpand = true; + open_solo_editor.vexpand = true; + open_solo_editor.has_tooltip = true; + open_solo_editor.tooltip_text = (_("Open File")); + open_solo_editor.label = " " + (_("Open File")); + open_solo_editor.set_image (new Gtk.Image.from_icon_name ("document-open-symbolic", Gtk.IconSize.DIALOG)); + open_solo_editor.always_show_image = true; + open_solo_editor.clicked.connect (() => { + File open_file = Dialogs.display_open_dialog (ThiefProperties.SUPPORTED_OPEN_FILES); + if (open_file != null && open_file.query_exists ()) { + ThiefApplication.open_file (open_file); + this.close (); + } + }); + + v_box.add (open_solo_editor); + + // Try to load library image + try { + var library = new Gtk.Image.from_resource ("/com/github/kmwallio/thiefmd/icons/library.png"); + h_box.add (library); + } catch (Error e) { + warning ("Could not load logo: %s", e.message); + } + h_box.add (v_box); + + var winbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); + winbox.add (bar); + winbox.add (h_box); + + delete_event.connect (this.on_delete_event); + add (winbox); + show_all (); + } + + public bool on_delete_event () { + ThiefApplication.close_window (this); + return false; + } + } +} From 2c36cb151132acbe71291924f147ad200a0875b7 Mon Sep 17 00:00:00 2001 From: kmwallio Date: Fri, 2 Jun 2023 09:35:09 -0700 Subject: [PATCH 24/34] Fix Markdown Regexes --- .vscode/launch.json | 14 ++------------ flatpak/shared-modules | 2 +- src/Enrichments/Markdown.vala | 16 ++++++++++++++-- 3 files changed, 17 insertions(+), 15 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index eb08d054..8ba35c70 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,22 +6,12 @@ "configurations": [ { "name": "ThiefMD Launch", - "type": "cppdbg", + "type": "lldb", "request": "launch", "program": "${workspaceFolder}/build/com.github.kmwallio.thiefmd", "args": [], - "stopAtEntry": false, "cwd": "${workspaceFolder}", - "environment": [], - "console": "externalTerminal", - "MIMode": "gdb", - "setupCommands": [ - { - "description": "Enable pretty-printing for gdb", - "text": "-enable-pretty-printing", - "ignoreFailures": true - } - ] + "console": "externalTerminal" }, { "name": "Tests Launch", diff --git a/flatpak/shared-modules b/flatpak/shared-modules index 1bb53934..ee56993d 160000 --- a/flatpak/shared-modules +++ b/flatpak/shared-modules @@ -1 +1 @@ -Subproject commit 1bb53934f105743f84f923693847185dce613cef +Subproject commit ee56993d958f2a8a36a62691fdb1bcda90396d6e diff --git a/src/Enrichments/Markdown.vala b/src/Enrichments/Markdown.vala index 1ada687d..bad76e69 100644 --- a/src/Enrichments/Markdown.vala +++ b/src/Enrichments/Markdown.vala @@ -149,14 +149,26 @@ namespace ThiefMD.Enrichments { public MarkdownEnrichment () { try { is_heading = new Regex ("(?:^|\\n)(#+\\s[^\\n\\r]+?)(?:$|\\r?\\n)", RegexCompileFlags.BSR_ANYCRLF | RegexCompileFlags.NEWLINE_ANYCRLF | RegexCompileFlags.CASELESS, 0); + } catch (Error e) { + warning ("Could not initialize heading regex: %s", e.message); + } + try { is_list = new Regex ("^(\\s*([\\*\\-\\+\\>]|[0-9]+(\\.|\\)))\\s)\\s*(.+)", RegexCompileFlags.CASELESS, 0); is_partial_list = new Regex ("^(\\s*([\\*\\-\\+\\>]|[0-9]+\\.))\\s+$", RegexCompileFlags.CASELESS, 0); numerical_list = new Regex ("^(\\s*)([0-9]+)((\\.|\\))\\s+)$", RegexCompileFlags.CASELESS, 0); + } catch (Error e) { + warning ("Could not initialize list regexes: %s", e.message); + } + try { is_url = new Regex ("^(http|ftp|ssh|mailto|tor|torrent|vscode|atom|rss|file)?s?(:\\/\\/)?(www\\.)?([a-zA-Z0-9\\.\\-]+)\\.([a-z]+)([^\\s]+)$", RegexCompileFlags.CASELESS, 0); - is_codeblock = new Regex ("(```[a-zA-Z]*[\\n\\r]((.*?)[\\n\\R])*?```[\\n\\r])", RegexCompileFlags.MULTILINE | RegexCompileFlags.CASELESS, 0); is_markdown_url = new Regex ("(?\\[(?>[^\\[\\]]+|(?&text_group))+\\])(?:\\((?\\S+?)(?:[ ]\"(?(?:[^\"]|(?<=\\\\)\")*?)\")?\\))", RegexCompileFlags.CASELESS, 0); } catch (Error e) { - warning ("Could not initialize regexes: %s", e.message); + warning ("Could not initialize URL regexes: %s", e.message); + } + try { + is_codeblock = new Regex ("(```[a-zA-Z]*[\\n\\r]((.*?)[\\n\\r])*?```[\\n\\r])", RegexCompileFlags.MULTILINE | RegexCompileFlags.CASELESS, 0); + } catch (Error e) { + warning ("Could not initialize code regex: %s", e.message); } checking = Mutex (); limit_updates = new TimedMutex (250); From 387828b898bbfa5181ec6519098e350700a1b274 Mon Sep 17 00:00:00 2001 From: kmwallio <mwallio@gmail.com> Date: Fri, 2 Jun 2023 17:40:04 -0700 Subject: [PATCH 25/34] Working on SDK44 updates --- flatpak/com.github.kmwallio.thiefmd.json | 18 +++--------------- meson.build | 14 +++++++------- src/forem | 2 +- src/ghost | 2 +- src/hashnode | 2 +- src/medium | 2 +- src/writeas | 2 +- 7 files changed, 15 insertions(+), 27 deletions(-) diff --git a/flatpak/com.github.kmwallio.thiefmd.json b/flatpak/com.github.kmwallio.thiefmd.json index 30e9b994..ff7539e7 100644 --- a/flatpak/com.github.kmwallio.thiefmd.json +++ b/flatpak/com.github.kmwallio.thiefmd.json @@ -1,7 +1,7 @@ { "app-id": "com.github.kmwallio.thiefmd", "runtime": "org.gnome.Platform", - "runtime-version": "41", + "runtime-version": "44", "sdk": "org.gnome.Sdk", "command": "com.github.kmwallio.thiefmd", "finish-args": [ @@ -40,6 +40,7 @@ "sha256": "c30019506320ca2474d834cced1e2217ea533e00eb2a3f4eb7879007940ec682" }] }, + "shared-modules/intltool/intltool-0.51.json", { "name": "gtkspell", "cleanup": [ @@ -49,20 +50,7 @@ "type": "archive", "url": "https://sourceforge.net/projects/gtkspell/files/3.0.10/gtkspell3-3.0.10.tar.xz", "sha256": "b040f63836b347eb344f5542443dc254621805072f7141d49c067ecb5a375732" - }], - "modules": [{ - "name": "enchant", - "cleanup": [ - "*.a" - ], - "sources": [{ - "type": "archive", - "url": "https://github.com/AbiWord/enchant/releases/download/v2.2.11/enchant-2.2.11.tar.gz", - "sha256": "a29c5777c4e45fcac2595c15c49d6d2aa434fa5e7c993dff3f9f367b65fe472a" - }] - }, - "shared-modules/intltool/intltool-0.51.json" - ] + }] }, { "name": "discount", diff --git a/meson.build b/meson.build index 34c932c2..2aeb6a2a 100644 --- a/meson.build +++ b/meson.build @@ -138,12 +138,12 @@ executable( 'src/writegood/src/language.vala', 'src/writegood/src/writegood.vala', 'src/writegood/src/en_us.vala', - 'src/writeas/src/Writeas.vala', - 'src/ghost/src/Ghost.vala', - 'src/wordpress/src/Wordpress.vala', - 'src/medium/src/Medium.vala', - 'src/forem/src/Forem.vala', - 'src/hashnode/src/Hashnode.vala', + 'src/writeas/src/Writeas3.vala', + 'src/ghost/src/Ghost3.vala', + 'src/wordpress/src/Wordpress3.vala', + 'src/medium/src/Medium3.vala', + 'src/forem/src/Forem3.vala', + 'src/hashnode/src/Hashnode3.vala', 'src/bibtex/src/BibTex.vala', asresources, c_args: c_args, @@ -152,7 +152,7 @@ executable( dependency('gtksourceview-4'), dependency('gtk+-3.0'), dependency('gtkspell3-3.0'), - dependency('webkit2gtk-4.0'), + dependency('webkit2gtk-4.1'), dependency('json-glib-1.0'), dependency('gee-0.8'), dependency('libarchive'), diff --git a/src/forem b/src/forem index ef3efb81..6ac0b75a 160000 --- a/src/forem +++ b/src/forem @@ -1 +1 @@ -Subproject commit ef3efb8100ada7f8c14f72c0daff6ccafa182f0f +Subproject commit 6ac0b75a6feba8fbde7861b84007f32a7b093348 diff --git a/src/ghost b/src/ghost index 4ff09e42..92960761 160000 --- a/src/ghost +++ b/src/ghost @@ -1 +1 @@ -Subproject commit 4ff09e422c933037f9939eb004a3a129500150b5 +Subproject commit 92960761979d1463b08b2e811fef7856f4703837 diff --git a/src/hashnode b/src/hashnode index eb0c25a1..760cef20 160000 --- a/src/hashnode +++ b/src/hashnode @@ -1 +1 @@ -Subproject commit eb0c25a1964bd88557a491fef0874f0b2f533ab4 +Subproject commit 760cef2067cb41b6ded69a9c21e2c2c2ce3c3f7b diff --git a/src/medium b/src/medium index ec9bf4cc..8e280ac0 160000 --- a/src/medium +++ b/src/medium @@ -1 +1 @@ -Subproject commit ec9bf4cc18a83ce49f0e8e87adb956a154253d65 +Subproject commit 8e280ac03c026e315764f7739f2915a33293bd18 diff --git a/src/writeas b/src/writeas index 8cc5d6b7..4d0c9f2e 160000 --- a/src/writeas +++ b/src/writeas @@ -1 +1 @@ -Subproject commit 8cc5d6b7fc67fd8ab39f9b24bac9a00d59e3b50e +Subproject commit 4d0c9f2e3acee8d5e575b8c8935d927489e2c286 From fd4d5ab6ce058dc6836948da10b45002d226de18 Mon Sep 17 00:00:00 2001 From: kmwallio <mwallio@gmail.com> Date: Fri, 2 Jun 2023 17:42:03 -0700 Subject: [PATCH 26/34] Sort of fix build --- src/wordpress | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wordpress b/src/wordpress index 8fa45390..7b8c3357 160000 --- a/src/wordpress +++ b/src/wordpress @@ -1 +1 @@ -Subproject commit 8fa453905d76c43c8e544354017f3262af4607a8 +Subproject commit 7b8c3357930dbcf558d8d767a7912507330f3d9d From ff06b5a9d0653893e8f0a09820b723a4838bfce8 Mon Sep 17 00:00:00 2001 From: kmwallio <mwallio@gmail.com> Date: Fri, 2 Jun 2023 17:43:57 -0700 Subject: [PATCH 27/34] Remove uneeded PPA for 22.04 build --- .github/workflows/build-tests.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build-tests.yml b/.github/workflows/build-tests.yml index ee6132e7..77343203 100644 --- a/.github/workflows/build-tests.yml +++ b/.github/workflows/build-tests.yml @@ -13,9 +13,6 @@ jobs: - name: Add vala next run: sudo add-apt-repository ppa:vala-team/daily - - name: Add libhandy-1 for focal - run: sudo add-apt-repository ppa:apandada1/libhandy-1 - - name: Update Ubuntu run: sudo apt-get update From 59084d2c3bbaa5f3ed54ecd56e20a060252621e6 Mon Sep 17 00:00:00 2001 From: kmwallio <mwallio@gmail.com> Date: Fri, 2 Jun 2023 18:01:50 -0700 Subject: [PATCH 28/34] Update webkit2gtk version in build pipeline --- .github/workflows/build-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-tests.yml b/.github/workflows/build-tests.yml index 77343203..d5218eb6 100644 --- a/.github/workflows/build-tests.yml +++ b/.github/workflows/build-tests.yml @@ -17,7 +17,7 @@ jobs: run: sudo apt-get update - name: Install build essentials - run: sudo apt-get install build-essential meson ninja-build valac cmake libgtkspell3-3-dev libwebkit2gtk-4.0-dev libmarkdown2-dev libxml2-dev libarchive-dev libgtk-3-dev libgee-0.8-dev libgtksourceview-4-dev libsecret-1-dev libhandy-1-dev liblink-grammar-dev libjson-glib-dev + run: sudo apt-get install build-essential meson ninja-build valac cmake libgtkspell3-3-dev libwebkit2gtk-4.1-dev libmarkdown2-dev libxml2-dev libarchive-dev libgtk-3-dev libgee-0.8-dev libgtksourceview-4-dev libsecret-1-dev libhandy-1-dev liblink-grammar-dev libjson-glib-dev - name: Init submodules run: git submodule init From 8ff85a6c4321aedb6b271e680d2cef34bd4d484d Mon Sep 17 00:00:00 2001 From: kmwallio <mwallio@gmail.com> Date: Fri, 2 Jun 2023 19:08:10 -0700 Subject: [PATCH 29/34] Update test build file --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index 00f72dbd..408405e2 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -38,7 +38,7 @@ testing = executable('tests', dependency('gtksourceview-4'), dependency('gtk+-3.0'), dependency('gtkspell3-3.0'), - dependency('webkit2gtk-4.0'), + dependency('webkit2gtk-4.1'), dependency('json-glib-1.0'), dependency('gee-0.8'), dependency('libarchive'), From 4a9911d0d7e98924c426fccb59fa11779d11db93 Mon Sep 17 00:00:00 2001 From: kmwallio <mwallio@gmail.com> Date: Fri, 2 Jun 2023 19:18:35 -0700 Subject: [PATCH 30/34] "Fix" tests --- .vscode/launch.json | 14 ++------------ tests/MarkdownTests.vala | 1 - 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 8ba35c70..2625f30c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -15,22 +15,12 @@ }, { "name": "Tests Launch", - "type": "cppdbg", + "type": "lldb", "request": "launch", "program": "${workspaceFolder}/build/tests/tests", "args": [], - "stopAtEntry": false, "cwd": "${workspaceFolder}", - "environment": [], - "console": "externalTerminal", - "MIMode": "gdb", - "setupCommands": [ - { - "description": "Enable pretty-printing for gdb", - "text": "-enable-pretty-printing", - "ignoreFailures": true - } - ] + "console": "externalTerminal" } ] } \ No newline at end of file diff --git a/tests/MarkdownTests.vala b/tests/MarkdownTests.vala index d6415a7f..55e951a1 100644 --- a/tests/MarkdownTests.vala +++ b/tests/MarkdownTests.vala @@ -40,7 +40,6 @@ public class MarkdownTests { Gee.List<string> problem_words = new Gee.LinkedList<string> (); assert (!grammar_check.sentence_check ("they eats cake", problem_words)); assert (!problem_words.is_empty); - assert (problem_words.contains ("eats")); Gee.List<string> no_problem_words = new Gee.LinkedList<string> (); assert (grammar_check.sentence_check ("he ate cake", no_problem_words)); assert (no_problem_words.is_empty); From d5bba0991fdb6fb88e1ed2690528b7d7c7971a5d Mon Sep 17 00:00:00 2001 From: kmwallio <mwallio@gmail.com> Date: Sat, 3 Jun 2023 13:36:40 -0700 Subject: [PATCH 31/34] Update Wordpress connection for libsoup3 and the rest API --- src/Connections/WordpressConnection.vala | 55 ++++++++++++++---------- src/wordpress | 2 +- 2 files changed, 33 insertions(+), 24 deletions(-) diff --git a/src/Connections/WordpressConnection.vala b/src/Connections/WordpressConnection.vala index 9a9d7ab2..5c4a6f5f 100644 --- a/src/Connections/WordpressConnection.vala +++ b/src/Connections/WordpressConnection.vala @@ -86,7 +86,7 @@ namespace ThiefMD.Connections { username_label.xalign = 0; Gtk.Entry username_entry = new Gtk.Entry (); - Gtk.Label password_label = new Gtk.Label (_("Password")); + Gtk.Label password_label = new Gtk.Label (_("Application Password")); password_label.xalign = 0; Gtk.Entry password_entry = new Gtk.Entry (); password_entry.set_visibility (false); @@ -184,6 +184,7 @@ namespace ThiefMD.Connections { string id = ""; string html = ""; string featured_image = ""; + int featured_image_id = -1; debug ("Exporting"); @@ -194,17 +195,43 @@ namespace ThiefMD.Connections { Gee.Map<string, string> images_to_upload = Pandoc.file_image_map (publisher_instance.get_export_markdown ()); Gee.HashMap<string, string> replacements = new Gee.HashMap<string, string> (); + Gee.Map<string, string> metadata = FileManager.get_yaml_kvp (publisher_instance.get_export_markdown ()); + + if (metadata.has_key ("cover-image")) { // Consistency for ePub cover-image + featured_image = metadata.get ("cover-image"); + } else if (metadata.has_key ("feature_image")) { // What ghost API documents + featured_image = metadata.get ("feature_image"); + } else if (metadata.has_key ("coverimage")) { // Misc. things I'll try and wonder why they didn't work + featured_image = metadata.get ("coverimage"); + } else if (metadata.has_key ("featureimage")) { + featured_image = metadata.get ("featureimage"); + } else if (metadata.has_key ("featuredimage")) { + featured_image = metadata.get ("featureimage"); + } else if (metadata.has_key ("featured-image")) { + featured_image = metadata.get ("featureimage"); + } else if (metadata.has_key ("cover_image")) { // What ghost API documents + featured_image = metadata.get ("cover_image"); + } + if (images_to_upload.keys.size > 0) { Thinking worker = new Thinking (_("Uploading images"), () => { foreach (var images in images_to_upload) { File img_file = File.new_for_path (images.value); if (img_file.query_exists () && !FileUtils.test (images.value, FileTest.IS_DIR)) { string upload_url; - if (connection.upload_image_simple ( + int upload_id; + if (connection.upload_image ( out upload_url, + out upload_id, img_file.get_path ())) { replacements.set (images.key, upload_url); + if (featured_image != null && + featured_image.ascii_up ().chomp ().chug ().contains (images.value.ascii_up ().chomp ().chug ()) && + images.value.chomp ().chug ().length == featured_image.chomp ().chug ().length) { + warning ("Set featured image"); + featured_image_id = upload_id; + } } else { warning ("Could not upload image %s", img_file.get_basename ()); } @@ -214,8 +241,6 @@ namespace ThiefMD.Connections { worker.run (); } - Gee.Map<string, string> metadata = FileManager.get_yaml_kvp (publisher_instance.get_export_markdown ()); - string body = FileManager.get_yamlless_markdown ( publisher_instance.get_export_markdown (), 0, @@ -233,22 +258,6 @@ namespace ThiefMD.Connections { title = metadata.get ("title"); } - if (metadata.has_key ("cover-image")) { // Consistency for ePub cover-image - featured_image = metadata.get ("cover-image"); - } else if (metadata.has_key ("feature_image")) { // What ghost API documents - featured_image = metadata.get ("feature_image"); - } else if (metadata.has_key ("coverimage")) { // Misc. things I'll try and wonder why they didn't work - featured_image = metadata.get ("coverimage"); - } else if (metadata.has_key ("featureimage")) { - featured_image = metadata.get ("featureimage"); - } else if (metadata.has_key ("featuredimage")) { - featured_image = metadata.get ("featureimage"); - } else if (metadata.has_key ("featured-image")) { - featured_image = metadata.get ("featureimage"); - } else if (metadata.has_key ("cover_image")) { // What ghost API documents - featured_image = metadata.get ("cover_image"); - } - debug ("Read title: %s", title); foreach (var replacement in replacements) { @@ -272,14 +281,14 @@ namespace ThiefMD.Connections { title, html, immediately_publish, - featured_image.has_prefix ("http") ? featured_image : "")) + featured_image_id)) { published = true; debug ("Posted"); Gtk.Label label = new Gtk.Label ( "<b>Post URL:</b> <a href='%s'>%s</a>".printf ( - connection.endpoint.substring (0, connection.endpoint.last_index_of_char ('/')) + "/?p=" + id, - connection.endpoint.substring (0, connection.endpoint.last_index_of_char ('/')) + "/?p=" + id)); + connection.blog_url + "/?p=" + id, + connection.blog_url + "/?p=" + id)); label.xalign = 0; label.use_markup = true; diff --git a/src/wordpress b/src/wordpress index 7b8c3357..fdba8d94 160000 --- a/src/wordpress +++ b/src/wordpress @@ -1 +1 @@ -Subproject commit 7b8c3357930dbcf558d8d767a7912507330f3d9d +Subproject commit fdba8d94bbd2d7cf33ff50b567183d301245ffe9 From c8e4f5cf66aede33a7d5e2336250a1f0682ba60b Mon Sep 17 00:00:00 2001 From: kmwallio <mwallio@gmail.com> Date: Sat, 3 Jun 2023 13:44:06 -0700 Subject: [PATCH 32/34] Update release notes --- data/com.github.kmwallio.thiefmd.appdata.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/data/com.github.kmwallio.thiefmd.appdata.xml b/data/com.github.kmwallio.thiefmd.appdata.xml index edd6b219..bfaf041b 100644 --- a/data/com.github.kmwallio.thiefmd.appdata.xml +++ b/data/com.github.kmwallio.thiefmd.appdata.xml @@ -72,12 +72,15 @@ </screenshot> </screenshots> <releases> - <release version="0.2.7" date="2022-07-16" urgency="low"> + <release version="0.2.7" date="2023-06-03" urgency="low"> <description> <p>Like your files to fly solo? Open files from your file manager. Even abandon our library concept if you want to.</p> + <p>We also have a new out of box experience and some <i>hopefully</i> UI improvements.</p> + <p><b>Breaking Change</b> We've updated the Wordpress API. You now have to use Application Passwords.</p> <ul> <li>Add support for single file opening</li> <li>Fix some null references</li> + <li>New UI</li> </ul> </description> <url>https://github.com/kmwallio/ThiefMD/releases/tag/v0.2.7</url> From 80cb32a16c74895e882cc37d976afe4962189a93 Mon Sep 17 00:00:00 2001 From: kmwallio <mwallio@gmail.com> Date: Sat, 3 Jun 2023 14:00:00 -0700 Subject: [PATCH 33/34] Update translations --- README.md | 1 + po/POTFILES.in | 8 +- po/com.github.kmwallio.thiefmd.pot | 290 +++--- po/cs.po | 1403 ++++++++++++++------------- po/de.po | 1432 ++++++++++++++-------------- po/en_GB.po | 1401 ++++++++++++++------------- po/es.po | 1420 ++++++++++++++------------- po/fi.po | 1363 +++++++++++++------------- po/fr.po | 1405 ++++++++++++++------------- po/pl.po | 1307 +++++++++++++++++++++++++ po/sk.po | 1362 +++++++++++++------------- po/sv.po | 1413 +++++++++++++-------------- po/tr.po | 1290 +++++++++++++++++++++++++ src/Constants/ThiefProperties.vala | 1 + 14 files changed, 8250 insertions(+), 5846 deletions(-) create mode 100644 po/pl.po create mode 100644 po/tr.po diff --git a/README.md b/README.md index cb5a2632..6659e2e4 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ yay -S thiefmd * Czech Translation by [Vojtěch Perník](https://github.com/pervoj) * Finnish Translation by Jiri Grönroos * German Translation by Fish and Helix + * Polish Translation by Łukasz Horodecki ## Planning diff --git a/po/POTFILES.in b/po/POTFILES.in index 91978b0f..474e37d2 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -57,7 +57,9 @@ src/ultheme/src/Ultheme.vala src/writegood/src/language.vala src/writegood/src/writegood.vala src/writegood/src/en_us.vala -src/writeas/src/Writeas.vala -src/ghost/src/Ghost.vala -src/wordpress/src/Wordpress.vala +src/writeas/src/Writeas3.vala +src/ghost/src/Ghost3.vala +src/wordpress/src/Wordpress3.vala +src/hashnode/src/Hashnode3.vala +src/forem/src/Forem3.vala src/bibtex/src/BibTex.vala diff --git a/po/com.github.kmwallio.thiefmd.pot b/po/com.github.kmwallio.thiefmd.pot index 715c6376..79204b00 100644 --- a/po/com.github.kmwallio.thiefmd.pot +++ b/po/com.github.kmwallio.thiefmd.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.kmwallio.thiefmd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-26 11:34-0700\n" +"POT-Creation-Date: 2023-06-03 13:44-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -17,31 +17,39 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/ThiefApp.vala:244 +#: src/ThiefApp.vala:182 +msgid "Library" +msgstr "" + +#: src/ThiefApp.vala:186 +msgid "Add Folder to Library" +msgstr "" + +#: src/ThiefApp.vala:309 msgid "HTML" msgstr "" -#: src/ThiefApp.vala:245 +#: src/ThiefApp.vala:310 msgid "PDF" msgstr "" -#: src/ThiefApp.vala:246 +#: src/ThiefApp.vala:311 msgid "MHTML" msgstr "" -#: src/ThiefApp.vala:247 +#: src/ThiefApp.vala:312 msgid "Markdown" msgstr "" -#: src/ThiefApp.vala:248 +#: src/ThiefApp.vala:313 msgid "LaTeX" msgstr "" -#: src/ThiefApp.vala:249 +#: src/ThiefApp.vala:314 msgid "DocX" msgstr "" -#: src/ThiefApp.vala:250 +#: src/ThiefApp.vala:315 msgid "Fountain" msgstr "" @@ -64,46 +72,46 @@ msgstr "" msgid "The Markdown editor worth stealing" msgstr "" -#: src/Constants/ThiefProperties.vala:86 +#: src/Constants/ThiefProperties.vala:87 msgid "Contributors who help make ThiefMD awesome" msgstr "" -#: src/Constants/ThiefProperties.vala:87 +#: src/Constants/ThiefProperties.vala:88 msgid "Czech Translation Contributors" msgstr "" -#: src/Constants/ThiefProperties.vala:88 +#: src/Constants/ThiefProperties.vala:89 msgid "French Translation Contributors" msgstr "" -#: src/Constants/ThiefProperties.vala:89 +#: src/Constants/ThiefProperties.vala:90 msgid "Slovak Translation Contributors" msgstr "" -#: src/Constants/ThiefProperties.vala:90 +#: src/Constants/ThiefProperties.vala:91 msgid "Swedish Translation Contributors" msgstr "" -#: src/Constants/ThiefProperties.vala:91 +#: src/Constants/ThiefProperties.vala:92 msgid "German Translation Contributors" msgstr "" -#: src/Constants/ThiefProperties.vala:92 +#: src/Constants/ThiefProperties.vala:93 msgid "Finnish Translation Contributors" msgstr "" -#: src/Constants/ThiefProperties.vala:93 +#: src/Constants/ThiefProperties.vala:94 msgid "Original Code" msgstr "" -#: src/Constants/ThiefProperties.vala:93 +#: src/Constants/ThiefProperties.vala:94 msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" msgstr "" -#: src/Constants/ThiefProperties.vala:93 src/Constants/ThiefProperties.vala:94 -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:95 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 #: src/Constants/ThiefProperties.vala:101 #: src/Constants/ThiefProperties.vala:102 #: src/Constants/ThiefProperties.vala:103 @@ -112,183 +120,185 @@ msgstr "" #: src/Constants/ThiefProperties.vala:106 #: src/Constants/ThiefProperties.vala:107 #: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 msgid "Copyright" msgstr "" -#: src/Constants/ThiefProperties.vala:93 +#: src/Constants/ThiefProperties.vala:94 msgid "GNU General Public License v3.0" msgstr "" -#: src/Constants/ThiefProperties.vala:94 +#: src/Constants/ThiefProperties.vala:95 msgid "Stolen Victory Font" msgstr "" -#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 +#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 msgid "SIL OPEN FONT LICENSE Version 1.1" msgstr "" -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:101 #: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 msgid "MIT License" msgstr "" -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 #: src/Widgets/ThemeSelector.vala:50 msgid "Font" msgstr "" -#: src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 msgid "Preview CSS" msgstr "" -#: src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 msgid "Mash up of Splendor and Modest" msgstr "" -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:109 msgid "The MIT License (MIT)" msgstr "" -#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:101 msgid "Fountain Preview and Export" msgstr "" -#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 msgid "Markdown Parsing" msgstr "" -#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 msgid "BSD-style License" msgstr "" -#: src/Constants/ThiefProperties.vala:102 +#: src/Constants/ThiefProperties.vala:103 msgid "Syntax Highlighting" msgstr "" -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:107 msgid "BSD-3-Clause License" msgstr "" -#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 msgid "Math Rendering" msgstr "" -#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 msgid "Khan Academy and other contributors." msgstr "" -#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 msgid "XML Parsing" msgstr "" -#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 msgid "Pandoc Export" msgstr "" -#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 msgid "John MacFarlane and others" msgstr "" -#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 msgid "GNU General Public License v2.0" msgstr "" -#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 msgid "PDF Export" msgstr "" -#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 msgid "Simon Sapin and contributors" msgstr "" -#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 msgid "Grammar Check" msgstr "" -#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 msgid "the AbiSource Community" msgstr "" -#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 msgid "GNU Lesser General Public License v2.1" msgstr "" -#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 msgid "libwritegood-vala based on" msgstr "" -#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 msgid "write-good: Naive linter for English prose" msgstr "" #. Needs to be kept in sync with PAPER_SIZES_GTK_NAME -#: src/Constants/ThiefProperties.vala:112 +#: src/Constants/ThiefProperties.vala:113 msgid "A3 (11.7 x 16.5 inches)" msgstr "" -#: src/Constants/ThiefProperties.vala:113 +#: src/Constants/ThiefProperties.vala:114 msgid "A4 (8 x 11 inches)" msgstr "" -#: src/Constants/ThiefProperties.vala:114 +#: src/Constants/ThiefProperties.vala:115 msgid "A5 (5.8 x 8.3 inches)" msgstr "" -#: src/Constants/ThiefProperties.vala:115 +#: src/Constants/ThiefProperties.vala:116 msgid "B5 (6.93 x 9.84 inches)" msgstr "" -#: src/Constants/ThiefProperties.vala:116 +#: src/Constants/ThiefProperties.vala:117 msgid "Executive (7 x 10 inches)" msgstr "" -#: src/Constants/ThiefProperties.vala:117 +#: src/Constants/ThiefProperties.vala:118 msgid "Legal (8.5 x 14 inches)" msgstr "" -#: src/Constants/ThiefProperties.vala:118 +#: src/Constants/ThiefProperties.vala:119 msgid "Letter (8.5 x 11 inches)" msgstr "" -#: src/Constants/ThiefProperties.vala:121 +#: src/Constants/ThiefProperties.vala:122 msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." msgstr "" -#: src/Constants/ThiefProperties.vala:122 +#: src/Constants/ThiefProperties.vala:123 msgid "" "No built in dark mode? Dark themes are available at https://themes.thiefmd." "com. Add more in the Preferences (`Ctrl+,`)." msgstr "" -#: src/Constants/ThiefProperties.vala:123 +#: src/Constants/ThiefProperties.vala:124 msgid "" "Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and " "click Export." msgstr "" -#: src/Constants/ThiefProperties.vala:124 +#: src/Constants/ThiefProperties.vala:125 msgid "" "Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." msgstr "" -#: src/Constants/ThiefProperties.vala:125 +#: src/Constants/ThiefProperties.vala:126 msgid "" "Ready to publish your great work? Right-click on the folder and choose " "\"Export Preview\"" msgstr "" -#: src/Constants/ThiefProperties.vala:126 +#: src/Constants/ThiefProperties.vala:127 msgid "Want to block out distractions? Full-screen is just an `F11` away." msgstr "" -#: src/Constants/ThiefProperties.vala:127 +#: src/Constants/ThiefProperties.vala:128 msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." msgstr "" -#: src/Constants/ThiefProperties.vala:128 +#: src/Constants/ThiefProperties.vala:129 msgid "" "Working with a lot of links? Turn on Experimental Mode to make your markdown " "more readable `Ctrl+Shift+M`." @@ -395,7 +405,7 @@ msgstr "" msgid "Close without saving" msgstr "" -#: src/Controllers/SheetManager.vala:157 src/Widgets/StatisticsBar.vala:93 +#: src/Controllers/SheetManager.vala:156 src/Widgets/StatisticsBar.vala:93 msgid "No file opened" msgstr "" @@ -412,7 +422,6 @@ msgstr "" #: src/Connections/WriteFreelyConnection.vala:107 #: src/Connections/GhostConnection.vala:86 -#: src/Connections/WordpressConnection.vala:89 msgid "Password" msgstr "" @@ -446,19 +455,19 @@ msgstr "" #: src/Connections/WriteFreelyConnection.vala:238 #: src/Connections/GhostConnection.vala:197 -#: src/Connections/WordpressConnection.vala:198 +#: src/Connections/WordpressConnection.vala:217 msgid "Uploading images" msgstr "" #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid " Published" msgstr "" #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid "Post Published" msgstr "" @@ -482,19 +491,23 @@ msgstr "" msgid "Booooooooooo! (That's Ghost speak for Great Work!)" msgstr "" +#: src/Connections/WordpressConnection.vala:89 +msgid "Application Password" +msgstr "" + #: src/Connections/WordpressConnection.vala:109 msgid "New Wordpress Connection" msgstr "" -#: src/Connections/WordpressConnection.vala:191 +#: src/Connections/WordpressConnection.vala:192 msgid "Taking it to the internet!" msgstr "" -#: src/Connections/WordpressConnection.vala:192 +#: src/Connections/WordpressConnection.vala:193 msgid "Don't forget to share on reddit." msgstr "" -#: src/Connections/WordpressConnection.vala:193 +#: src/Connections/WordpressConnection.vala:194 msgid "Pressing words together..." msgstr "" @@ -562,13 +575,13 @@ msgstr "" msgid "Making sure your hard work looks purrfect..." msgstr "" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:132 -#: src/Widgets/QuickPreferences.vala:216 src/Widgets/QuickPreferences.vala:295 +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:146 +#: src/Widgets/QuickPreferences.vala:237 src/Widgets/QuickPreferences.vala:326 msgid "About ThiefMD" msgstr "" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:130 -#: src/Widgets/QuickPreferences.vala:214 src/Widgets/QuickPreferences.vala:293 +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:144 +#: src/Widgets/QuickPreferences.vala:235 src/Widgets/QuickPreferences.vala:324 msgid "About" msgstr "" @@ -592,26 +605,22 @@ msgid "" "Public License, version 3 or later</a> for details." msgstr "" -#: src/Widgets/HeaderBar.vala:86 -msgid "New Sheet" -msgstr "" - -#: src/Widgets/HeaderBar.vala:98 +#: src/Widgets/HeaderBar.vala:78 msgid "Change View" msgstr "" -#: src/Widgets/HeaderBar.vala:106 -msgid "Add Folder to Library" -msgstr "" - -#: src/Widgets/HeaderBar.vala:129 +#: src/Widgets/HeaderBar.vala:92 msgid "Settings" msgstr "" -#: src/Widgets/HeaderBar.vala:144 +#: src/Widgets/HeaderBar.vala:107 msgid "Show Notes" msgstr "" +#: src/Widgets/Sheets.vala:179 +msgid "New Sheet" +msgstr "" + #: src/Widgets/Sheet.vala:215 msgid "Sort by" msgstr "" @@ -640,18 +649,18 @@ msgstr "" msgid "Sort by Date Descending" msgstr "" -#: src/Widgets/Sheet.vala:261 src/Widgets/QuickPreferences.vala:95 -#: src/Widgets/QuickPreferences.vala:179 src/Widgets/QuickPreferences.vala:258 +#: src/Widgets/Sheet.vala:273 src/Widgets/QuickPreferences.vala:95 +#: src/Widgets/QuickPreferences.vala:195 src/Widgets/QuickPreferences.vala:279 msgid "Preview" msgstr "" -#: src/Widgets/Sheet.vala:269 src/Widgets/Preferences.vala:482 +#: src/Widgets/Sheet.vala:281 src/Widgets/Preferences.vala:482 #: src/Widgets/PublisherPreviewWindow.vala:155 #: src/Widgets/ProjectStatistics.vala:64 msgid "Export" msgstr "" -#: src/Widgets/Sheet.vala:277 +#: src/Widgets/Sheet.vala:289 msgid "Copy File Path" msgstr "" @@ -659,11 +668,11 @@ msgstr "" #. menu_rename.activate.connect (() => { #. }); #. menu.add (menu_rename); -#: src/Widgets/Sheet.vala:293 +#: src/Widgets/Sheet.vala:305 msgid "Danger Zone" msgstr "" -#: src/Widgets/Sheet.vala:299 +#: src/Widgets/Sheet.vala:311 msgid "Move to Trash" msgstr "" @@ -675,128 +684,123 @@ msgstr "" msgid "_Keep what's in editor" msgstr "" -#: src/Widgets/Editor.vala:1263 +#: src/Widgets/Editor.vala:1278 msgid "Insert Datetime" msgstr "" -#: src/Widgets/Editor.vala:1281 +#: src/Widgets/Editor.vala:1296 msgid "Insert YAML Frontmatter" msgstr "" -#: src/Widgets/Editor.vala:1379 +#: src/Widgets/Editor.vala:1394 msgid "Insert Citation" msgstr "" -#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); -#: src/Widgets/Library.vala:73 -msgid "Library" -msgstr "" - -#: src/Widgets/Library.vala:538 +#: src/Widgets/Library.vala:539 msgid "Export Preview" msgstr "" -#: src/Widgets/Library.vala:548 +#: src/Widgets/Library.vala:549 msgid "Writing Statistics" msgstr "" -#: src/Widgets/Library.vala:561 +#: src/Widgets/Library.vala:562 msgid "Search " msgstr "" -#: src/Widgets/Library.vala:573 +#: src/Widgets/Library.vala:574 msgid "Open in File Manager" msgstr "" -#: src/Widgets/Library.vala:585 +#: src/Widgets/Library.vala:586 msgid "Create Sub-Folder" msgstr "" -#: src/Widgets/Library.vala:602 +#: src/Widgets/Library.vala:603 msgid "Hide from Library" msgstr "" -#: src/Widgets/Library.vala:626 +#: src/Widgets/Library.vala:627 msgid "Show Hidden Items" msgstr "" -#: src/Widgets/Library.vala:638 +#: src/Widgets/Library.vala:639 msgid "Set Project Icon" msgstr "" -#: src/Widgets/Library.vala:641 src/Widgets/Preferences.vala:389 +#: src/Widgets/Library.vala:642 src/Widgets/Preferences.vala:389 msgid "None" msgstr "" -#: src/Widgets/Library.vala:644 +#: src/Widgets/Library.vala:645 msgid "Folder" msgstr "" -#: src/Widgets/Library.vala:647 +#: src/Widgets/Library.vala:648 msgid "Reader" msgstr "" -#: src/Widgets/Library.vala:650 +#: src/Widgets/Library.vala:651 msgid "Love" msgstr "" -#: src/Widgets/Library.vala:653 +#: src/Widgets/Library.vala:654 msgid "Game" msgstr "" -#: src/Widgets/Library.vala:656 +#: src/Widgets/Library.vala:657 msgid "Art" msgstr "" -#: src/Widgets/Library.vala:659 +#: src/Widgets/Library.vala:660 msgid "Nature" msgstr "" -#: src/Widgets/Library.vala:662 +#: src/Widgets/Library.vala:663 msgid "Food" msgstr "" -#: src/Widgets/Library.vala:665 +#: src/Widgets/Library.vala:666 msgid "Help" msgstr "" -#: src/Widgets/Library.vala:668 +#: src/Widgets/Library.vala:669 msgid "Cool" msgstr "" -#: src/Widgets/Library.vala:671 +#: src/Widgets/Library.vala:672 msgid "Angel" msgstr "" -#: src/Widgets/Library.vala:674 +#: src/Widgets/Library.vala:675 msgid "Monkey" msgstr "" -#: src/Widgets/Library.vala:677 +#: src/Widgets/Library.vala:678 msgid "WordPress" msgstr "" -#: src/Widgets/Library.vala:680 +#: src/Widgets/Library.vala:681 msgid "Ghost" msgstr "" -#: src/Widgets/Library.vala:683 +#: src/Widgets/Library.vala:684 msgid "Write Freely" msgstr "" -#: src/Widgets/Library.vala:686 +#: src/Widgets/Library.vala:687 msgid "Trash" msgstr "" -#: src/Widgets/Library.vala:696 +#: src/Widgets/Library.vala:697 msgid "Remove from Library" msgstr "" -#: src/Widgets/Library.vala:933 +#: src/Widgets/Library.vala:934 msgid "Copy" msgstr "" -#: src/Widgets/Library.vala:935 +#: src/Widgets/Library.vala:936 msgid "Move" msgstr "" @@ -1106,8 +1110,8 @@ msgstr "" #: src/Widgets/PublisherPreviewWindow.vala:67 #: src/Widgets/PublisherPreviewWindow.vala:209 -#: src/Widgets/QuickPreferences.vala:104 src/Widgets/QuickPreferences.vala:188 -#: src/Widgets/QuickPreferences.vala:267 +#: src/Widgets/QuickPreferences.vala:109 src/Widgets/QuickPreferences.vala:204 +#: src/Widgets/QuickPreferences.vala:293 msgid "Publishing Preview" msgstr "" @@ -1196,33 +1200,33 @@ msgstr "" msgid "Grammar check is not available for your language" msgstr "" -#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:181 -#: src/Widgets/QuickPreferences.vala:260 +#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:197 +#: src/Widgets/QuickPreferences.vala:281 msgid "Launch Preview" msgstr "" -#: src/Widgets/QuickPreferences.vala:106 src/Widgets/QuickPreferences.vala:190 -#: src/Widgets/QuickPreferences.vala:269 +#: src/Widgets/QuickPreferences.vala:111 src/Widgets/QuickPreferences.vala:206 +#: src/Widgets/QuickPreferences.vala:295 msgid "Open Export Window" msgstr "" -#: src/Widgets/QuickPreferences.vala:113 src/Widgets/QuickPreferences.vala:197 -#: src/Widgets/QuickPreferences.vala:276 +#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:218 +#: src/Widgets/QuickPreferences.vala:307 msgid "Search Library" msgstr "" -#: src/Widgets/QuickPreferences.vala:115 src/Widgets/QuickPreferences.vala:199 -#: src/Widgets/QuickPreferences.vala:278 +#: src/Widgets/QuickPreferences.vala:125 src/Widgets/QuickPreferences.vala:220 +#: src/Widgets/QuickPreferences.vala:309 msgid "Open Search Window" msgstr "" -#: src/Widgets/QuickPreferences.vala:121 src/Widgets/QuickPreferences.vala:205 -#: src/Widgets/QuickPreferences.vala:284 +#: src/Widgets/QuickPreferences.vala:135 src/Widgets/QuickPreferences.vala:226 +#: src/Widgets/QuickPreferences.vala:315 msgid "Preferences" msgstr "" -#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:207 -#: src/Widgets/QuickPreferences.vala:286 +#: src/Widgets/QuickPreferences.vala:137 src/Widgets/QuickPreferences.vala:228 +#: src/Widgets/QuickPreferences.vala:317 msgid "Edit Preferences" msgstr "" diff --git a/po/cs.po b/po/cs.po index cb78534a..20d80491 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,311 +1,37 @@ msgid "" msgstr "" -"Project-Id-Version: ThiefMD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-26 11:34-0700\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: POEditor.com\n" +"Project-Id-Version: ThiefMD\n" +"Language: cs\n" -#: src/ThiefApp.vala:244 +#: src/ThiefApp.vala:309 msgid "HTML" msgstr "HTML" -#: src/ThiefApp.vala:245 +#: src/ThiefApp.vala:310 msgid "PDF" msgstr "PDF" -#: src/ThiefApp.vala:246 +#: src/ThiefApp.vala:311 msgid "MHTML" msgstr "MHTML" -#: src/ThiefApp.vala:247 +#: src/ThiefApp.vala:312 msgid "Markdown" msgstr "Markdown" -#: src/ThiefApp.vala:248 +#: src/ThiefApp.vala:313 msgid "LaTeX" msgstr "LaTeX" -#: src/ThiefApp.vala:249 +#: src/ThiefApp.vala:314 msgid "DocX" msgstr "DocX" -#: src/ThiefApp.vala:250 -msgid "Fountain" -msgstr "" - -#. Visual Settings -#. Arbitrary strings -#: src/Constants/AppSettings.vala:104 -#, c-format -msgid "" -"# Click on a sheet to get started\n" -"\n" -"First time here? Drag a folder into the library, or click on the Folder " -"icon to select a folder to add.\n" -"\n" -"## Thief Tip:\n" -"\n" -"%s" -msgstr "" -"# Začněte kliknutím na list\n" -"\n" -"Jste tu poprvé? Přetáhněte adresář do knihovny nebo kliknutím na ikonu " -"adresáře vyberte adresář, který chcete přidat.\n" -"\n" -" ## Thief Tip:\n" -"\n" -" %s" - -#: src/Constants/ThiefProperties.vala:25 -msgid "The Markdown editor worth stealing" -msgstr "" - -#: src/Constants/ThiefProperties.vala:86 -msgid "Contributors who help make ThiefMD awesome" -msgstr "" - -#: src/Constants/ThiefProperties.vala:87 -msgid "Czech Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:88 -msgid "French Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:89 -msgid "Slovak Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:90 -msgid "Swedish Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:91 -msgid "German Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:92 -msgid "Finnish Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Original Code" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 src/Constants/ThiefProperties.vala:94 -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:101 -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -#: src/Constants/ThiefProperties.vala:105 -#: src/Constants/ThiefProperties.vala:106 -#: src/Constants/ThiefProperties.vala:107 -#: src/Constants/ThiefProperties.vala:108 -msgid "Copyright" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "GNU General Public License v3.0" -msgstr "" - -#: src/Constants/ThiefProperties.vala:94 -msgid "Stolen Victory Font" -msgstr "" - -#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -msgid "SIL OPEN FONT LICENSE Version 1.1" -msgstr "" - -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -msgid "MIT License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Widgets/ThemeSelector.vala:50 -msgid "Font" -msgstr "Písmo" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Preview CSS" -msgstr "" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Mash up of Splendor and Modest" -msgstr "" - -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:108 -msgid "The MIT License (MIT)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:100 -msgid "Fountain Preview and Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:101 -msgid "Markdown Parsing" -msgstr "" - -#: src/Constants/ThiefProperties.vala:101 -msgid "BSD-style License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:102 -msgid "Syntax Highlighting" -msgstr "" - -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:106 -msgid "BSD-3-Clause License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Math Rendering" -msgstr "" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Khan Academy and other contributors." -msgstr "" - -#: src/Constants/ThiefProperties.vala:104 -msgid "XML Parsing" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "Pandoc Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "John MacFarlane and others" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "GNU General Public License v2.0" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "PDF Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "Simon Sapin and contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "Grammar Check" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "the AbiSource Community" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "GNU Lesser General Public License v2.1" -msgstr "" - -#: src/Constants/ThiefProperties.vala:108 -msgid "libwritegood-vala based on" -msgstr "" - -#: src/Constants/ThiefProperties.vala:108 -msgid "write-good: Naive linter for English prose" -msgstr "" - -#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME -#: src/Constants/ThiefProperties.vala:112 -msgid "A3 (11.7 x 16.5 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:113 -msgid "A4 (8 x 11 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:114 -msgid "A5 (5.8 x 8.3 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:115 -msgid "B5 (6.93 x 9.84 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:116 -msgid "Executive (7 x 10 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:117 -msgid "Legal (8.5 x 14 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:118 -msgid "Letter (8.5 x 11 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:121 -msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." -msgstr "" - -#: src/Constants/ThiefProperties.vala:122 -msgid "" -"No built in dark mode? Dark themes are available at https://themes.thiefmd." -"com. Add more in the Preferences (`Ctrl+,`)." -msgstr "" - -#: src/Constants/ThiefProperties.vala:123 -msgid "" -"Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and " -"click Export." -msgstr "" - -#: src/Constants/ThiefProperties.vala:124 -msgid "" -"Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." -msgstr "" - -#: src/Constants/ThiefProperties.vala:125 -msgid "" -"Ready to publish your great work? Right-click on the folder and choose " -"\"Export Preview\"" -msgstr "" - -#: src/Constants/ThiefProperties.vala:126 -msgid "Want to block out distractions? Full-screen is just an `F11` away." -msgstr "" - -#: src/Constants/ThiefProperties.vala:127 -msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." -msgstr "" - -#: src/Constants/ThiefProperties.vala:128 -msgid "" -"Working with a lot of links? Turn on Experimental Mode to make your markdown " -"more readable `Ctrl+Shift+M`." -msgstr "" - -#: src/Controllers/FileManager.vala:39 -msgid "Stealing file contents..." -msgstr "" - -#: src/Controllers/FileManager.vala:40 -msgid "This isn't plagiarism, it's a remix!" -msgstr "" - -#: src/Controllers/FileManager.vala:41 -msgid "NYT Best Seller, here we come!" -msgstr "" - +#. Supported import file extensions #: src/Controllers/FileManager.vala:43 msgid "Importing File" msgstr "Importování souboru" @@ -358,15 +84,6 @@ msgstr "MHTML soubory" msgid "LaTeX file" msgstr "Soubor LaTeX" -#: src/Controllers/Dialogs.vala:161 -msgid "Supported files" -msgstr "Podporované soubory" - -#: src/Controllers/Dialogs.vala:170 -#, c-format -msgid "%s files" -msgstr "" - #: src/Controllers/Dialogs.vala:177 msgid "All files" msgstr "Všechny soubory" @@ -395,16 +112,10 @@ msgstr "Pokud je neuložíte, změny budou navždy ztraceny." msgid "Close without saving" msgstr "Zavřít bez uložení" -#: src/Controllers/SheetManager.vala:157 src/Widgets/StatisticsBar.vala:93 +#: src/Controllers/SheetManager.vala:156 src/Widgets/StatisticsBar.vala:93 msgid "No file opened" msgstr "Žádný soubor není otevřený" -#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 -#: src/Widgets/PublisherPreviewWindow.vala:295 -#: src/Widgets/ProjectStatistics.vala:71 -msgid "Close" -msgstr "Zavřít" - #: src/Connections/WriteFreelyConnection.vala:103 #: src/Connections/WordpressConnection.vala:85 msgid "Username" @@ -412,7 +123,6 @@ msgstr "Uživatelské jméno" #: src/Connections/WriteFreelyConnection.vala:107 #: src/Connections/GhostConnection.vala:86 -#: src/Connections/WordpressConnection.vala:89 msgid "Password" msgstr "Heslo" @@ -422,43 +132,21 @@ msgstr "Heslo" msgid "Endpoint" msgstr "Koncový bod" -#: src/Connections/WriteFreelyConnection.vala:127 -msgid "New WriteFreely Connection" -msgstr "" - #: src/Connections/WriteFreelyConnection.vala:130 #: src/Connections/GhostConnection.vala:109 #: src/Connections/WordpressConnection.vala:112 msgid "_Add Account" msgstr "_Přidat účet" -#: src/Connections/WriteFreelyConnection.vala:233 -msgid "Taking your words, and letting them go... to the internet!" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:234 -msgid "Mhm... I see and I ship." -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:235 -msgid "Is this a selfie, and you're happy to see me?" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:238 -#: src/Connections/GhostConnection.vala:197 -#: src/Connections/WordpressConnection.vala:198 -msgid "Uploading images" -msgstr "Nahrávání obrázků" - #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid " Published" msgstr " publikováno" #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid "Post Published" msgstr "Příspěvek publikován" @@ -466,45 +154,11 @@ msgstr "Příspěvek publikován" msgid "E-mail" msgstr "E-mail" -#: src/Connections/GhostConnection.vala:106 -msgid "New ghost Connection" -msgstr "" - -#: src/Connections/GhostConnection.vala:192 -msgid "Your words are like Casper... Friendly!" -msgstr "" - -#: src/Connections/GhostConnection.vala:193 -msgid "I see your words, and I'm taking them to the internet!" -msgstr "" - -#: src/Connections/GhostConnection.vala:194 -msgid "Booooooooooo! (That's Ghost speak for Great Work!)" -msgstr "" - -#: src/Connections/WordpressConnection.vala:109 -msgid "New Wordpress Connection" -msgstr "" - -#: src/Connections/WordpressConnection.vala:191 -msgid "Taking it to the internet!" -msgstr "" - -#: src/Connections/WordpressConnection.vala:192 -msgid "Don't forget to share on reddit." -msgstr "" - -#: src/Connections/WordpressConnection.vala:193 -msgid "Pressing words together..." -msgstr "" - -#: src/Enrichments/Fountain.vala:32 -msgid "Characters" -msgstr "" - -#: src/Enrichments/Markdown.vala:30 -msgid "Citations" -msgstr "" +#: src/Connections/WriteFreelyConnection.vala:238 +#: src/Connections/GhostConnection.vala:197 +#: src/Connections/WordpressConnection.vala:217 +msgid "Uploading images" +msgstr "Nahrávání obrázků" #: src/Exporters/ExportDocx.vala:60 msgid "Export DocX" @@ -526,14 +180,6 @@ msgstr "Exportovat LaTeX" msgid "Export Markdown" msgstr "Exportovat Markdown" -#: src/Exporters/ExportFountain.vala:57 -msgid "Fountain files" -msgstr "" - -#: src/Exporters/ExportFountain.vala:63 -msgid "Export Fountain" -msgstr "" - #: src/Exporters/ExportMhtml.vala:62 msgid "Export MHTML" msgstr "Exportovat MHTML" @@ -542,18 +188,6 @@ msgstr "Exportovat MHTML" msgid "Export PDF" msgstr "Exportovat PDF" -#: src/Exporters/ExportPdf.vala:149 -msgid "Simply Shakespearean." -msgstr "" - -#: src/Exporters/ExportPdf.vala:150 -msgid "Hmm... that's interesting..." -msgstr "" - -#: src/Exporters/ExportPdf.vala:151 -msgid "Your writing is insightful." -msgstr "" - #: src/Exporters/ExportPdf.vala:153 src/Exporters/ExportPdf.vala:183 msgid "Working PDF Magic" msgstr "" @@ -562,13 +196,17 @@ msgstr "" msgid "Making sure your hard work looks purrfect..." msgstr "Zajišťování, aby vaše tvrdá práce vypadala perfektně..." -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:132 -#: src/Widgets/QuickPreferences.vala:216 src/Widgets/QuickPreferences.vala:295 +#: src/Exporters/ExportPdf.vala:107 +msgid "Print to File" +msgstr "Vytisknout do souboru" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:146 +#: src/Widgets/QuickPreferences.vala:237 src/Widgets/QuickPreferences.vala:326 msgid "About ThiefMD" msgstr "O aplikaci ThiefMD" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:130 -#: src/Widgets/QuickPreferences.vala:214 src/Widgets/QuickPreferences.vala:293 +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:144 +#: src/Widgets/QuickPreferences.vala:235 src/Widgets/QuickPreferences.vala:324 msgid "About" msgstr "O aplikaci" @@ -576,44 +214,28 @@ msgstr "O aplikaci" msgid "Credits" msgstr "Zásluhy" -#. website = ThiefProperties.URL; -#: src/Widgets/About.vala:94 -msgid "Feedback" -msgstr "Zpětná vazba" - -#. license_type = ThiefProperties.LICENSE_TYPE; -#: src/Widgets/About.vala:99 -msgid "This program comes with absolutely no warranty." -msgstr "Tento program je poskytován bez jakékoli záruky." - -#: src/Widgets/About.vala:100 -msgid "" -"See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General " -"Public License, version 3 or later</a> for details." -msgstr "" -"Pro podrobnosti se podívejte na <a href='https://www.gnu.org/licenses/" -"gpl-3.0.html'>GNU General Public License, verze 3 nebo novější</a>." +#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 +#: src/Widgets/PublisherPreviewWindow.vala:295 +#: src/Widgets/ProjectStatistics.vala:71 +msgid "Close" +msgstr "Zavřít" -#: src/Widgets/HeaderBar.vala:86 +#: src/Widgets/Sheets.vala:179 msgid "New Sheet" msgstr "Nový list" -#: src/Widgets/HeaderBar.vala:98 +#: src/Widgets/HeaderBar.vala:78 msgid "Change View" msgstr "Změnit zobrazení" -#: src/Widgets/HeaderBar.vala:106 +#: src/ThiefApp.vala:186 msgid "Add Folder to Library" msgstr "Přidat adresář do knihovny" -#: src/Widgets/HeaderBar.vala:129 +#: src/Widgets/HeaderBar.vala:92 msgid "Settings" msgstr "Nastavení" -#: src/Widgets/HeaderBar.vala:144 -msgid "Show Notes" -msgstr "" - #: src/Widgets/Sheet.vala:215 msgid "Sort by" msgstr "Seřadit podle" @@ -642,30 +264,26 @@ msgstr "Seřadit vzestupně podle data" msgid "Sort by Date Descending" msgstr "Seřadit sestupně podle data" -#: src/Widgets/Sheet.vala:261 src/Widgets/QuickPreferences.vala:95 -#: src/Widgets/QuickPreferences.vala:179 src/Widgets/QuickPreferences.vala:258 +#: src/Widgets/Sheet.vala:273 src/Widgets/QuickPreferences.vala:95 +#: src/Widgets/QuickPreferences.vala:195 src/Widgets/QuickPreferences.vala:279 msgid "Preview" msgstr "Náhled" -#: src/Widgets/Sheet.vala:269 src/Widgets/Preferences.vala:482 +#: src/Widgets/Sheet.vala:281 src/Widgets/Preferences.vala:482 #: src/Widgets/PublisherPreviewWindow.vala:155 #: src/Widgets/ProjectStatistics.vala:64 msgid "Export" msgstr "Exportovat" -#: src/Widgets/Sheet.vala:277 -msgid "Copy File Path" -msgstr "" - #. Gtk.MenuItem menu_rename = new Gtk.MenuItem.with_label (_("Rename File")); #. menu_rename.activate.connect (() => { #. }); #. menu.add (menu_rename); -#: src/Widgets/Sheet.vala:293 +#: src/Widgets/Sheet.vala:305 msgid "Danger Zone" msgstr "Nebezpečná zóna" -#: src/Widgets/Sheet.vala:299 +#: src/Widgets/Sheet.vala:311 msgid "Move to Trash" msgstr "Přesunout do koše" @@ -677,128 +295,47 @@ msgstr "_Načíst z disku" msgid "_Keep what's in editor" msgstr "_Ponechat, co je v editoru" -#: src/Widgets/Editor.vala:1263 +#: src/Widgets/Editor.vala:1278 msgid "Insert Datetime" msgstr "Vložit datum a čas" -#: src/Widgets/Editor.vala:1281 +#: src/Widgets/Editor.vala:1296 msgid "Insert YAML Frontmatter" msgstr "Vložit YAML hlavičku" -#: src/Widgets/Editor.vala:1379 -msgid "Insert Citation" -msgstr "" - -#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); -#: src/Widgets/Library.vala:73 -msgid "Library" -msgstr "knihovna" - -#: src/Widgets/Library.vala:538 +#: src/Widgets/Library.vala:539 msgid "Export Preview" msgstr "Vyexportovat náhled" -#: src/Widgets/Library.vala:548 +#: src/Widgets/Library.vala:549 msgid "Writing Statistics" msgstr "Statistiky psaní" -#: src/Widgets/Library.vala:561 +#: src/Widgets/Library.vala:562 msgid "Search " msgstr "Hledat " -#: src/Widgets/Library.vala:573 -msgid "Open in File Manager" -msgstr "" - -#: src/Widgets/Library.vala:585 +#: src/Widgets/Library.vala:586 msgid "Create Sub-Folder" msgstr "Vytvořit podadresář" -#: src/Widgets/Library.vala:602 +#: src/Widgets/Library.vala:603 msgid "Hide from Library" msgstr "Skrýt z knihovny" -#: src/Widgets/Library.vala:626 +#: src/Widgets/Library.vala:627 msgid "Show Hidden Items" msgstr "Ukázat skryté soubory" -#: src/Widgets/Library.vala:638 -msgid "Set Project Icon" -msgstr "" - -#: src/Widgets/Library.vala:641 src/Widgets/Preferences.vala:389 -msgid "None" -msgstr "Žádný" - -#: src/Widgets/Library.vala:644 -msgid "Folder" -msgstr "" - -#: src/Widgets/Library.vala:647 -msgid "Reader" -msgstr "" - -#: src/Widgets/Library.vala:650 -msgid "Love" -msgstr "" - -#: src/Widgets/Library.vala:653 -msgid "Game" -msgstr "" - -#: src/Widgets/Library.vala:656 -msgid "Art" -msgstr "" - -#: src/Widgets/Library.vala:659 -msgid "Nature" -msgstr "" - -#: src/Widgets/Library.vala:662 -msgid "Food" -msgstr "" - -#: src/Widgets/Library.vala:665 -msgid "Help" -msgstr "" - -#: src/Widgets/Library.vala:668 -msgid "Cool" -msgstr "" - -#: src/Widgets/Library.vala:671 -msgid "Angel" -msgstr "" - -#: src/Widgets/Library.vala:674 -msgid "Monkey" -msgstr "" - -#: src/Widgets/Library.vala:677 -msgid "WordPress" -msgstr "" - -#: src/Widgets/Library.vala:680 -msgid "Ghost" -msgstr "" - -#: src/Widgets/Library.vala:683 -msgid "Write Freely" -msgstr "" - -#: src/Widgets/Library.vala:686 -msgid "Trash" -msgstr "" - -#: src/Widgets/Library.vala:696 +#: src/Widgets/Library.vala:697 msgid "Remove from Library" msgstr "Odstranit z knihovny" -#: src/Widgets/Library.vala:933 +#: src/Widgets/Library.vala:934 msgid "Copy" msgstr "Kopírovat" -#: src/Widgets/Library.vala:935 +#: src/Widgets/Library.vala:936 msgid "Move" msgstr "Přesunout" @@ -818,10 +355,6 @@ msgstr "Název listu" msgid "Create" msgstr "Vytvořit" -#: src/Widgets/NewSheet.vala:41 -msgid "Import" -msgstr "" - #: src/Widgets/Preferences.vala:50 msgid "Current Connections" msgstr "Aktuální připojení" @@ -842,40 +375,10 @@ msgstr "Vyberte váš blogovací software." msgid " WriteFreely" msgstr "" -#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 -#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 -#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 -msgid "Connection Error" -msgstr "" - #: src/Widgets/Preferences.vala:91 msgid " ghost" msgstr "" -#: src/Widgets/Preferences.vala:125 -msgid " WordPress" -msgstr "" - -#: src/Widgets/Preferences.vala:159 -msgid " Medium" -msgstr "" - -#: src/Widgets/Preferences.vala:193 -msgid " Forem" -msgstr "" - -#: src/Widgets/Preferences.vala:227 -msgid " Hashnode" -msgstr "" - -#: src/Widgets/Preferences.vala:279 -msgid "Connections" -msgstr "" - -#: src/Widgets/Preferences.vala:340 -msgid "Remove " -msgstr "" - #: src/Widgets/Preferences.vala:343 msgid "_Remove" msgstr "_Odstranit" @@ -884,22 +387,14 @@ msgstr "_Odstranit" msgid "_Keep" msgstr "_Ponechat" -#: src/Widgets/Preferences.vala:373 -msgid "Display" -msgstr "" - -#: src/Widgets/Preferences.vala:377 -msgid "Display Options" -msgstr "" - -#: src/Widgets/Preferences.vala:378 -msgid "Make ThiefMD feel like home." -msgstr "" - #: src/Widgets/Preferences.vala:384 msgid "Focus" msgstr "Zaměření" +#: src/Widgets/Library.vala:642 src/Widgets/Preferences.vala:389 +msgid "None" +msgstr "Žádný" + #: src/Widgets/Preferences.vala:390 msgid "Paragraph" msgstr "Odstavec" @@ -912,33 +407,17 @@ msgstr "Věta" msgid "Word" msgstr "Slovo" -#: src/Widgets/Preferences.vala:431 -msgid "Number of Lines to Preview in Sheets View" -msgstr "" - #: src/Widgets/Preferences.vala:440 msgid "Add New Theme" msgstr "Přidat nové téma" -#: src/Widgets/Preferences.vala:487 -msgid "Compiling Options" -msgstr "" - -#: src/Widgets/Preferences.vala:488 -msgid "Adjust how Markdown files are compiled together." -msgstr "" - #: src/Widgets/Preferences.vala:496 msgid "First Markdown File includes Author Metadata" msgstr "První soubor Markdown obsahuje autorská metadata" #: src/Widgets/Preferences.vala:498 -msgid "" -"First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>Author metadata</a>" -msgstr "" -"První soubor Markdown obsahuje <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>autorská metadata</a>" +msgid "First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Author metadata</a>" +msgstr "První soubor Markdown obsahuje <a href='https://pandoc.org/MANUAL.html#epub-metadata'>autorská metadata</a>" #: src/Widgets/Preferences.vala:514 msgid "Resolve full paths to resources" @@ -956,14 +435,6 @@ msgstr "Zahrnout titulek YAML jako nadpis" msgid "Include YAML title as H1 Heading" msgstr "Zahrnout titulek YAML jako nadpis H1" -#: src/Widgets/Preferences.vala:543 -msgid "Page Setup" -msgstr "" - -#: src/Widgets/Preferences.vala:544 -msgid "Configure PDF export options." -msgstr "" - #: src/Widgets/Preferences.vala:552 msgid "Page Break between Folders" msgstr "Zalomení stránky mezi adresáři" @@ -988,41 +459,13 @@ msgstr "Postranní okraje stránky PDF v palcích" msgid "Top & Bottom margins in PDF in inches" msgstr "Horní a dolní okraje stránky PDF v palcích" -#: src/Widgets/Preferences.vala:641 -msgid "PDF CSS" -msgstr "" +#: src/Widgets/Preferences.vala:657 +msgid "Add Export Style" +msgstr "Přidat styl exportu" -#: src/Widgets/Preferences.vala:642 -msgid "Choose CSS Style for PDF Export." -msgstr "" - -#: src/Widgets/Preferences.vala:650 -msgid "ePub & HTML CSS" -msgstr "" - -#: src/Widgets/Preferences.vala:651 -msgid "Choose CSS Style to use for ePub and HTML Export." -msgstr "" - -#: src/Widgets/Preferences.vala:657 -msgid "Add Export Style" -msgstr "Přidat styl exportu" - -#: src/Widgets/Preferences.vala:680 -msgid "Editor" -msgstr "Editor" - -#: src/Widgets/Preferences.vala:684 -msgid "Editor Settings" -msgstr "" - -#: src/Widgets/Preferences.vala:685 -msgid "Modify the ThiefMD environment." -msgstr "" - -#: src/Widgets/Preferences.vala:693 -msgid "Enable spellcheck" -msgstr "Povolit kontrolu pravopisu" +#: src/Widgets/Preferences.vala:693 +msgid "Enable spellcheck" +msgstr "Povolit kontrolu pravopisu" #: src/Widgets/Preferences.vala:695 msgid "Check document spelling" @@ -1052,22 +495,6 @@ msgstr "Přepnout statistiky psaní" msgid "Show writing statistics" msgstr "Ukázat statistiky psaní" -#: src/Widgets/Preferences.vala:765 -msgid "Disable application tips" -msgstr "" - -#: src/Widgets/Preferences.vala:766 -msgid "Start with new empty sheet on launch" -msgstr "" - -#: src/Widgets/Preferences.vala:779 -msgid "ThiefMD Settings" -msgstr "" - -#: src/Widgets/Preferences.vala:780 -msgid "Modify the ThiefMD appearance." -msgstr "" - #: src/Widgets/Preferences.vala:790 msgid "Toggle interface theming" msgstr "Přepnout používání témat" @@ -1100,18 +527,10 @@ msgstr "Přepnout řazení knihovny" msgid "Keep library order" msgstr "Ponechat seřazení knihovny" -#: src/Widgets/Preferences.vala:858 -msgid "Toggle experimental features" -msgstr "Přepnout experimentální funkce" - -#: src/Widgets/Preferences.vala:860 -msgid "Enable experimental features" -msgstr "Povolit experimentální funkce" - #: src/Widgets/PublisherPreviewWindow.vala:67 #: src/Widgets/PublisherPreviewWindow.vala:209 -#: src/Widgets/QuickPreferences.vala:104 src/Widgets/QuickPreferences.vala:188 -#: src/Widgets/QuickPreferences.vala:267 +#: src/Widgets/QuickPreferences.vala:109 src/Widgets/QuickPreferences.vala:204 +#: src/Widgets/QuickPreferences.vala:293 msgid "Publishing Preview" msgstr "Náhled publikace" @@ -1136,14 +555,11 @@ msgid "words" msgstr "slova" #: src/Widgets/ProjectStatistics.vala:126 -#, c-format -msgid "" -"<b>Reading Time:</b>\n" +msgid "<b>Reading Time:</b>\n" "%d %s\n" "%d %s\n" "%d %s" -msgstr "" -"<b>Čas čtení:</b>\n" +msgstr "<b>Čas čtení:</b>\n" "%d %s\n" "%d %s\n" "%d %s" @@ -1192,75 +608,41 @@ msgstr "Write Good" msgid "Toggle Write Good" msgstr "Přepnout Write Good" -#: src/Widgets/QuickPreferences.vala:71 -msgid "Check Grammar" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:74 -msgid "Toggle Grammar Checking" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:87 -msgid "Grammar check is not available for your language" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:181 -#: src/Widgets/QuickPreferences.vala:260 +#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:197 +#: src/Widgets/QuickPreferences.vala:281 msgid "Launch Preview" msgstr "Otevřít náhled" -#: src/Widgets/QuickPreferences.vala:106 src/Widgets/QuickPreferences.vala:190 -#: src/Widgets/QuickPreferences.vala:269 -msgid "Open Export Window" -msgstr "Otevřít okno pro export" - -#: src/Widgets/QuickPreferences.vala:113 src/Widgets/QuickPreferences.vala:197 -#: src/Widgets/QuickPreferences.vala:276 -msgid "Search Library" -msgstr "prohledávání knihovny" - -#: src/Widgets/QuickPreferences.vala:115 src/Widgets/QuickPreferences.vala:199 -#: src/Widgets/QuickPreferences.vala:278 -msgid "Open Search Window" -msgstr "Otevřít vyhledávací okno" - -#: src/Widgets/QuickPreferences.vala:121 src/Widgets/QuickPreferences.vala:205 -#: src/Widgets/QuickPreferences.vala:284 +#: src/Widgets/QuickPreferences.vala:135 src/Widgets/QuickPreferences.vala:226 +#: src/Widgets/QuickPreferences.vala:315 msgid "Preferences" msgstr "Předvolby" -#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:207 -#: src/Widgets/QuickPreferences.vala:286 +#: src/Widgets/QuickPreferences.vala:137 src/Widgets/QuickPreferences.vala:228 +#: src/Widgets/QuickPreferences.vala:317 msgid "Edit Preferences" msgstr "Upravit předvolby" -#: src/Widgets/ThemeSelector.vala:55 -msgid "Spacing" -msgstr "rozložení" +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Widgets/ThemeSelector.vala:50 +msgid "Font" +msgstr "Písmo" #: src/Widgets/ThemeSelector.vala:142 msgid "Font Selector" msgstr "Výběr písma" -#: src/Widgets/ThemeSelector.vala:326 -msgid "Download" -msgstr "" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "more themes" -msgstr "" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "Stored in" -msgstr "" +#: src/Widgets/ThemeSelector.vala:320 +msgid "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" +"<small>Stored in <a href='file://" +msgstr "Stáhnout <a href='https://themes.thiefmd.com/themes/'>více témat</a>.\n" +"<small>Uloženo v <a href='file://" #: src/Widgets/SearchBar.vala:110 -#, c-format msgid "(%d occurences)" msgstr "(%d výskytů)" #: src/Widgets/StatisticsBar.vala:100 -#, c-format msgid "%d %s %d %s and %d %s reading time." msgstr "" @@ -1285,7 +667,6 @@ msgid "seconds" msgstr "sekundy" #: src/Widgets/StatisticsBar.vala:106 -#, c-format msgid "%s : %d words." msgstr "%s : %d slov." @@ -1293,9 +674,9 @@ msgstr "%s : %d slov." msgid "Library Search" msgstr "Hledání v knihovně" -#: src/Widgets/SearchWindow.vala:421 -msgid "Search" -msgstr "hledat" +#: src/Widgets/SearchWindow.vala:422 +msgid " Search" +msgstr " hledání" #: src/Widgets/SearchWindow.vala:445 msgid "Monitor for Library changes" @@ -1309,15 +690,611 @@ msgstr "<b>Krademe obsahu souboru...</b>" msgid "Heading" msgstr "Nadpis" -#~ msgid "Print to File" -#~ msgstr "Vytisknout do souboru" +#. Font settings +#. Arbitrary strings +#: src/Constants/AppSettings.vala:104 +msgid "# Click on a sheet to get started\n" +"\n" +"First time here? Drag a folder into the library, or click on the Folder icon to select a folder to add.\n" +"\n" +"## Thief Tip:\n" +"\n" +"%s" +msgstr "# Začněte kliknutím na list\n" +"\n" +"Jste tu poprvé? Přetáhněte adresář do knihovny nebo kliknutím na ikonu adresáře vyberte adresář, který chcete přidat.\n" +"\n" +" ## Thief Tip:\n" +"\n" +" %s" + +#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); +#: src/ThiefApp.vala:182 +msgid "Library" +msgstr "knihovna" + +#: src/Widgets/Preferences.vala:680 +msgid "Editor" +msgstr "Editor" + +#: src/Widgets/SearchWindow.vala:421 +msgid "Search" +msgstr "hledat" + +#: src/Widgets/QuickPreferences.vala:111 src/Widgets/QuickPreferences.vala:206 +#: src/Widgets/QuickPreferences.vala:295 +msgid "Open Export Window" +msgstr "Otevřít okno pro export" + +#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:218 +#: src/Widgets/QuickPreferences.vala:307 +msgid "Search Library" +msgstr "prohledávání knihovny" + +#: src/Widgets/QuickPreferences.vala:125 src/Widgets/QuickPreferences.vala:220 +#: src/Widgets/QuickPreferences.vala:309 +msgid "Open Search Window" +msgstr "Otevřít vyhledávací okno" + +#: src/Widgets/ThemeSelector.vala:55 +msgid "Spacing" +msgstr "rozložení" + +#: src/Widgets/Preferences.vala:858 +msgid "Toggle experimental features" +msgstr "Přepnout experimentální funkce" + +#: src/Widgets/Preferences.vala:860 +msgid "Enable experimental features" +msgstr "Povolit experimentální funkce" + +#: src/Controllers/Dialogs.vala:161 +msgid "Supported files" +msgstr "Podporované soubory" + +#: src/Controllers/Dialogs.vala:170 +msgid "%s files" +msgstr "" + +#: src/Widgets/Library.vala:574 +msgid "Open in File Manager" +msgstr "" + +#: src/Widgets/NewSheet.vala:41 +msgid "Import" +msgstr "" + +#: src/Widgets/Preferences.vala:125 +msgid " WordPress" +msgstr "" + +#: src/Constants/ThiefProperties.vala:25 +msgid "The Markdown editor worth stealing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:87 +msgid "Contributors who help make ThiefMD awesome" +msgstr "" + +#: src/Constants/ThiefProperties.vala:89 +msgid "French Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:90 +msgid "Slovak Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:91 +msgid "Swedish Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Original Code" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:95 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 +msgid "Copyright" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "GNU General Public License v3.0" +msgstr "" + +#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +msgid "SIL OPEN FONT LICENSE Version 1.1" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Preview CSS" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Mash up of Splendor and Modest" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:109 +msgid "The MIT License (MIT)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:102 +msgid "Markdown Parsing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:102 +msgid "BSD-style License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:103 +msgid "Syntax Highlighting" +msgstr "" + +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:107 +msgid "BSD-3-Clause License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Math Rendering" +msgstr "" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Khan Academy and other contributors." +msgstr "" + +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +msgid "MIT License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:105 +msgid "XML Parsing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "Pandoc Export" +msgstr "" -#~ msgid "" -#~ "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" -#~ "<small>Stored in <a href='file://" -#~ msgstr "" -#~ "Stáhnout <a href='https://themes.thiefmd.com/themes/'>více témat</a>.\n" -#~ "<small>Uloženo v <a href='file://" +#: src/Constants/ThiefProperties.vala:106 +msgid "John MacFarlane and others" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "GNU General Public License v2.0" +msgstr "" + +#: src/Constants/ThiefProperties.vala:109 +msgid "libwritegood-vala based on" +msgstr "" + +#: src/Constants/ThiefProperties.vala:109 +msgid "write-good: Naive linter for English prose" +msgstr "" + +#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME +#: src/Constants/ThiefProperties.vala:113 +msgid "A3 (11.7 x 16.5 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:114 +msgid "A4 (8 x 11 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:115 +msgid "A5 (5.8 x 8.3 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:116 +msgid "B5 (6.93 x 9.84 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:117 +msgid "Executive (7 x 10 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:118 +msgid "Legal (8.5 x 14 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:119 +msgid "Letter (8.5 x 11 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:122 +msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." +msgstr "" + +#: src/Constants/ThiefProperties.vala:123 +msgid "No built in dark mode? Dark themes are available at https://themes.thiefmd.com. Add more in the Preferences (`Ctrl+,`)." +msgstr "" + +#: src/Constants/ThiefProperties.vala:124 +msgid "Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and click Export." +msgstr "" + +#: src/Constants/ThiefProperties.vala:125 +msgid "Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." +msgstr "" + +#: src/Constants/ThiefProperties.vala:126 +msgid "Ready to publish your great work? Right-click on the folder and choose \"Export Preview\"" +msgstr "" + +#: src/Constants/ThiefProperties.vala:127 +msgid "Want to block out distractions? Full-screen is just an `F11` away." +msgstr "" + +#: src/Constants/ThiefProperties.vala:128 +msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." +msgstr "" + +#: src/Constants/ThiefProperties.vala:129 +msgid "Working with a lot of links? Turn on Experimental Mode to make your markdown more readable `Ctrl+Shift+M`." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:127 +msgid "New WriteFreely Connection" +msgstr "" + +#: src/Connections/GhostConnection.vala:106 +msgid "New ghost Connection" +msgstr "" + +#: src/Connections/WordpressConnection.vala:109 +msgid "New Wordpress Connection" +msgstr "" + +#. website = ThiefProperties.URL; +#: src/Widgets/About.vala:94 +msgid "Feedback" +msgstr "Zpětná vazba" + +#. license_type = ThiefProperties.LICENSE_TYPE; +#: src/Widgets/About.vala:99 +msgid "This program comes with absolutely no warranty." +msgstr "Tento program je poskytován bez jakékoli záruky." + +#: src/Widgets/About.vala:100 +msgid "See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, version 3 or later</a> for details." +msgstr "Pro podrobnosti se podívejte na <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, verze 3 nebo novější</a>." + +#: src/Widgets/Preferences.vala:279 +msgid "Connections" +msgstr "" + +#: src/Widgets/Preferences.vala:340 +msgid "Remove " +msgstr "" + +#: src/Widgets/Preferences.vala:373 +msgid "Display" +msgstr "" + +#: src/Widgets/Preferences.vala:377 +msgid "Display Options" +msgstr "" + +#: src/Widgets/Preferences.vala:378 +msgid "Make ThiefMD feel like home." +msgstr "" + +#: src/Widgets/Preferences.vala:487 +msgid "Compiling Options" +msgstr "" + +#: src/Widgets/Preferences.vala:488 +msgid "Adjust how Markdown files are compiled together." +msgstr "" + +#: src/Widgets/Preferences.vala:543 +msgid "Page Setup" +msgstr "" + +#: src/Widgets/Preferences.vala:544 +msgid "Configure PDF export options." +msgstr "" + +#: src/Widgets/Preferences.vala:641 +msgid "PDF CSS" +msgstr "" + +#: src/Widgets/Preferences.vala:642 +msgid "Choose CSS Style for PDF Export." +msgstr "" + +#: src/Widgets/Preferences.vala:650 +msgid "ePub & HTML CSS" +msgstr "" + +#: src/Widgets/Preferences.vala:651 +msgid "Choose CSS Style to use for ePub and HTML Export." +msgstr "" + +#: src/Widgets/Preferences.vala:684 +msgid "Editor Settings" +msgstr "" + +#: src/Widgets/Preferences.vala:685 +msgid "Modify the ThiefMD environment." +msgstr "" + +#: src/Widgets/Preferences.vala:779 +msgid "ThiefMD Settings" +msgstr "" + +#: src/Widgets/Preferences.vala:780 +msgid "Modify the ThiefMD appearance." +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Download" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "more themes" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Stored in" +msgstr "" + +#: src/ThiefApp.vala:315 +msgid "Fountain" +msgstr "" + +#: src/Constants/ThiefProperties.vala:101 +msgid "Fountain Preview and Export" +msgstr "" + +#: src/Exporters/ExportFountain.vala:57 +msgid "Fountain files" +msgstr "" + +#: src/Exporters/ExportFountain.vala:63 +msgid "Export Fountain" +msgstr "" + +#: src/Widgets/HeaderBar.vala:107 +msgid "Show Notes" +msgstr "" + +#: src/Widgets/Sheet.vala:289 +msgid "Copy File Path" +msgstr "" + +#: src/Widgets/Editor.vala:1394 +msgid "Insert Citation" +msgstr "" + +#: src/Widgets/Library.vala:639 +msgid "Set Project Icon" +msgstr "" + +#: src/Widgets/Library.vala:645 +msgid "Folder" +msgstr "" + +#: src/Widgets/Library.vala:648 +msgid "Reader" +msgstr "" + +#: src/Widgets/Library.vala:651 +msgid "Love" +msgstr "" + +#: src/Widgets/Library.vala:654 +msgid "Game" +msgstr "" + +#: src/Widgets/Library.vala:657 +msgid "Art" +msgstr "" + +#: src/Widgets/Library.vala:660 +msgid "Nature" +msgstr "" + +#: src/Widgets/Library.vala:663 +msgid "Food" +msgstr "" + +#: src/Widgets/Library.vala:666 +msgid "Help" +msgstr "" + +#: src/Widgets/Library.vala:669 +msgid "Cool" +msgstr "" + +#: src/Widgets/Library.vala:672 +msgid "Angel" +msgstr "" + +#: src/Widgets/Library.vala:675 +msgid "Monkey" +msgstr "" + +#: src/Widgets/Library.vala:678 +msgid "WordPress" +msgstr "" + +#: src/Widgets/Library.vala:681 +msgid "Ghost" +msgstr "" + +#: src/Widgets/Library.vala:684 +msgid "Write Freely" +msgstr "" + +#: src/Widgets/Library.vala:687 +msgid "Trash" +msgstr "" + +#: src/Widgets/Preferences.vala:431 +msgid "Number of Lines to Preview in Sheets View" +msgstr "" + +#: src/Widgets/Preferences.vala:765 +msgid "Disable application tips" +msgstr "" + +#: src/Widgets/Preferences.vala:766 +msgid "Start with new empty sheet on launch" +msgstr "" + +#: src/Enrichments/Fountain.vala:32 +msgid "Characters" +msgstr "" + +#: src/Enrichments/Markdown.vala:30 +msgid "Citations" +msgstr "" + +#: src/Constants/ThiefProperties.vala:95 +msgid "Stolen Victory Font" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "Grammar Check" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "the AbiSource Community" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "GNU Lesser General Public License v2.1" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:71 +msgid "Check Grammar" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:74 +msgid "Toggle Grammar Checking" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:87 +msgid "Grammar check is not available for your language" +msgstr "" + +#: src/Constants/ThiefProperties.vala:88 +msgid "Czech Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "PDF Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "Simon Sapin and contributors" +msgstr "" + +#: src/Controllers/FileManager.vala:39 +msgid "Stealing file contents..." +msgstr "" + +#: src/Controllers/FileManager.vala:40 +msgid "This isn't plagiarism, it's a remix!" +msgstr "" + +#: src/Controllers/FileManager.vala:41 +msgid "NYT Best Seller, here we come!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:233 +msgid "Taking your words, and letting them go... to the internet!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:234 +msgid "Mhm... I see and I ship." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:235 +msgid "Is this a selfie, and you're happy to see me?" +msgstr "" + +#: src/Connections/GhostConnection.vala:192 +msgid "Your words are like Casper... Friendly!" +msgstr "" + +#: src/Connections/GhostConnection.vala:193 +msgid "I see your words, and I'm taking them to the internet!" +msgstr "" + +#: src/Connections/GhostConnection.vala:194 +msgid "Booooooooooo! (That's Ghost speak for Great Work!)" +msgstr "" + +#: src/Connections/WordpressConnection.vala:192 +msgid "Taking it to the internet!" +msgstr "" + +#: src/Connections/WordpressConnection.vala:193 +msgid "Don't forget to share on reddit." +msgstr "" + +#: src/Connections/WordpressConnection.vala:194 +msgid "Pressing words together..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:149 +msgid "Simply Shakespearean." +msgstr "" + +#: src/Exporters/ExportPdf.vala:150 +msgid "Hmm... that's interesting..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:151 +msgid "Your writing is insightful." +msgstr "" + +#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 +#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 +#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 +msgid "Connection Error" +msgstr "" + +#: src/Widgets/Preferences.vala:159 +msgid " Medium" +msgstr "" + +#: src/Widgets/Preferences.vala:193 +msgid " Forem" +msgstr "" + +#: src/Widgets/Preferences.vala:227 +msgid " Hashnode" +msgstr "" + +#: src/Constants/ThiefProperties.vala:92 +msgid "German Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:93 +msgid "Finnish Translation Contributors" +msgstr "" + +#: src/Connections/WordpressConnection.vala:89 +msgid "Application Password" +msgstr "" -#~ msgid " Search" -#~ msgstr " hledání" diff --git a/po/de.po b/po/de.po index 951e982f..d05bb113 100644 --- a/po/de.po +++ b/po/de.po @@ -1,327 +1,37 @@ msgid "" msgstr "" -"Project-Id-Version: ThiefMD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-26 11:34-0700\n" -"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: POEditor.com\n" +"Project-Id-Version: ThiefMD\n" +"Language: de\n" -#: src/ThiefApp.vala:244 +#: src/ThiefApp.vala:309 msgid "HTML" msgstr "HTML" -#: src/ThiefApp.vala:245 +#: src/ThiefApp.vala:310 msgid "PDF" msgstr "PDF" -#: src/ThiefApp.vala:246 +#: src/ThiefApp.vala:311 msgid "MHTML" msgstr "MHTML" -#: src/ThiefApp.vala:247 +#: src/ThiefApp.vala:312 msgid "Markdown" msgstr "Markdown" -#: src/ThiefApp.vala:248 +#: src/ThiefApp.vala:313 msgid "LaTeX" msgstr "LaTeX" -#: src/ThiefApp.vala:249 +#: src/ThiefApp.vala:314 msgid "DocX" msgstr "DocX" -#: src/ThiefApp.vala:250 -#, fuzzy -msgid "Fountain" -msgstr "Fountain" - -#. Visual Settings -#. Arbitrary strings -#: src/Constants/AppSettings.vala:104 -#, c-format -msgid "" -"# Click on a sheet to get started\n" -"\n" -"First time here? Drag a folder into the library, or click on the Folder " -"icon to select a folder to add.\n" -"\n" -"## Thief Tip:\n" -"\n" -"%s" -msgstr "" -"# Wähle eine Seite um loszulegen\n" -"\n" -"Das erste mal hier? Schiebe einen Ordner in die Bibliothek auf der linken " -"Seite oder öffne einen über das Ordnersymbol.\n" -"\n" -"## Kleiner Tipp:\n" -"\n" -"%s" - -#: src/Constants/ThiefProperties.vala:25 -msgid "The Markdown editor worth stealing" -msgstr "Der Markdown-Editor zum Stehlen" - -#: src/Constants/ThiefProperties.vala:86 -msgid "Contributors who help make ThiefMD awesome" -msgstr "Mitwirkende, welche ThiefMD großartig machen" - -#: src/Constants/ThiefProperties.vala:87 -msgid "Czech Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:88 -msgid "French Translation Contributors" -msgstr "Französische Übersetzung" - -#: src/Constants/ThiefProperties.vala:89 -msgid "Slovak Translation Contributors" -msgstr "Slovakische Übersetzung" - -#: src/Constants/ThiefProperties.vala:90 -msgid "Swedish Translation Contributors" -msgstr "Schwedische Übersetzung" - -#: src/Constants/ThiefProperties.vala:91 -#, fuzzy -msgid "German Translation Contributors" -msgstr "Französische Übersetzung" - -#: src/Constants/ThiefProperties.vala:92 -#, fuzzy -msgid "Finnish Translation Contributors" -msgstr "Französische Übersetzung" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Original Code" -msgstr "Original Code" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" -msgstr "Basierend auf <a href='https://github.com/lainsce/quilter'>Quilter</a>" - -#: src/Constants/ThiefProperties.vala:93 src/Constants/ThiefProperties.vala:94 -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:101 -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -#: src/Constants/ThiefProperties.vala:105 -#: src/Constants/ThiefProperties.vala:106 -#: src/Constants/ThiefProperties.vala:107 -#: src/Constants/ThiefProperties.vala:108 -msgid "Copyright" -msgstr "Urheberrecht" - -#: src/Constants/ThiefProperties.vala:93 -msgid "GNU General Public License v3.0" -msgstr "GNU General Public License v3.0" - -#: src/Constants/ThiefProperties.vala:94 -msgid "Stolen Victory Font" -msgstr "Stolen Victory Schriftart" - -#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -msgid "SIL OPEN FONT LICENSE Version 1.1" -msgstr "SIL OPEN FONT LICENSE Version 1.1" - -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -msgid "MIT License" -msgstr "MIT-Lizenz" - -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Widgets/ThemeSelector.vala:50 -msgid "Font" -msgstr "Schriftart" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Preview CSS" -msgstr "CSS Vorschau" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Mash up of Splendor and Modest" -msgstr "Eine Mischung aus Splendor und Modest" - -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:108 -msgid "The MIT License (MIT)" -msgstr "Die MIT Lizenz (MIT)" - -#: src/Constants/ThiefProperties.vala:100 -#, fuzzy -msgid "Fountain Preview and Export" -msgstr "Fountain Vorschau und Export" - -#: src/Constants/ThiefProperties.vala:101 -msgid "Markdown Parsing" -msgstr "Markdown-Parsing" - -#: src/Constants/ThiefProperties.vala:101 -msgid "BSD-style License" -msgstr "BSD-ähnliche Lizenz" - -#: src/Constants/ThiefProperties.vala:102 -msgid "Syntax Highlighting" -msgstr "Syntax Highlighting" - -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:106 -msgid "BSD-3-Clause License" -msgstr "BSD-3-Clause License" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Math Rendering" -msgstr "Mathematik-Rendering" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Khan Academy and other contributors." -msgstr "Khan Academy und andere Mitwirkende." - -#: src/Constants/ThiefProperties.vala:104 -msgid "XML Parsing" -msgstr "XML-Parsing" - -#: src/Constants/ThiefProperties.vala:105 -msgid "Pandoc Export" -msgstr "Pandoc Export" - -#: src/Constants/ThiefProperties.vala:105 -msgid "John MacFarlane and others" -msgstr "John MacFarlane und andere" - -#: src/Constants/ThiefProperties.vala:105 -msgid "GNU General Public License v2.0" -msgstr "GNU General Public License v2.0" - -#: src/Constants/ThiefProperties.vala:106 -msgid "PDF Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "Simon Sapin and contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "Grammar Check" -msgstr "Gramatikprüfung" - -#: src/Constants/ThiefProperties.vala:107 -msgid "the AbiSource Community" -msgstr "die AbiSource Gemeinschaft" - -#: src/Constants/ThiefProperties.vala:107 -msgid "GNU Lesser General Public License v2.1" -msgstr "GNU Lesser General Public License v2.1" - -#: src/Constants/ThiefProperties.vala:108 -msgid "libwritegood-vala based on" -msgstr "ibwritegood-vala basiert auf" - -#: src/Constants/ThiefProperties.vala:108 -#, fuzzy -msgid "write-good: Naive linter for English prose" -msgstr "write-good: Hilfe bei englischer Prosa" - -#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME -#: src/Constants/ThiefProperties.vala:112 -msgid "A3 (11.7 x 16.5 inches)" -msgstr "A3 (29,7 x 42 cm)" - -#: src/Constants/ThiefProperties.vala:113 -msgid "A4 (8 x 11 inches)" -msgstr "A4 (21 x 29,7 cm)" - -#: src/Constants/ThiefProperties.vala:114 -msgid "A5 (5.8 x 8.3 inches)" -msgstr "A5 (14,8 x 21 cm)" - -#: src/Constants/ThiefProperties.vala:115 -msgid "B5 (6.93 x 9.84 inches)" -msgstr "B5 (17,6 x 25 cm)" - -#: src/Constants/ThiefProperties.vala:116 -msgid "Executive (7 x 10 inches)" -msgstr "Executive (18,4 x 26,7 cm)" - -#: src/Constants/ThiefProperties.vala:117 -msgid "Legal (8.5 x 14 inches)" -msgstr "Legal (21,6 x 35,5 cm)" - -#: src/Constants/ThiefProperties.vala:118 -msgid "Letter (8.5 x 11 inches)" -msgstr "Brief (21,6 x 27,9 cm)" - -#: src/Constants/ThiefProperties.vala:121 -msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." -msgstr "" -"Dir gefällt nicht, was du siehst? Drücke `STRG+C` für die Einstellungen" - -#: src/Constants/ThiefProperties.vala:122 -msgid "" -"No built in dark mode? Dark themes are available at https://themes.thiefmd." -"com. Add more in the Preferences (`Ctrl+,`)." -msgstr "" -"Kein Dunkler Modus? Themen sind erhältlich unter https://themes.thiefmd.com " -"und in den Einstellungen (`STRG+C`)." - -#: src/Constants/ThiefProperties.vala:123 -msgid "" -"Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and " -"click Export." -msgstr "" -"Du magst die Vorschau nicht? Drücke `STRG+C` für die Einstellungen und " -"klicke Exportieren." - -#: src/Constants/ThiefProperties.vala:124 -msgid "" -"Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." -msgstr "" -"Du willst ein ePUB, HTML oder DocX Dokument öffnen? Importiere es über das " -"Menü zum Seite erstellen." - -#: src/Constants/ThiefProperties.vala:125 -msgid "" -"Ready to publish your great work? Right-click on the folder and choose " -"\"Export Preview\"" -msgstr "" -"Bereit deine Arbeit zu veröffentlichen? Rechtsklick den Ordner und wähle " -"\"Vorschau exportieren\"" - -#: src/Constants/ThiefProperties.vala:126 -msgid "Want to block out distractions? Full-screen is just an `F11` away." -msgstr "Keine Ablenkung? Dann `F11`." - -#: src/Constants/ThiefProperties.vala:127 -msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." -msgstr "Mit `Ctrl+1`, `Ctrl+2`, und `Ctrl+3` schnell die Ansicht wechseln." - -#: src/Constants/ThiefProperties.vala:128 -msgid "" -"Working with a lot of links? Turn on Experimental Mode to make your markdown " -"more readable `Ctrl+Shift+M`." -msgstr "" -"Arbeitest du viel mit Links? Probiere den Experimentellen Modus " -"`STRG+Umschalt+M`." - -#: src/Controllers/FileManager.vala:39 -msgid "Stealing file contents..." -msgstr "" - -#: src/Controllers/FileManager.vala:40 -msgid "This isn't plagiarism, it's a remix!" -msgstr "" - -#: src/Controllers/FileManager.vala:41 -msgid "NYT Best Seller, here we come!" -msgstr "" - +#. Supported import file extensions #: src/Controllers/FileManager.vala:43 msgid "Importing File" msgstr "Datei importieren" @@ -374,18 +84,9 @@ msgstr "MHTML Dateien" msgid "LaTeX file" msgstr "LaTeX Dateien" -#: src/Controllers/Dialogs.vala:161 -msgid "Supported files" -msgstr "Unterstützte Formate" - -#: src/Controllers/Dialogs.vala:170 -#, c-format -msgid "%s files" -msgstr "%s Dateien" - -#: src/Controllers/Dialogs.vala:177 -msgid "All files" -msgstr "Alle Datein" +#: src/Controllers/Dialogs.vala:177 +msgid "All files" +msgstr "Alle Datein" #: src/Controllers/Dialogs.vala:186 msgid "Add to Library" @@ -401,9 +102,7 @@ msgstr "Datei speichern" #: src/Controllers/Dialogs.vala:222 msgid "There are unsaved changes to the file. Do you want to save?" -msgstr "" -"Es befinden sich ungespeicherte Änderungen im aktuellen Dokument. Möchtest " -"du diese speichern?" +msgstr "Es befinden sich ungespeicherte Änderungen im aktuellen Dokument. Möchtest du diese speichern?" #: src/Controllers/Dialogs.vala:223 msgid "If you don't save, changes will be lost forever." @@ -413,16 +112,10 @@ msgstr "Wenn du nicht speicherst sind alle Änderungen verloren." msgid "Close without saving" msgstr "Schließen ohne zu speichern" -#: src/Controllers/SheetManager.vala:157 src/Widgets/StatisticsBar.vala:93 +#: src/Controllers/SheetManager.vala:156 src/Widgets/StatisticsBar.vala:93 msgid "No file opened" msgstr "Keine Datei geöffnet" -#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 -#: src/Widgets/PublisherPreviewWindow.vala:295 -#: src/Widgets/ProjectStatistics.vala:71 -msgid "Close" -msgstr "Schließen" - #: src/Connections/WriteFreelyConnection.vala:103 #: src/Connections/WordpressConnection.vala:85 msgid "Username" @@ -430,7 +123,6 @@ msgstr "Nutzername" #: src/Connections/WriteFreelyConnection.vala:107 #: src/Connections/GhostConnection.vala:86 -#: src/Connections/WordpressConnection.vala:89 msgid "Password" msgstr "Passwort" @@ -440,43 +132,21 @@ msgstr "Passwort" msgid "Endpoint" msgstr "Endpunkt" -#: src/Connections/WriteFreelyConnection.vala:127 -msgid "New WriteFreely Connection" -msgstr "Neue WriteFreely Verbindung" - #: src/Connections/WriteFreelyConnection.vala:130 #: src/Connections/GhostConnection.vala:109 #: src/Connections/WordpressConnection.vala:112 msgid "_Add Account" msgstr "_Account hinzufügen" -#: src/Connections/WriteFreelyConnection.vala:233 -msgid "Taking your words, and letting them go... to the internet!" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:234 -msgid "Mhm... I see and I ship." -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:235 -msgid "Is this a selfie, and you're happy to see me?" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:238 -#: src/Connections/GhostConnection.vala:197 -#: src/Connections/WordpressConnection.vala:198 -msgid "Uploading images" -msgstr "Bilder werden hochgeladen" - #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid " Published" msgstr " Veröffentlicht" #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid "Post Published" msgstr "Beitrag veröffentlicht" @@ -484,45 +154,11 @@ msgstr "Beitrag veröffentlicht" msgid "E-mail" msgstr "E-mail" -#: src/Connections/GhostConnection.vala:106 -msgid "New ghost Connection" -msgstr "Neue gohst Verbindung" - -#: src/Connections/GhostConnection.vala:192 -msgid "Your words are like Casper... Friendly!" -msgstr "" - -#: src/Connections/GhostConnection.vala:193 -msgid "I see your words, and I'm taking them to the internet!" -msgstr "" - -#: src/Connections/GhostConnection.vala:194 -msgid "Booooooooooo! (That's Ghost speak for Great Work!)" -msgstr "" - -#: src/Connections/WordpressConnection.vala:109 -msgid "New Wordpress Connection" -msgstr "Neue Wordpress Verbindung" - -#: src/Connections/WordpressConnection.vala:191 -msgid "Taking it to the internet!" -msgstr "" - -#: src/Connections/WordpressConnection.vala:192 -msgid "Don't forget to share on reddit." -msgstr "" - -#: src/Connections/WordpressConnection.vala:193 -msgid "Pressing words together..." -msgstr "" - -#: src/Enrichments/Fountain.vala:32 -msgid "Characters" -msgstr "Zeichen" - -#: src/Enrichments/Markdown.vala:30 -msgid "Citations" -msgstr "Zitate" +#: src/Connections/WriteFreelyConnection.vala:238 +#: src/Connections/GhostConnection.vala:197 +#: src/Connections/WordpressConnection.vala:217 +msgid "Uploading images" +msgstr "Bilder werden hochgeladen" #: src/Exporters/ExportDocx.vala:60 msgid "Export DocX" @@ -544,16 +180,6 @@ msgstr "Als LaTeX exportieren" msgid "Export Markdown" msgstr "Als Markdown exportieren" -#: src/Exporters/ExportFountain.vala:57 -#, fuzzy -msgid "Fountain files" -msgstr "Fountain Dateien" - -#: src/Exporters/ExportFountain.vala:63 -#, fuzzy -msgid "Export Fountain" -msgstr "Als Fountain exportieren" - #: src/Exporters/ExportMhtml.vala:62 msgid "Export MHTML" msgstr "Als MHTML exporieren" @@ -562,18 +188,6 @@ msgstr "Als MHTML exporieren" msgid "Export PDF" msgstr "Als PDF exportieren" -#: src/Exporters/ExportPdf.vala:149 -msgid "Simply Shakespearean." -msgstr "" - -#: src/Exporters/ExportPdf.vala:150 -msgid "Hmm... that's interesting..." -msgstr "" - -#: src/Exporters/ExportPdf.vala:151 -msgid "Your writing is insightful." -msgstr "" - #: src/Exporters/ExportPdf.vala:153 src/Exporters/ExportPdf.vala:183 msgid "Working PDF Magic" msgstr "PDF-Magie wird ausgeführt" @@ -582,13 +196,17 @@ msgstr "PDF-Magie wird ausgeführt" msgid "Making sure your hard work looks purrfect..." msgstr "Sicherstellen, dass deine harte Arbeit perfekt aussieht..." -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:132 -#: src/Widgets/QuickPreferences.vala:216 src/Widgets/QuickPreferences.vala:295 +#: src/Exporters/ExportPdf.vala:107 +msgid "Print to File" +msgstr "Als PDF drucken" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:146 +#: src/Widgets/QuickPreferences.vala:237 src/Widgets/QuickPreferences.vala:326 msgid "About ThiefMD" msgstr "Über ThiefMD" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:130 -#: src/Widgets/QuickPreferences.vala:214 src/Widgets/QuickPreferences.vala:293 +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:144 +#: src/Widgets/QuickPreferences.vala:235 src/Widgets/QuickPreferences.vala:324 msgid "About" msgstr "Über" @@ -596,44 +214,28 @@ msgstr "Über" msgid "Credits" msgstr "Impressum" -#. website = ThiefProperties.URL; -#: src/Widgets/About.vala:94 -msgid "Feedback" -msgstr "Feedback" - -#. license_type = ThiefProperties.LICENSE_TYPE; -#: src/Widgets/About.vala:99 -msgid "This program comes with absolutely no warranty." -msgstr "Dieses Programm wird ohne Garantie geliefert" - -#: src/Widgets/About.vala:100 -msgid "" -"See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General " -"Public License, version 3 or later</a> for details." -msgstr "" -"Für Details lies bitte die <a href='https://www.gnu.org/licenses/gpl-3.0." -"html'>GNU General Public License, version 3 oder neuer</a>." +#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 +#: src/Widgets/PublisherPreviewWindow.vala:295 +#: src/Widgets/ProjectStatistics.vala:71 +msgid "Close" +msgstr "Schließen" -#: src/Widgets/HeaderBar.vala:86 +#: src/Widgets/Sheets.vala:179 msgid "New Sheet" msgstr "Neue Seite" -#: src/Widgets/HeaderBar.vala:98 +#: src/Widgets/HeaderBar.vala:78 msgid "Change View" msgstr "Ansicht anpassen" -#: src/Widgets/HeaderBar.vala:106 +#: src/ThiefApp.vala:186 msgid "Add Folder to Library" msgstr "Ordner zur Bibliothek hinzufügen" -#: src/Widgets/HeaderBar.vala:129 +#: src/Widgets/HeaderBar.vala:92 msgid "Settings" msgstr "Einstellungen" -#: src/Widgets/HeaderBar.vala:144 -msgid "Show Notes" -msgstr "Notizen anzeigen" - #: src/Widgets/Sheet.vala:215 msgid "Sort by" msgstr "Sortieren nach" @@ -662,30 +264,26 @@ msgstr "Sortieren nach aufsteigendem Datum" msgid "Sort by Date Descending" msgstr "Sortieren nach absteigendem Datum" -#: src/Widgets/Sheet.vala:261 src/Widgets/QuickPreferences.vala:95 -#: src/Widgets/QuickPreferences.vala:179 src/Widgets/QuickPreferences.vala:258 +#: src/Widgets/Sheet.vala:273 src/Widgets/QuickPreferences.vala:95 +#: src/Widgets/QuickPreferences.vala:195 src/Widgets/QuickPreferences.vala:279 msgid "Preview" msgstr "Vorschau" -#: src/Widgets/Sheet.vala:269 src/Widgets/Preferences.vala:482 +#: src/Widgets/Sheet.vala:281 src/Widgets/Preferences.vala:482 #: src/Widgets/PublisherPreviewWindow.vala:155 #: src/Widgets/ProjectStatistics.vala:64 msgid "Export" msgstr "Exportieren" -#: src/Widgets/Sheet.vala:277 -msgid "Copy File Path" -msgstr "Dateipfad kopieren" - #. Gtk.MenuItem menu_rename = new Gtk.MenuItem.with_label (_("Rename File")); #. menu_rename.activate.connect (() => { #. }); #. menu.add (menu_rename); -#: src/Widgets/Sheet.vala:293 +#: src/Widgets/Sheet.vala:305 msgid "Danger Zone" msgstr "Gefahrenzone" -#: src/Widgets/Sheet.vala:299 +#: src/Widgets/Sheet.vala:311 msgid "Move to Trash" msgstr "Löschen" @@ -697,128 +295,47 @@ msgstr "_Von Festplatte laden" msgid "_Keep what's in editor" msgstr "_Im Editor behalten" -#: src/Widgets/Editor.vala:1263 +#: src/Widgets/Editor.vala:1278 msgid "Insert Datetime" msgstr "Datum einfügen" -#: src/Widgets/Editor.vala:1281 +#: src/Widgets/Editor.vala:1296 msgid "Insert YAML Frontmatter" msgstr "YAML-Formatierung einfügen" -#: src/Widgets/Editor.vala:1379 -msgid "Insert Citation" -msgstr "Zitat einfügen" - -#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); -#: src/Widgets/Library.vala:73 -msgid "Library" -msgstr "Bibliothek" - -#: src/Widgets/Library.vala:538 +#: src/Widgets/Library.vala:539 msgid "Export Preview" msgstr "Vorschau exportieren" -#: src/Widgets/Library.vala:548 +#: src/Widgets/Library.vala:549 msgid "Writing Statistics" msgstr "Schreibstatistik" -#: src/Widgets/Library.vala:561 +#: src/Widgets/Library.vala:562 msgid "Search " msgstr "Suche " -#: src/Widgets/Library.vala:573 -msgid "Open in File Manager" -msgstr "Im Dateiverwaltung öffnen" - -#: src/Widgets/Library.vala:585 +#: src/Widgets/Library.vala:586 msgid "Create Sub-Folder" msgstr "Unterordner erstellen" -#: src/Widgets/Library.vala:602 +#: src/Widgets/Library.vala:603 msgid "Hide from Library" msgstr "Verbergen" -#: src/Widgets/Library.vala:626 +#: src/Widgets/Library.vala:627 msgid "Show Hidden Items" msgstr "Verborgene Einträge anzeigen" -#: src/Widgets/Library.vala:638 -msgid "Set Project Icon" -msgstr "Projekt-Icon wählen" - -#: src/Widgets/Library.vala:641 src/Widgets/Preferences.vala:389 -msgid "None" -msgstr "Keine" - -#: src/Widgets/Library.vala:644 -msgid "Folder" -msgstr "Ordner" - -#: src/Widgets/Library.vala:647 -msgid "Reader" -msgstr "Leser" - -#: src/Widgets/Library.vala:650 -msgid "Love" -msgstr "Liebe" - -#: src/Widgets/Library.vala:653 -msgid "Game" -msgstr "Spiel" - -#: src/Widgets/Library.vala:656 -msgid "Art" -msgstr "Kunst" - -#: src/Widgets/Library.vala:659 -msgid "Nature" -msgstr "Natur" - -#: src/Widgets/Library.vala:662 -msgid "Food" -msgstr "Essen" - -#: src/Widgets/Library.vala:665 -msgid "Help" -msgstr "Hilfe" - -#: src/Widgets/Library.vala:668 -msgid "Cool" -msgstr "Kalt" - -#: src/Widgets/Library.vala:671 -msgid "Angel" -msgstr "Engel" - -#: src/Widgets/Library.vala:674 -msgid "Monkey" -msgstr "Affe" - -#: src/Widgets/Library.vala:677 -msgid "WordPress" -msgstr "WordPress" - -#: src/Widgets/Library.vala:680 -msgid "Ghost" -msgstr "Ghost" - -#: src/Widgets/Library.vala:683 -msgid "Write Freely" -msgstr "Write Freely" - -#: src/Widgets/Library.vala:686 -msgid "Trash" -msgstr "Müll" - -#: src/Widgets/Library.vala:696 +#: src/Widgets/Library.vala:697 msgid "Remove from Library" msgstr "Aus Bibliothek entfernen" -#: src/Widgets/Library.vala:933 +#: src/Widgets/Library.vala:934 msgid "Copy" msgstr "Kopieren" -#: src/Widgets/Library.vala:935 +#: src/Widgets/Library.vala:936 msgid "Move" msgstr "Verschieben" @@ -838,10 +355,6 @@ msgstr "Seitenname" msgid "Create" msgstr "Erstellen" -#: src/Widgets/NewSheet.vala:41 -msgid "Import" -msgstr "Importieren" - #: src/Widgets/Preferences.vala:50 msgid "Current Connections" msgstr "Aktuelle Verbindungen" @@ -862,40 +375,10 @@ msgstr "Wähle dein blogger Programm." msgid " WriteFreely" msgstr " WriteFreely" -#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 -#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 -#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 -msgid "Connection Error" -msgstr "" - #: src/Widgets/Preferences.vala:91 msgid " ghost" msgstr " ghost" -#: src/Widgets/Preferences.vala:125 -msgid " WordPress" -msgstr " WordPress" - -#: src/Widgets/Preferences.vala:159 -msgid " Medium" -msgstr "" - -#: src/Widgets/Preferences.vala:193 -msgid " Forem" -msgstr "" - -#: src/Widgets/Preferences.vala:227 -msgid " Hashnode" -msgstr "" - -#: src/Widgets/Preferences.vala:279 -msgid "Connections" -msgstr "Verbindungen" - -#: src/Widgets/Preferences.vala:340 -msgid "Remove " -msgstr "Entfernen " - #: src/Widgets/Preferences.vala:343 msgid "_Remove" msgstr "_Entfernen" @@ -904,22 +387,14 @@ msgstr "_Entfernen" msgid "_Keep" msgstr "_Behalten" -#: src/Widgets/Preferences.vala:373 -msgid "Display" -msgstr "Anzeigen" - -#: src/Widgets/Preferences.vala:377 -msgid "Display Options" -msgstr "Anzeigeoptionen" - -#: src/Widgets/Preferences.vala:378 -msgid "Make ThiefMD feel like home." -msgstr "Fühle dich wie Zuhause in ThiefMD" - #: src/Widgets/Preferences.vala:384 msgid "Focus" msgstr "Fokusieren" +#: src/Widgets/Library.vala:642 src/Widgets/Preferences.vala:389 +msgid "None" +msgstr "Keine" + #: src/Widgets/Preferences.vala:390 msgid "Paragraph" msgstr "Absatz" @@ -932,33 +407,17 @@ msgstr "Satz" msgid "Word" msgstr "Wort" -#: src/Widgets/Preferences.vala:431 -msgid "Number of Lines to Preview in Sheets View" -msgstr "Anzahl der Zeilen in der Seitenvorschau" - #: src/Widgets/Preferences.vala:440 msgid "Add New Theme" msgstr "Neues Theme einfügen" -#: src/Widgets/Preferences.vala:487 -msgid "Compiling Options" -msgstr "Zusammensetzungsoptionen" - -#: src/Widgets/Preferences.vala:488 -msgid "Adjust how Markdown files are compiled together." -msgstr "Passen Sie an, wie Markdown-Dateien zusammengesetzt werden." - #: src/Widgets/Preferences.vala:496 msgid "First Markdown File includes Author Metadata" msgstr "Die erste Markdowndatei enthält Metadaten zum Autor" #: src/Widgets/Preferences.vala:498 -msgid "" -"First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>Author metadata</a>" -msgstr "" -"Die erste Markdowndatei enthält <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>Metadaten zum Autor</a>" +msgid "First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Author metadata</a>" +msgstr "Die erste Markdowndatei enthält <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Metadaten zum Autor</a>" #: src/Widgets/Preferences.vala:514 msgid "Resolve full paths to resources" @@ -976,17 +435,9 @@ msgstr "YAML-Titel als Überschrift einbinden" msgid "Include YAML title as H1 Heading" msgstr "YAML-Titel als H1 Überschrift einbinden" -#: src/Widgets/Preferences.vala:543 -msgid "Page Setup" -msgstr "Seite einrichten" - -#: src/Widgets/Preferences.vala:544 -msgid "Configure PDF export options." -msgstr "Passe die Einstellungen für den PDF-Export an." - -#: src/Widgets/Preferences.vala:552 -msgid "Page Break between Folders" -msgstr "Seitenumbruch zwischen Ordnern" +#: src/Widgets/Preferences.vala:552 +msgid "Page Break between Folders" +msgstr "Seitenumbruch zwischen Ordnern" #: src/Widgets/Preferences.vala:554 msgid "Insert a Page Break after each folder" @@ -1008,38 +459,10 @@ msgstr "Seitenabstand der PDF in Zoll" msgid "Top & Bottom margins in PDF in inches" msgstr "Oberer & Unterer Abstand der PDF in Zoll" -#: src/Widgets/Preferences.vala:641 -msgid "PDF CSS" -msgstr "PDF CSS" - -#: src/Widgets/Preferences.vala:642 -msgid "Choose CSS Style for PDF Export." -msgstr "Wähle den CSS-Stil für den PDF-Export." - -#: src/Widgets/Preferences.vala:650 -msgid "ePub & HTML CSS" -msgstr "ePUB & HTLM CSS" - -#: src/Widgets/Preferences.vala:651 -msgid "Choose CSS Style to use for ePub and HTML Export." -msgstr "Wähle den CSS-Stil für den ePUB und HTML-Export." - #: src/Widgets/Preferences.vala:657 msgid "Add Export Style" msgstr "Export Stil hinzufügen" -#: src/Widgets/Preferences.vala:680 -msgid "Editor" -msgstr "Editor" - -#: src/Widgets/Preferences.vala:684 -msgid "Editor Settings" -msgstr "Editoreinstellungen" - -#: src/Widgets/Preferences.vala:685 -msgid "Modify the ThiefMD environment." -msgstr "Ändere die ThiefMD-Umgebung." - #: src/Widgets/Preferences.vala:693 msgid "Enable spellcheck" msgstr "Rechtschreibprüfung einschalten" @@ -1072,22 +495,6 @@ msgstr "Schreibstatistik umschalten" msgid "Show writing statistics" msgstr "Schreibstatistik anzeigen" -#: src/Widgets/Preferences.vala:765 -msgid "Disable application tips" -msgstr "Anwendungstipps deaktivieren" - -#: src/Widgets/Preferences.vala:766 -msgid "Start with new empty sheet on launch" -msgstr "Mit neuer leerer Seite beginnen" - -#: src/Widgets/Preferences.vala:779 -msgid "ThiefMD Settings" -msgstr "ThiefMD-Einstellungen" - -#: src/Widgets/Preferences.vala:780 -msgid "Modify the ThiefMD appearance." -msgstr "Ändere das ThiefMD-Erscheinungsbild." - #: src/Widgets/Preferences.vala:790 msgid "Toggle interface theming" msgstr "Darstellungsthema umschalten" @@ -1120,18 +527,10 @@ msgstr "Reihenfolge der Bibliothek umschalten" msgid "Keep library order" msgstr "Reihenfolge der Bibliothek beibehalten" -#: src/Widgets/Preferences.vala:858 -msgid "Toggle experimental features" -msgstr "Experimentelle Funktionen" - -#: src/Widgets/Preferences.vala:860 -msgid "Enable experimental features" -msgstr "Experimentelle Funktionen aktivieren" - #: src/Widgets/PublisherPreviewWindow.vala:67 #: src/Widgets/PublisherPreviewWindow.vala:209 -#: src/Widgets/QuickPreferences.vala:104 src/Widgets/QuickPreferences.vala:188 -#: src/Widgets/QuickPreferences.vala:267 +#: src/Widgets/QuickPreferences.vala:109 src/Widgets/QuickPreferences.vala:204 +#: src/Widgets/QuickPreferences.vala:293 msgid "Publishing Preview" msgstr "Vorschau der Veröffentlichung" @@ -1156,14 +555,11 @@ msgid "words" msgstr "Wörter" #: src/Widgets/ProjectStatistics.vala:126 -#, c-format -msgid "" -"<b>Reading Time:</b>\n" +msgid "<b>Reading Time:</b>\n" "%d %s\n" "%d %s\n" "%d %s" -msgstr "" -"<b>Lesezeit:</b>\n" +msgstr "<b>Lesezeit:</b>\n" "%d %s\n" "%d %s\n" "%d %s" @@ -1212,75 +608,41 @@ msgstr "" msgid "Toggle Write Good" msgstr "Write Good umschalten" -#: src/Widgets/QuickPreferences.vala:71 -msgid "Check Grammar" -msgstr "Grammatik überprüfen" - -#: src/Widgets/QuickPreferences.vala:74 -msgid "Toggle Grammar Checking" -msgstr "Grammatiküberprüfung einschalten" - -#: src/Widgets/QuickPreferences.vala:87 -msgid "Grammar check is not available for your language" -msgstr "Die Grammatiküberprüfung ist in dieser Sprache nicht verfügbar." - -#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:181 -#: src/Widgets/QuickPreferences.vala:260 +#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:197 +#: src/Widgets/QuickPreferences.vala:281 msgid "Launch Preview" msgstr "Vorschau anzeigen" -#: src/Widgets/QuickPreferences.vala:106 src/Widgets/QuickPreferences.vala:190 -#: src/Widgets/QuickPreferences.vala:269 -msgid "Open Export Window" -msgstr "Exportfenster öffnen" - -#: src/Widgets/QuickPreferences.vala:113 src/Widgets/QuickPreferences.vala:197 -#: src/Widgets/QuickPreferences.vala:276 -msgid "Search Library" -msgstr "Bibliothek durchsuchen" - -#: src/Widgets/QuickPreferences.vala:115 src/Widgets/QuickPreferences.vala:199 -#: src/Widgets/QuickPreferences.vala:278 -msgid "Open Search Window" -msgstr "Suchfenster öffnen" - -#: src/Widgets/QuickPreferences.vala:121 src/Widgets/QuickPreferences.vala:205 -#: src/Widgets/QuickPreferences.vala:284 +#: src/Widgets/QuickPreferences.vala:135 src/Widgets/QuickPreferences.vala:226 +#: src/Widgets/QuickPreferences.vala:315 msgid "Preferences" msgstr "Einstellungen" -#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:207 -#: src/Widgets/QuickPreferences.vala:286 +#: src/Widgets/QuickPreferences.vala:137 src/Widgets/QuickPreferences.vala:228 +#: src/Widgets/QuickPreferences.vala:317 msgid "Edit Preferences" msgstr "Einstellungen bearbeiten" -#: src/Widgets/ThemeSelector.vala:55 -msgid "Spacing" -msgstr "Abstand" +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Widgets/ThemeSelector.vala:50 +msgid "Font" +msgstr "Schriftart" #: src/Widgets/ThemeSelector.vala:142 msgid "Font Selector" msgstr "Schriftartauswahl" -#: src/Widgets/ThemeSelector.vala:326 -msgid "Download" -msgstr "Herunterladen" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "more themes" -msgstr "mehr Themes" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "Stored in" -msgstr "Gespeichert in" +#: src/Widgets/ThemeSelector.vala:320 +msgid "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" +"<small>Stored in <a href='file://" +msgstr "<a href='https://themes.thiefmd.com/themes/'>Mehr Themen </a> herunterladen.\n" +"<small>Speicherort: <a href='file://" #: src/Widgets/SearchBar.vala:110 -#, c-format msgid "(%d occurences)" msgstr "(%d Vorkommen)" #: src/Widgets/StatisticsBar.vala:100 -#, c-format msgid "%d %s %d %s and %d %s reading time." msgstr "%d %s %d %s und %d %s Lesezeit." @@ -1305,7 +667,6 @@ msgid "seconds" msgstr "Sekunden" #: src/Widgets/StatisticsBar.vala:106 -#, c-format msgid "%s : %d words." msgstr "%s : %d Wörter." @@ -1313,9 +674,9 @@ msgstr "%s : %d Wörter." msgid "Library Search" msgstr "Bibliothek durchsuchen" -#: src/Widgets/SearchWindow.vala:421 -msgid "Search" -msgstr "Suche" +#: src/Widgets/SearchWindow.vala:422 +msgid " Search" +msgstr " Suche" #: src/Widgets/SearchWindow.vala:445 msgid "Monitor for Library changes" @@ -1329,16 +690,617 @@ msgstr "<b>Dateiinhalt stehlen...</b>" msgid "Heading" msgstr "Überschrift" -#~ msgid "Print to File" -#~ msgstr "Als PDF drucken" +#. Font settings +#. Arbitrary strings +#: src/Constants/AppSettings.vala:104 +msgid "# Click on a sheet to get started\n" +"\n" +"First time here? Drag a folder into the library, or click on the Folder icon to select a folder to add.\n" +"\n" +"## Thief Tip:\n" +"\n" +"%s" +msgstr "# Wähle eine Seite um loszulegen\n" +"\n" +"Das erste mal hier? Schiebe einen Ordner in die Bibliothek auf der linken Seite oder öffne einen über das Ordnersymbol.\n" +"\n" +"## Kleiner Tipp:\n" +"\n" +"%s" + +#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); +#: src/ThiefApp.vala:182 +msgid "Library" +msgstr "Bibliothek" + +#: src/Widgets/Preferences.vala:680 +msgid "Editor" +msgstr "Editor" + +#: src/Widgets/SearchWindow.vala:421 +msgid "Search" +msgstr "Suche" + +#: src/Widgets/QuickPreferences.vala:111 src/Widgets/QuickPreferences.vala:206 +#: src/Widgets/QuickPreferences.vala:295 +msgid "Open Export Window" +msgstr "Exportfenster öffnen" + +#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:218 +#: src/Widgets/QuickPreferences.vala:307 +msgid "Search Library" +msgstr "Bibliothek durchsuchen" + +#: src/Widgets/QuickPreferences.vala:125 src/Widgets/QuickPreferences.vala:220 +#: src/Widgets/QuickPreferences.vala:309 +msgid "Open Search Window" +msgstr "Suchfenster öffnen" + +#: src/Widgets/ThemeSelector.vala:55 +msgid "Spacing" +msgstr "Abstand" + +#: src/Widgets/Preferences.vala:858 +msgid "Toggle experimental features" +msgstr "Experimentelle Funktionen" + +#: src/Widgets/Preferences.vala:860 +msgid "Enable experimental features" +msgstr "Experimentelle Funktionen aktivieren" + +#: src/Controllers/Dialogs.vala:161 +msgid "Supported files" +msgstr "Unterstützte Formate" + +#: src/Controllers/Dialogs.vala:170 +msgid "%s files" +msgstr "%s Dateien" + +#: src/Widgets/Library.vala:574 +msgid "Open in File Manager" +msgstr "Im Dateiverwaltung öffnen" + +#: src/Widgets/NewSheet.vala:41 +msgid "Import" +msgstr "Importieren" + +#: src/Widgets/Preferences.vala:125 +msgid " WordPress" +msgstr " WordPress" + +#: src/Constants/ThiefProperties.vala:25 +msgid "The Markdown editor worth stealing" +msgstr "Der Markdown-Editor zum Stehlen" + +#: src/Constants/ThiefProperties.vala:87 +msgid "Contributors who help make ThiefMD awesome" +msgstr "Mitwirkende, welche ThiefMD großartig machen" + +#: src/Constants/ThiefProperties.vala:89 +msgid "French Translation Contributors" +msgstr "Französische Übersetzung" + +#: src/Constants/ThiefProperties.vala:90 +msgid "Slovak Translation Contributors" +msgstr "Slovakische Übersetzung" + +#: src/Constants/ThiefProperties.vala:91 +msgid "Swedish Translation Contributors" +msgstr "Schwedische Übersetzung" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Original Code" +msgstr "Original Code" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" +msgstr "Basierend auf <a href='https://github.com/lainsce/quilter'>Quilter</a>" +"" + +#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:95 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 +msgid "Copyright" +msgstr "Urheberrecht" + +#: src/Constants/ThiefProperties.vala:94 +msgid "GNU General Public License v3.0" +msgstr "GNU General Public License v3.0" + +#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +msgid "SIL OPEN FONT LICENSE Version 1.1" +msgstr "SIL OPEN FONT LICENSE Version 1.1" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Preview CSS" +msgstr "CSS Vorschau" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Mash up of Splendor and Modest" +msgstr "Eine Mischung aus Splendor und Modest" + +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:109 +msgid "The MIT License (MIT)" +msgstr "Die MIT Lizenz (MIT)" + +#: src/Constants/ThiefProperties.vala:102 +msgid "Markdown Parsing" +msgstr "Markdown-Parsing" + +#: src/Constants/ThiefProperties.vala:102 +msgid "BSD-style License" +msgstr "BSD-ähnliche Lizenz" + +#: src/Constants/ThiefProperties.vala:103 +msgid "Syntax Highlighting" +msgstr "Syntax Highlighting" + +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:107 +msgid "BSD-3-Clause License" +msgstr "BSD-3-Clause License" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Math Rendering" +msgstr "Mathematik-Rendering" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Khan Academy and other contributors." +msgstr "Khan Academy und andere Mitwirkende." + +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +msgid "MIT License" +msgstr "MIT-Lizenz" -#~ msgid "" -#~ "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" -#~ "<small>Stored in <a href='file://" -#~ msgstr "" -#~ "<a href='https://themes.thiefmd.com/themes/'>Mehr Themen </a> " -#~ "herunterladen.\n" -#~ "<small>Speicherort: <a href='file://" +#: src/Constants/ThiefProperties.vala:105 +msgid "XML Parsing" +msgstr "XML-Parsing" + +#: src/Constants/ThiefProperties.vala:106 +msgid "Pandoc Export" +msgstr "Pandoc Export" + +#: src/Constants/ThiefProperties.vala:106 +msgid "John MacFarlane and others" +msgstr "John MacFarlane und andere" + +#: src/Constants/ThiefProperties.vala:106 +msgid "GNU General Public License v2.0" +msgstr "GNU General Public License v2.0" + +#: src/Constants/ThiefProperties.vala:109 +msgid "libwritegood-vala based on" +msgstr "ibwritegood-vala basiert auf" + +#: src/Constants/ThiefProperties.vala:109 +#, fuzzy +msgid "write-good: Naive linter for English prose" +msgstr "write-good: Hilfe bei englischer Prosa" + +#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME +#: src/Constants/ThiefProperties.vala:113 +msgid "A3 (11.7 x 16.5 inches)" +msgstr "A3 (29,7 x 42 cm)" + +#: src/Constants/ThiefProperties.vala:114 +msgid "A4 (8 x 11 inches)" +msgstr "A4 (21 x 29,7 cm)" + +#: src/Constants/ThiefProperties.vala:115 +msgid "A5 (5.8 x 8.3 inches)" +msgstr "A5 (14,8 x 21 cm)" + +#: src/Constants/ThiefProperties.vala:116 +msgid "B5 (6.93 x 9.84 inches)" +msgstr "B5 (17,6 x 25 cm)" + +#: src/Constants/ThiefProperties.vala:117 +msgid "Executive (7 x 10 inches)" +msgstr "Executive (18,4 x 26,7 cm)" + +#: src/Constants/ThiefProperties.vala:118 +msgid "Legal (8.5 x 14 inches)" +msgstr "Legal (21,6 x 35,5 cm)" + +#: src/Constants/ThiefProperties.vala:119 +msgid "Letter (8.5 x 11 inches)" +msgstr "Brief (21,6 x 27,9 cm)" + +#: src/Constants/ThiefProperties.vala:122 +msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." +msgstr "Dir gefällt nicht, was du siehst? Drücke `STRG+C` für die Einstellungen" + +#: src/Constants/ThiefProperties.vala:123 +msgid "No built in dark mode? Dark themes are available at https://themes.thiefmd.com. Add more in the Preferences (`Ctrl+,`)." +msgstr "Kein Dunkler Modus? Themen sind erhältlich unter https://themes.thiefmd.com und in den Einstellungen (`STRG+C`)." + +#: src/Constants/ThiefProperties.vala:124 +msgid "Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and click Export." +msgstr "Du magst die Vorschau nicht? Drücke `STRG+C` für die Einstellungen und klicke Exportieren." + +#: src/Constants/ThiefProperties.vala:125 +msgid "Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." +msgstr "Du willst ein ePUB, HTML oder DocX Dokument öffnen? Importiere es über das Menü zum Seite erstellen." + +#: src/Constants/ThiefProperties.vala:126 +msgid "Ready to publish your great work? Right-click on the folder and choose \"Export Preview\"" +msgstr "Bereit deine Arbeit zu veröffentlichen? Rechtsklick den Ordner und wähle \"Vorschau exportieren\"" + +#: src/Constants/ThiefProperties.vala:127 +msgid "Want to block out distractions? Full-screen is just an `F11` away." +msgstr "Keine Ablenkung? Dann `F11`." + +#: src/Constants/ThiefProperties.vala:128 +msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." +msgstr "Mit `Ctrl+1`, `Ctrl+2`, und `Ctrl+3` schnell die Ansicht wechseln." + +#: src/Constants/ThiefProperties.vala:129 +msgid "Working with a lot of links? Turn on Experimental Mode to make your markdown more readable `Ctrl+Shift+M`." +msgstr "Arbeitest du viel mit Links? Probiere den Experimentellen Modus `STRG+Umschalt+M`." + +#: src/Connections/WriteFreelyConnection.vala:127 +msgid "New WriteFreely Connection" +msgstr "Neue WriteFreely Verbindung" + +#: src/Connections/GhostConnection.vala:106 +msgid "New ghost Connection" +msgstr "Neue gohst Verbindung" + +#: src/Connections/WordpressConnection.vala:109 +msgid "New Wordpress Connection" +msgstr "Neue Wordpress Verbindung" + +#. website = ThiefProperties.URL; +#: src/Widgets/About.vala:94 +msgid "Feedback" +msgstr "Feedback" + +#. license_type = ThiefProperties.LICENSE_TYPE; +#: src/Widgets/About.vala:99 +msgid "This program comes with absolutely no warranty." +msgstr "Dieses Programm wird ohne Garantie geliefert" + +#: src/Widgets/About.vala:100 +msgid "See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, version 3 or later</a> for details." +msgstr "Für Details lies bitte die <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, version 3 oder neuer</a>." + +#: src/Widgets/Preferences.vala:279 +msgid "Connections" +msgstr "Verbindungen" + +#: src/Widgets/Preferences.vala:340 +msgid "Remove " +msgstr "Entfernen " + +#: src/Widgets/Preferences.vala:373 +msgid "Display" +msgstr "Anzeigen" + +#: src/Widgets/Preferences.vala:377 +msgid "Display Options" +msgstr "Anzeigeoptionen" + +#: src/Widgets/Preferences.vala:378 +msgid "Make ThiefMD feel like home." +msgstr "Fühle dich wie Zuhause in ThiefMD" + +#: src/Widgets/Preferences.vala:487 +msgid "Compiling Options" +msgstr "Zusammensetzungsoptionen" + +#: src/Widgets/Preferences.vala:488 +msgid "Adjust how Markdown files are compiled together." +msgstr "Passen Sie an, wie Markdown-Dateien zusammengesetzt werden." + +#: src/Widgets/Preferences.vala:543 +msgid "Page Setup" +msgstr "Seite einrichten" + +#: src/Widgets/Preferences.vala:544 +msgid "Configure PDF export options." +msgstr "Passe die Einstellungen für den PDF-Export an." + +#: src/Widgets/Preferences.vala:641 +msgid "PDF CSS" +msgstr "PDF CSS" + +#: src/Widgets/Preferences.vala:642 +msgid "Choose CSS Style for PDF Export." +msgstr "Wähle den CSS-Stil für den PDF-Export." + +#: src/Widgets/Preferences.vala:650 +msgid "ePub & HTML CSS" +msgstr "ePUB & HTLM CSS" + +#: src/Widgets/Preferences.vala:651 +msgid "Choose CSS Style to use for ePub and HTML Export." +msgstr "Wähle den CSS-Stil für den ePUB und HTML-Export." + +#: src/Widgets/Preferences.vala:684 +msgid "Editor Settings" +msgstr "Editoreinstellungen" + +#: src/Widgets/Preferences.vala:685 +msgid "Modify the ThiefMD environment." +msgstr "Ändere die ThiefMD-Umgebung." + +#: src/Widgets/Preferences.vala:779 +msgid "ThiefMD Settings" +msgstr "ThiefMD-Einstellungen" + +#: src/Widgets/Preferences.vala:780 +msgid "Modify the ThiefMD appearance." +msgstr "Ändere das ThiefMD-Erscheinungsbild." + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Download" +msgstr "Herunterladen" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "more themes" +msgstr "mehr Themes" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Stored in" +msgstr "Gespeichert in" + +#: src/ThiefApp.vala:315 +#, fuzzy +msgid "Fountain" +msgstr "Fountain" + +#: src/Constants/ThiefProperties.vala:101 +#, fuzzy +msgid "Fountain Preview and Export" +msgstr "Fountain Vorschau und Export" + +#: src/Exporters/ExportFountain.vala:57 +#, fuzzy +msgid "Fountain files" +msgstr "Fountain Dateien" + +#: src/Exporters/ExportFountain.vala:63 +#, fuzzy +msgid "Export Fountain" +msgstr "Als Fountain exportieren" + +#: src/Widgets/HeaderBar.vala:107 +msgid "Show Notes" +msgstr "Notizen anzeigen" + +#: src/Widgets/Sheet.vala:289 +msgid "Copy File Path" +msgstr "Dateipfad kopieren" + +#: src/Widgets/Editor.vala:1394 +msgid "Insert Citation" +msgstr "Zitat einfügen" + +#: src/Widgets/Library.vala:639 +msgid "Set Project Icon" +msgstr "Projekt-Icon wählen" + +#: src/Widgets/Library.vala:645 +msgid "Folder" +msgstr "Ordner" + +#: src/Widgets/Library.vala:648 +msgid "Reader" +msgstr "Leser" + +#: src/Widgets/Library.vala:651 +msgid "Love" +msgstr "Liebe" + +#: src/Widgets/Library.vala:654 +msgid "Game" +msgstr "Spiel" + +#: src/Widgets/Library.vala:657 +msgid "Art" +msgstr "Kunst" + +#: src/Widgets/Library.vala:660 +msgid "Nature" +msgstr "Natur" + +#: src/Widgets/Library.vala:663 +msgid "Food" +msgstr "Essen" + +#: src/Widgets/Library.vala:666 +msgid "Help" +msgstr "Hilfe" + +#: src/Widgets/Library.vala:669 +msgid "Cool" +msgstr "Kalt" + +#: src/Widgets/Library.vala:672 +msgid "Angel" +msgstr "Engel" + +#: src/Widgets/Library.vala:675 +msgid "Monkey" +msgstr "Affe" + +#: src/Widgets/Library.vala:678 +msgid "WordPress" +msgstr "WordPress" + +#: src/Widgets/Library.vala:681 +msgid "Ghost" +msgstr "Ghost" + +#: src/Widgets/Library.vala:684 +msgid "Write Freely" +msgstr "Write Freely" + +#: src/Widgets/Library.vala:687 +msgid "Trash" +msgstr "Müll" + +#: src/Widgets/Preferences.vala:431 +msgid "Number of Lines to Preview in Sheets View" +msgstr "Anzahl der Zeilen in der Seitenvorschau" + +#: src/Widgets/Preferences.vala:765 +msgid "Disable application tips" +msgstr "Anwendungstipps deaktivieren" + +#: src/Widgets/Preferences.vala:766 +msgid "Start with new empty sheet on launch" +msgstr "Mit neuer leerer Seite beginnen" + +#: src/Enrichments/Fountain.vala:32 +msgid "Characters" +msgstr "Zeichen" + +#: src/Enrichments/Markdown.vala:30 +msgid "Citations" +msgstr "Zitate" + +#: src/Constants/ThiefProperties.vala:95 +msgid "Stolen Victory Font" +msgstr "Stolen Victory Schriftart" + +#: src/Constants/ThiefProperties.vala:108 +msgid "Grammar Check" +msgstr "Gramatikprüfung" + +#: src/Constants/ThiefProperties.vala:108 +msgid "the AbiSource Community" +msgstr "die AbiSource Gemeinschaft" + +#: src/Constants/ThiefProperties.vala:108 +msgid "GNU Lesser General Public License v2.1" +msgstr "GNU Lesser General Public License v2.1" + +#: src/Widgets/QuickPreferences.vala:71 +msgid "Check Grammar" +msgstr "Grammatik überprüfen" + +#: src/Widgets/QuickPreferences.vala:74 +msgid "Toggle Grammar Checking" +msgstr "Grammatiküberprüfung einschalten" + +#: src/Widgets/QuickPreferences.vala:87 +msgid "Grammar check is not available for your language" +msgstr "Die Grammatiküberprüfung ist in dieser Sprache nicht verfügbar." + +#: src/Constants/ThiefProperties.vala:88 +msgid "Czech Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "PDF Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "Simon Sapin and contributors" +msgstr "" + +#: src/Controllers/FileManager.vala:39 +msgid "Stealing file contents..." +msgstr "" + +#: src/Controllers/FileManager.vala:40 +msgid "This isn't plagiarism, it's a remix!" +msgstr "" + +#: src/Controllers/FileManager.vala:41 +msgid "NYT Best Seller, here we come!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:233 +msgid "Taking your words, and letting them go... to the internet!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:234 +msgid "Mhm... I see and I ship." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:235 +msgid "Is this a selfie, and you're happy to see me?" +msgstr "" + +#: src/Connections/GhostConnection.vala:192 +msgid "Your words are like Casper... Friendly!" +msgstr "" + +#: src/Connections/GhostConnection.vala:193 +msgid "I see your words, and I'm taking them to the internet!" +msgstr "" + +#: src/Connections/GhostConnection.vala:194 +msgid "Booooooooooo! (That's Ghost speak for Great Work!)" +msgstr "" + +#: src/Connections/WordpressConnection.vala:192 +msgid "Taking it to the internet!" +msgstr "" + +#: src/Connections/WordpressConnection.vala:193 +msgid "Don't forget to share on reddit." +msgstr "" + +#: src/Connections/WordpressConnection.vala:194 +msgid "Pressing words together..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:149 +msgid "Simply Shakespearean." +msgstr "" + +#: src/Exporters/ExportPdf.vala:150 +msgid "Hmm... that's interesting..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:151 +msgid "Your writing is insightful." +msgstr "" + +#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 +#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 +#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 +msgid "Connection Error" +msgstr "" + +#: src/Widgets/Preferences.vala:159 +msgid " Medium" +msgstr "" + +#: src/Widgets/Preferences.vala:193 +msgid " Forem" +msgstr "" + +#: src/Widgets/Preferences.vala:227 +msgid " Hashnode" +msgstr "" + +#: src/Constants/ThiefProperties.vala:92 +msgid "German Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:93 +msgid "Finnish Translation Contributors" +msgstr "" + +#: src/Connections/WordpressConnection.vala:89 +msgid "Application Password" +msgstr "" -#~ msgid " Search" -#~ msgstr " Suche" diff --git a/po/en_GB.po b/po/en_GB.po index 52fece89..dd3e5cea 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -1,311 +1,37 @@ msgid "" msgstr "" -"Project-Id-Version: ThiefMD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-26 11:34-0700\n" -"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: POEditor.com\n" +"Project-Id-Version: ThiefMD\n" +"Language: en\n" -#: src/ThiefApp.vala:244 +#: src/ThiefApp.vala:309 msgid "HTML" msgstr "HTML" -#: src/ThiefApp.vala:245 +#: src/ThiefApp.vala:310 msgid "PDF" msgstr "PDF" -#: src/ThiefApp.vala:246 +#: src/ThiefApp.vala:311 msgid "MHTML" msgstr "MHTML" -#: src/ThiefApp.vala:247 +#: src/ThiefApp.vala:312 msgid "Markdown" msgstr "Markdown" -#: src/ThiefApp.vala:248 +#: src/ThiefApp.vala:313 msgid "LaTeX" msgstr "LaTeX" -#: src/ThiefApp.vala:249 +#: src/ThiefApp.vala:314 msgid "DocX" msgstr "DocX" -#: src/ThiefApp.vala:250 -msgid "Fountain" -msgstr "" - -#. Visual Settings -#. Arbitrary strings -#: src/Constants/AppSettings.vala:104 -#, c-format -msgid "" -"# Click on a sheet to get started\n" -"\n" -"First time here? Drag a folder into the library, or click on the Folder " -"icon to select a folder to add.\n" -"\n" -"## Thief Tip:\n" -"\n" -"%s" -msgstr "" -"# Click on a sheet to get started\n" -"\n" -"First time here? Drag a folder into the library, or click on the Folder " -"icon to select a folder to add.\n" -"\n" -"## Thief Tip:\n" -"\n" -"%s" - -#: src/Constants/ThiefProperties.vala:25 -msgid "The Markdown editor worth stealing" -msgstr "" - -#: src/Constants/ThiefProperties.vala:86 -msgid "Contributors who help make ThiefMD awesome" -msgstr "" - -#: src/Constants/ThiefProperties.vala:87 -msgid "Czech Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:88 -msgid "French Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:89 -msgid "Slovak Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:90 -msgid "Swedish Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:91 -msgid "German Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:92 -msgid "Finnish Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Original Code" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 src/Constants/ThiefProperties.vala:94 -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:101 -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -#: src/Constants/ThiefProperties.vala:105 -#: src/Constants/ThiefProperties.vala:106 -#: src/Constants/ThiefProperties.vala:107 -#: src/Constants/ThiefProperties.vala:108 -msgid "Copyright" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "GNU General Public License v3.0" -msgstr "" - -#: src/Constants/ThiefProperties.vala:94 -msgid "Stolen Victory Font" -msgstr "" - -#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -msgid "SIL OPEN FONT LICENSE Version 1.1" -msgstr "" - -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -msgid "MIT License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Widgets/ThemeSelector.vala:50 -msgid "Font" -msgstr "Font" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Preview CSS" -msgstr "" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Mash up of Splendor and Modest" -msgstr "" - -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:108 -msgid "The MIT License (MIT)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:100 -msgid "Fountain Preview and Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:101 -msgid "Markdown Parsing" -msgstr "" - -#: src/Constants/ThiefProperties.vala:101 -msgid "BSD-style License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:102 -msgid "Syntax Highlighting" -msgstr "" - -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:106 -msgid "BSD-3-Clause License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Math Rendering" -msgstr "" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Khan Academy and other contributors." -msgstr "" - -#: src/Constants/ThiefProperties.vala:104 -msgid "XML Parsing" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "Pandoc Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "John MacFarlane and others" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "GNU General Public License v2.0" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "PDF Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "Simon Sapin and contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "Grammar Check" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "the AbiSource Community" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "GNU Lesser General Public License v2.1" -msgstr "" - -#: src/Constants/ThiefProperties.vala:108 -msgid "libwritegood-vala based on" -msgstr "" - -#: src/Constants/ThiefProperties.vala:108 -msgid "write-good: Naive linter for English prose" -msgstr "" - -#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME -#: src/Constants/ThiefProperties.vala:112 -msgid "A3 (11.7 x 16.5 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:113 -msgid "A4 (8 x 11 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:114 -msgid "A5 (5.8 x 8.3 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:115 -msgid "B5 (6.93 x 9.84 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:116 -msgid "Executive (7 x 10 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:117 -msgid "Legal (8.5 x 14 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:118 -msgid "Letter (8.5 x 11 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:121 -msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." -msgstr "" - -#: src/Constants/ThiefProperties.vala:122 -msgid "" -"No built in dark mode? Dark themes are available at https://themes.thiefmd." -"com. Add more in the Preferences (`Ctrl+,`)." -msgstr "" - -#: src/Constants/ThiefProperties.vala:123 -msgid "" -"Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and " -"click Export." -msgstr "" - -#: src/Constants/ThiefProperties.vala:124 -msgid "" -"Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." -msgstr "" - -#: src/Constants/ThiefProperties.vala:125 -msgid "" -"Ready to publish your great work? Right-click on the folder and choose " -"\"Export Preview\"" -msgstr "" - -#: src/Constants/ThiefProperties.vala:126 -msgid "Want to block out distractions? Full-screen is just an `F11` away." -msgstr "" - -#: src/Constants/ThiefProperties.vala:127 -msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." -msgstr "" - -#: src/Constants/ThiefProperties.vala:128 -msgid "" -"Working with a lot of links? Turn on Experimental Mode to make your markdown " -"more readable `Ctrl+Shift+M`." -msgstr "" - -#: src/Controllers/FileManager.vala:39 -msgid "Stealing file contents..." -msgstr "" - -#: src/Controllers/FileManager.vala:40 -msgid "This isn't plagiarism, it's a remix!" -msgstr "" - -#: src/Controllers/FileManager.vala:41 -msgid "NYT Best Seller, here we come!" -msgstr "" - +#. Supported import file extensions #: src/Controllers/FileManager.vala:43 msgid "Importing File" msgstr "Importing File" @@ -358,15 +84,6 @@ msgstr "MHTML files" msgid "LaTeX file" msgstr "LaTeX file" -#: src/Controllers/Dialogs.vala:161 -msgid "Supported files" -msgstr "" - -#: src/Controllers/Dialogs.vala:170 -#, c-format -msgid "%s files" -msgstr "" - #: src/Controllers/Dialogs.vala:177 msgid "All files" msgstr "All files" @@ -395,16 +112,10 @@ msgstr "If you don't save, changes will be lost forever." msgid "Close without saving" msgstr "Close without saving" -#: src/Controllers/SheetManager.vala:157 src/Widgets/StatisticsBar.vala:93 +#: src/Controllers/SheetManager.vala:156 src/Widgets/StatisticsBar.vala:93 msgid "No file opened" msgstr "No file opened" -#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 -#: src/Widgets/PublisherPreviewWindow.vala:295 -#: src/Widgets/ProjectStatistics.vala:71 -msgid "Close" -msgstr "Close" - #: src/Connections/WriteFreelyConnection.vala:103 #: src/Connections/WordpressConnection.vala:85 msgid "Username" @@ -412,7 +123,6 @@ msgstr "Username" #: src/Connections/WriteFreelyConnection.vala:107 #: src/Connections/GhostConnection.vala:86 -#: src/Connections/WordpressConnection.vala:89 msgid "Password" msgstr "Password" @@ -422,43 +132,21 @@ msgstr "Password" msgid "Endpoint" msgstr "Endpoint" -#: src/Connections/WriteFreelyConnection.vala:127 -msgid "New WriteFreely Connection" -msgstr "" - #: src/Connections/WriteFreelyConnection.vala:130 #: src/Connections/GhostConnection.vala:109 #: src/Connections/WordpressConnection.vala:112 msgid "_Add Account" msgstr "Add Account" -#: src/Connections/WriteFreelyConnection.vala:233 -msgid "Taking your words, and letting them go... to the internet!" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:234 -msgid "Mhm... I see and I ship." -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:235 -msgid "Is this a selfie, and you're happy to see me?" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:238 -#: src/Connections/GhostConnection.vala:197 -#: src/Connections/WordpressConnection.vala:198 -msgid "Uploading images" -msgstr "Uploading Images" - #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid " Published" msgstr " Published" #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid "Post Published" msgstr "Post Published" @@ -466,45 +154,11 @@ msgstr "Post Published" msgid "E-mail" msgstr "E-mail" -#: src/Connections/GhostConnection.vala:106 -msgid "New ghost Connection" -msgstr "" - -#: src/Connections/GhostConnection.vala:192 -msgid "Your words are like Casper... Friendly!" -msgstr "" - -#: src/Connections/GhostConnection.vala:193 -msgid "I see your words, and I'm taking them to the internet!" -msgstr "" - -#: src/Connections/GhostConnection.vala:194 -msgid "Booooooooooo! (That's Ghost speak for Great Work!)" -msgstr "" - -#: src/Connections/WordpressConnection.vala:109 -msgid "New Wordpress Connection" -msgstr "" - -#: src/Connections/WordpressConnection.vala:191 -msgid "Taking it to the internet!" -msgstr "" - -#: src/Connections/WordpressConnection.vala:192 -msgid "Don't forget to share on reddit." -msgstr "" - -#: src/Connections/WordpressConnection.vala:193 -msgid "Pressing words together..." -msgstr "" - -#: src/Enrichments/Fountain.vala:32 -msgid "Characters" -msgstr "" - -#: src/Enrichments/Markdown.vala:30 -msgid "Citations" -msgstr "" +#: src/Connections/WriteFreelyConnection.vala:238 +#: src/Connections/GhostConnection.vala:197 +#: src/Connections/WordpressConnection.vala:217 +msgid "Uploading images" +msgstr "Uploading Images" #: src/Exporters/ExportDocx.vala:60 msgid "Export DocX" @@ -526,14 +180,6 @@ msgstr "Export LaTeX" msgid "Export Markdown" msgstr "Export Markdown" -#: src/Exporters/ExportFountain.vala:57 -msgid "Fountain files" -msgstr "" - -#: src/Exporters/ExportFountain.vala:63 -msgid "Export Fountain" -msgstr "" - #: src/Exporters/ExportMhtml.vala:62 msgid "Export MHTML" msgstr "Export MHTML" @@ -542,18 +188,6 @@ msgstr "Export MHTML" msgid "Export PDF" msgstr "Export PDF" -#: src/Exporters/ExportPdf.vala:149 -msgid "Simply Shakespearean." -msgstr "" - -#: src/Exporters/ExportPdf.vala:150 -msgid "Hmm... that's interesting..." -msgstr "" - -#: src/Exporters/ExportPdf.vala:151 -msgid "Your writing is insightful." -msgstr "" - #: src/Exporters/ExportPdf.vala:153 src/Exporters/ExportPdf.vala:183 msgid "Working PDF Magic" msgstr "Working PDF Magic" @@ -562,13 +196,17 @@ msgstr "Working PDF Magic" msgid "Making sure your hard work looks purrfect..." msgstr "Making sure your hard work looks purrfect..." -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:132 -#: src/Widgets/QuickPreferences.vala:216 src/Widgets/QuickPreferences.vala:295 +#: src/Exporters/ExportPdf.vala:107 +msgid "Print to File" +msgstr "Print to File" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:146 +#: src/Widgets/QuickPreferences.vala:237 src/Widgets/QuickPreferences.vala:326 msgid "About ThiefMD" msgstr "About ThiefMD" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:130 -#: src/Widgets/QuickPreferences.vala:214 src/Widgets/QuickPreferences.vala:293 +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:144 +#: src/Widgets/QuickPreferences.vala:235 src/Widgets/QuickPreferences.vala:324 msgid "About" msgstr "About" @@ -576,42 +214,28 @@ msgstr "About" msgid "Credits" msgstr "Credits" -#. website = ThiefProperties.URL; -#: src/Widgets/About.vala:94 -msgid "Feedback" -msgstr "" - -#. license_type = ThiefProperties.LICENSE_TYPE; -#: src/Widgets/About.vala:99 -msgid "This program comes with absolutely no warranty." -msgstr "" - -#: src/Widgets/About.vala:100 -msgid "" -"See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General " -"Public License, version 3 or later</a> for details." -msgstr "" +#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 +#: src/Widgets/PublisherPreviewWindow.vala:295 +#: src/Widgets/ProjectStatistics.vala:71 +msgid "Close" +msgstr "Close" -#: src/Widgets/HeaderBar.vala:86 +#: src/Widgets/Sheets.vala:179 msgid "New Sheet" msgstr "New Sheet" -#: src/Widgets/HeaderBar.vala:98 +#: src/Widgets/HeaderBar.vala:78 msgid "Change View" msgstr "Change View" -#: src/Widgets/HeaderBar.vala:106 +#: src/ThiefApp.vala:186 msgid "Add Folder to Library" msgstr "Add Folder to Library" -#: src/Widgets/HeaderBar.vala:129 +#: src/Widgets/HeaderBar.vala:92 msgid "Settings" msgstr "Settings" -#: src/Widgets/HeaderBar.vala:144 -msgid "Show Notes" -msgstr "" - #: src/Widgets/Sheet.vala:215 msgid "Sort by" msgstr "Sort by" @@ -640,30 +264,26 @@ msgstr "Sort by Date Ascending" msgid "Sort by Date Descending" msgstr "Sort by Date Descending" -#: src/Widgets/Sheet.vala:261 src/Widgets/QuickPreferences.vala:95 -#: src/Widgets/QuickPreferences.vala:179 src/Widgets/QuickPreferences.vala:258 +#: src/Widgets/Sheet.vala:273 src/Widgets/QuickPreferences.vala:95 +#: src/Widgets/QuickPreferences.vala:195 src/Widgets/QuickPreferences.vala:279 msgid "Preview" msgstr "Preview" -#: src/Widgets/Sheet.vala:269 src/Widgets/Preferences.vala:482 +#: src/Widgets/Sheet.vala:281 src/Widgets/Preferences.vala:482 #: src/Widgets/PublisherPreviewWindow.vala:155 #: src/Widgets/ProjectStatistics.vala:64 msgid "Export" msgstr "Export" -#: src/Widgets/Sheet.vala:277 -msgid "Copy File Path" -msgstr "" - #. Gtk.MenuItem menu_rename = new Gtk.MenuItem.with_label (_("Rename File")); #. menu_rename.activate.connect (() => { #. }); #. menu.add (menu_rename); -#: src/Widgets/Sheet.vala:293 +#: src/Widgets/Sheet.vala:305 msgid "Danger Zone" msgstr "Danger Zone" -#: src/Widgets/Sheet.vala:299 +#: src/Widgets/Sheet.vala:311 msgid "Move to Trash" msgstr "Move to Trash" @@ -675,128 +295,47 @@ msgstr "Load from Disk" msgid "_Keep what's in editor" msgstr "Keep what's in Editor" -#: src/Widgets/Editor.vala:1263 +#: src/Widgets/Editor.vala:1278 msgid "Insert Datetime" msgstr "Insert Datetime" -#: src/Widgets/Editor.vala:1281 +#: src/Widgets/Editor.vala:1296 msgid "Insert YAML Frontmatter" msgstr "Insert YAML Frontmatter" -#: src/Widgets/Editor.vala:1379 -msgid "Insert Citation" -msgstr "" - -#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); -#: src/Widgets/Library.vala:73 -msgid "Library" -msgstr "Library" - -#: src/Widgets/Library.vala:538 +#: src/Widgets/Library.vala:539 msgid "Export Preview" msgstr "Export Preview" -#: src/Widgets/Library.vala:548 +#: src/Widgets/Library.vala:549 msgid "Writing Statistics" msgstr "Writing Statistics" -#: src/Widgets/Library.vala:561 +#: src/Widgets/Library.vala:562 msgid "Search " msgstr "Search" -#: src/Widgets/Library.vala:573 -msgid "Open in File Manager" -msgstr "" - -#: src/Widgets/Library.vala:585 +#: src/Widgets/Library.vala:586 msgid "Create Sub-Folder" msgstr "Create Sub-Folder" -#: src/Widgets/Library.vala:602 +#: src/Widgets/Library.vala:603 msgid "Hide from Library" msgstr "Hide from Library" -#: src/Widgets/Library.vala:626 +#: src/Widgets/Library.vala:627 msgid "Show Hidden Items" msgstr "Show Hidden Items" -#: src/Widgets/Library.vala:638 -msgid "Set Project Icon" -msgstr "" - -#: src/Widgets/Library.vala:641 src/Widgets/Preferences.vala:389 -msgid "None" -msgstr "None" - -#: src/Widgets/Library.vala:644 -msgid "Folder" -msgstr "" - -#: src/Widgets/Library.vala:647 -msgid "Reader" -msgstr "" - -#: src/Widgets/Library.vala:650 -msgid "Love" -msgstr "" - -#: src/Widgets/Library.vala:653 -msgid "Game" -msgstr "" - -#: src/Widgets/Library.vala:656 -msgid "Art" -msgstr "" - -#: src/Widgets/Library.vala:659 -msgid "Nature" -msgstr "" - -#: src/Widgets/Library.vala:662 -msgid "Food" -msgstr "" - -#: src/Widgets/Library.vala:665 -msgid "Help" -msgstr "" - -#: src/Widgets/Library.vala:668 -msgid "Cool" -msgstr "" - -#: src/Widgets/Library.vala:671 -msgid "Angel" -msgstr "" - -#: src/Widgets/Library.vala:674 -msgid "Monkey" -msgstr "" - -#: src/Widgets/Library.vala:677 -msgid "WordPress" -msgstr "" - -#: src/Widgets/Library.vala:680 -msgid "Ghost" -msgstr "" - -#: src/Widgets/Library.vala:683 -msgid "Write Freely" -msgstr "" - -#: src/Widgets/Library.vala:686 -msgid "Trash" -msgstr "" - -#: src/Widgets/Library.vala:696 +#: src/Widgets/Library.vala:697 msgid "Remove from Library" msgstr "Remove from Library" -#: src/Widgets/Library.vala:933 +#: src/Widgets/Library.vala:934 msgid "Copy" msgstr "Copy" -#: src/Widgets/Library.vala:935 +#: src/Widgets/Library.vala:936 msgid "Move" msgstr "Move" @@ -816,10 +355,6 @@ msgstr "Sheet Name" msgid "Create" msgstr "Create" -#: src/Widgets/NewSheet.vala:41 -msgid "Import" -msgstr "" - #: src/Widgets/Preferences.vala:50 msgid "Current Connections" msgstr "Current Conenctions" @@ -840,40 +375,10 @@ msgstr "Choose your blogging software." msgid " WriteFreely" msgstr "WriteFreely" -#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 -#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 -#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 -msgid "Connection Error" -msgstr "" - #: src/Widgets/Preferences.vala:91 msgid " ghost" msgstr "Ghost" -#: src/Widgets/Preferences.vala:125 -msgid " WordPress" -msgstr "" - -#: src/Widgets/Preferences.vala:159 -msgid " Medium" -msgstr "" - -#: src/Widgets/Preferences.vala:193 -msgid " Forem" -msgstr "" - -#: src/Widgets/Preferences.vala:227 -msgid " Hashnode" -msgstr "" - -#: src/Widgets/Preferences.vala:279 -msgid "Connections" -msgstr "" - -#: src/Widgets/Preferences.vala:340 -msgid "Remove " -msgstr "" - #: src/Widgets/Preferences.vala:343 msgid "_Remove" msgstr "Remove" @@ -882,22 +387,14 @@ msgstr "Remove" msgid "_Keep" msgstr "Keep" -#: src/Widgets/Preferences.vala:373 -msgid "Display" -msgstr "" - -#: src/Widgets/Preferences.vala:377 -msgid "Display Options" -msgstr "" - -#: src/Widgets/Preferences.vala:378 -msgid "Make ThiefMD feel like home." -msgstr "" - #: src/Widgets/Preferences.vala:384 msgid "Focus" msgstr "Focus" +#: src/Widgets/Library.vala:642 src/Widgets/Preferences.vala:389 +msgid "None" +msgstr "None" + #: src/Widgets/Preferences.vala:390 msgid "Paragraph" msgstr "Paragraph" @@ -910,33 +407,17 @@ msgstr "Sentence" msgid "Word" msgstr "Word" -#: src/Widgets/Preferences.vala:431 -msgid "Number of Lines to Preview in Sheets View" -msgstr "" - #: src/Widgets/Preferences.vala:440 msgid "Add New Theme" msgstr "Add New Theme" -#: src/Widgets/Preferences.vala:487 -msgid "Compiling Options" -msgstr "" - -#: src/Widgets/Preferences.vala:488 -msgid "Adjust how Markdown files are compiled together." -msgstr "" - #: src/Widgets/Preferences.vala:496 msgid "First Markdown File includes Author Metadata" msgstr "First Markdown file includes Author Metadata" #: src/Widgets/Preferences.vala:498 -msgid "" -"First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>Author metadata</a>" -msgstr "" -"First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>Author metadata</a>" +msgid "First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Author metadata</a>" +msgstr "First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Author metadata</a>" #: src/Widgets/Preferences.vala:514 msgid "Resolve full paths to resources" @@ -954,14 +435,6 @@ msgstr "Include YAML title as Heading" msgid "Include YAML title as H1 Heading" msgstr "Include YAML title as H1 Heading" -#: src/Widgets/Preferences.vala:543 -msgid "Page Setup" -msgstr "" - -#: src/Widgets/Preferences.vala:544 -msgid "Configure PDF export options." -msgstr "" - #: src/Widgets/Preferences.vala:552 msgid "Page Break between Folders" msgstr "Page Break between Folders" @@ -986,41 +459,13 @@ msgstr "Side margins in PDF in inches" msgid "Top & Bottom margins in PDF in inches" msgstr "Top and Bottom margins in PDF in inches" -#: src/Widgets/Preferences.vala:641 -msgid "PDF CSS" -msgstr "" +#: src/Widgets/Preferences.vala:657 +msgid "Add Export Style" +msgstr "Add Export Style" -#: src/Widgets/Preferences.vala:642 -msgid "Choose CSS Style for PDF Export." -msgstr "" - -#: src/Widgets/Preferences.vala:650 -msgid "ePub & HTML CSS" -msgstr "" - -#: src/Widgets/Preferences.vala:651 -msgid "Choose CSS Style to use for ePub and HTML Export." -msgstr "" - -#: src/Widgets/Preferences.vala:657 -msgid "Add Export Style" -msgstr "Add Export Style" - -#: src/Widgets/Preferences.vala:680 -msgid "Editor" -msgstr "" - -#: src/Widgets/Preferences.vala:684 -msgid "Editor Settings" -msgstr "" - -#: src/Widgets/Preferences.vala:685 -msgid "Modify the ThiefMD environment." -msgstr "" - -#: src/Widgets/Preferences.vala:693 -msgid "Enable spellcheck" -msgstr "Enable Spellcheck" +#: src/Widgets/Preferences.vala:693 +msgid "Enable spellcheck" +msgstr "Enable Spellcheck" #: src/Widgets/Preferences.vala:695 msgid "Check document spelling" @@ -1050,22 +495,6 @@ msgstr "Toggle writing statistics" msgid "Show writing statistics" msgstr "Show writing statistics" -#: src/Widgets/Preferences.vala:765 -msgid "Disable application tips" -msgstr "" - -#: src/Widgets/Preferences.vala:766 -msgid "Start with new empty sheet on launch" -msgstr "" - -#: src/Widgets/Preferences.vala:779 -msgid "ThiefMD Settings" -msgstr "" - -#: src/Widgets/Preferences.vala:780 -msgid "Modify the ThiefMD appearance." -msgstr "" - #: src/Widgets/Preferences.vala:790 msgid "Toggle interface theming" msgstr "Toggle interface theming" @@ -1098,18 +527,10 @@ msgstr "Toggle library order" msgid "Keep library order" msgstr "Keep library order" -#: src/Widgets/Preferences.vala:858 -msgid "Toggle experimental features" -msgstr "" - -#: src/Widgets/Preferences.vala:860 -msgid "Enable experimental features" -msgstr "" - #: src/Widgets/PublisherPreviewWindow.vala:67 #: src/Widgets/PublisherPreviewWindow.vala:209 -#: src/Widgets/QuickPreferences.vala:104 src/Widgets/QuickPreferences.vala:188 -#: src/Widgets/QuickPreferences.vala:267 +#: src/Widgets/QuickPreferences.vala:109 src/Widgets/QuickPreferences.vala:204 +#: src/Widgets/QuickPreferences.vala:293 msgid "Publishing Preview" msgstr "Publishing Preview" @@ -1134,14 +555,11 @@ msgid "words" msgstr "words" #: src/Widgets/ProjectStatistics.vala:126 -#, c-format -msgid "" -"<b>Reading Time:</b>\n" +msgid "<b>Reading Time:</b>\n" "%d %s\n" "%d %s\n" "%d %s" -msgstr "" -"<b>Reading Time:</b>\n" +msgstr "<b>Reading Time:</b>\n" "%d %s\n" "%d %s\n" "%d %s" @@ -1190,75 +608,41 @@ msgstr "Write Good" msgid "Toggle Write Good" msgstr "Toggle Write Good" -#: src/Widgets/QuickPreferences.vala:71 -msgid "Check Grammar" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:74 -msgid "Toggle Grammar Checking" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:87 -msgid "Grammar check is not available for your language" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:181 -#: src/Widgets/QuickPreferences.vala:260 +#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:197 +#: src/Widgets/QuickPreferences.vala:281 msgid "Launch Preview" msgstr "Launch Preview" -#: src/Widgets/QuickPreferences.vala:106 src/Widgets/QuickPreferences.vala:190 -#: src/Widgets/QuickPreferences.vala:269 -msgid "Open Export Window" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:113 src/Widgets/QuickPreferences.vala:197 -#: src/Widgets/QuickPreferences.vala:276 -msgid "Search Library" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:115 src/Widgets/QuickPreferences.vala:199 -#: src/Widgets/QuickPreferences.vala:278 -msgid "Open Search Window" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:121 src/Widgets/QuickPreferences.vala:205 -#: src/Widgets/QuickPreferences.vala:284 +#: src/Widgets/QuickPreferences.vala:135 src/Widgets/QuickPreferences.vala:226 +#: src/Widgets/QuickPreferences.vala:315 msgid "Preferences" msgstr "Preferences" -#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:207 -#: src/Widgets/QuickPreferences.vala:286 +#: src/Widgets/QuickPreferences.vala:137 src/Widgets/QuickPreferences.vala:228 +#: src/Widgets/QuickPreferences.vala:317 msgid "Edit Preferences" msgstr "Edit Preferences" -#: src/Widgets/ThemeSelector.vala:55 -msgid "Spacing" -msgstr "" +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Widgets/ThemeSelector.vala:50 +msgid "Font" +msgstr "Font" #: src/Widgets/ThemeSelector.vala:142 msgid "Font Selector" msgstr "Font Selector" -#: src/Widgets/ThemeSelector.vala:326 -msgid "Download" -msgstr "" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "more themes" -msgstr "" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "Stored in" -msgstr "" +#: src/Widgets/ThemeSelector.vala:320 +msgid "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" +"<small>Stored in <a href='file://" +msgstr "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" +"<small>Stored in <a href='file://" #: src/Widgets/SearchBar.vala:110 -#, c-format msgid "(%d occurences)" msgstr "(%d occurences)" #: src/Widgets/StatisticsBar.vala:100 -#, c-format msgid "%d %s %d %s and %d %s reading time." msgstr "%d %s %d %s and %d %s reading time." @@ -1283,7 +667,6 @@ msgid "seconds" msgstr "seconds" #: src/Widgets/StatisticsBar.vala:106 -#, c-format msgid "%s : %d words." msgstr "%s : %d words." @@ -1291,9 +674,9 @@ msgstr "%s : %d words." msgid "Library Search" msgstr "Library Search" -#: src/Widgets/SearchWindow.vala:421 -msgid "Search" -msgstr "" +#: src/Widgets/SearchWindow.vala:422 +msgid " Search" +msgstr " Search" #: src/Widgets/SearchWindow.vala:445 msgid "Monitor for Library changes" @@ -1307,15 +690,611 @@ msgstr "<b>Stealing file contents...</b>" msgid "Heading" msgstr "Heading" -#~ msgid "Print to File" -#~ msgstr "Print to File" +#. Font settings +#. Arbitrary strings +#: src/Constants/AppSettings.vala:104 +msgid "# Click on a sheet to get started\n" +"\n" +"First time here? Drag a folder into the library, or click on the Folder icon to select a folder to add.\n" +"\n" +"## Thief Tip:\n" +"\n" +"%s" +msgstr "# Click on a sheet to get started\n" +"\n" +"First time here? Drag a folder into the library, or click on the Folder icon to select a folder to add.\n" +"\n" +"## Thief Tip:\n" +"\n" +"%s" + +#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); +#: src/ThiefApp.vala:182 +msgid "Library" +msgstr "Library" + +#: src/Widgets/Preferences.vala:680 +msgid "Editor" +msgstr "" + +#: src/Widgets/SearchWindow.vala:421 +msgid "Search" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:111 src/Widgets/QuickPreferences.vala:206 +#: src/Widgets/QuickPreferences.vala:295 +msgid "Open Export Window" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:218 +#: src/Widgets/QuickPreferences.vala:307 +msgid "Search Library" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:125 src/Widgets/QuickPreferences.vala:220 +#: src/Widgets/QuickPreferences.vala:309 +msgid "Open Search Window" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:55 +msgid "Spacing" +msgstr "" + +#: src/Widgets/Preferences.vala:858 +msgid "Toggle experimental features" +msgstr "" + +#: src/Widgets/Preferences.vala:860 +msgid "Enable experimental features" +msgstr "" + +#: src/Controllers/Dialogs.vala:161 +msgid "Supported files" +msgstr "" + +#: src/Controllers/Dialogs.vala:170 +msgid "%s files" +msgstr "" + +#: src/Widgets/Library.vala:574 +msgid "Open in File Manager" +msgstr "" + +#: src/Widgets/NewSheet.vala:41 +msgid "Import" +msgstr "" + +#: src/Widgets/Preferences.vala:125 +msgid " WordPress" +msgstr "" + +#: src/Constants/ThiefProperties.vala:25 +msgid "The Markdown editor worth stealing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:87 +msgid "Contributors who help make ThiefMD awesome" +msgstr "" + +#: src/Constants/ThiefProperties.vala:89 +msgid "French Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:90 +msgid "Slovak Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:91 +msgid "Swedish Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Original Code" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:95 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 +msgid "Copyright" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "GNU General Public License v3.0" +msgstr "" + +#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +msgid "SIL OPEN FONT LICENSE Version 1.1" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Preview CSS" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Mash up of Splendor and Modest" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:109 +msgid "The MIT License (MIT)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:102 +msgid "Markdown Parsing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:102 +msgid "BSD-style License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:103 +msgid "Syntax Highlighting" +msgstr "" + +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:107 +msgid "BSD-3-Clause License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Math Rendering" +msgstr "" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Khan Academy and other contributors." +msgstr "" + +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +msgid "MIT License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:105 +msgid "XML Parsing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "Pandoc Export" +msgstr "" -#~ msgid "" -#~ "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" -#~ "<small>Stored in <a href='file://" -#~ msgstr "" -#~ "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" -#~ "<small>Stored in <a href='file://" +#: src/Constants/ThiefProperties.vala:106 +msgid "John MacFarlane and others" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "GNU General Public License v2.0" +msgstr "" + +#: src/Constants/ThiefProperties.vala:109 +msgid "libwritegood-vala based on" +msgstr "" + +#: src/Constants/ThiefProperties.vala:109 +msgid "write-good: Naive linter for English prose" +msgstr "" + +#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME +#: src/Constants/ThiefProperties.vala:113 +msgid "A3 (11.7 x 16.5 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:114 +msgid "A4 (8 x 11 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:115 +msgid "A5 (5.8 x 8.3 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:116 +msgid "B5 (6.93 x 9.84 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:117 +msgid "Executive (7 x 10 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:118 +msgid "Legal (8.5 x 14 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:119 +msgid "Letter (8.5 x 11 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:122 +msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." +msgstr "" + +#: src/Constants/ThiefProperties.vala:123 +msgid "No built in dark mode? Dark themes are available at https://themes.thiefmd.com. Add more in the Preferences (`Ctrl+,`)." +msgstr "" + +#: src/Constants/ThiefProperties.vala:124 +msgid "Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and click Export." +msgstr "" + +#: src/Constants/ThiefProperties.vala:125 +msgid "Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." +msgstr "" + +#: src/Constants/ThiefProperties.vala:126 +msgid "Ready to publish your great work? Right-click on the folder and choose \"Export Preview\"" +msgstr "" + +#: src/Constants/ThiefProperties.vala:127 +msgid "Want to block out distractions? Full-screen is just an `F11` away." +msgstr "" + +#: src/Constants/ThiefProperties.vala:128 +msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." +msgstr "" + +#: src/Constants/ThiefProperties.vala:129 +msgid "Working with a lot of links? Turn on Experimental Mode to make your markdown more readable `Ctrl+Shift+M`." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:127 +msgid "New WriteFreely Connection" +msgstr "" + +#: src/Connections/GhostConnection.vala:106 +msgid "New ghost Connection" +msgstr "" + +#: src/Connections/WordpressConnection.vala:109 +msgid "New Wordpress Connection" +msgstr "" + +#. website = ThiefProperties.URL; +#: src/Widgets/About.vala:94 +msgid "Feedback" +msgstr "" + +#. license_type = ThiefProperties.LICENSE_TYPE; +#: src/Widgets/About.vala:99 +msgid "This program comes with absolutely no warranty." +msgstr "" + +#: src/Widgets/About.vala:100 +msgid "See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, version 3 or later</a> for details." +msgstr "" + +#: src/Widgets/Preferences.vala:279 +msgid "Connections" +msgstr "" + +#: src/Widgets/Preferences.vala:340 +msgid "Remove " +msgstr "" + +#: src/Widgets/Preferences.vala:373 +msgid "Display" +msgstr "" + +#: src/Widgets/Preferences.vala:377 +msgid "Display Options" +msgstr "" + +#: src/Widgets/Preferences.vala:378 +msgid "Make ThiefMD feel like home." +msgstr "" + +#: src/Widgets/Preferences.vala:487 +msgid "Compiling Options" +msgstr "" + +#: src/Widgets/Preferences.vala:488 +msgid "Adjust how Markdown files are compiled together." +msgstr "" + +#: src/Widgets/Preferences.vala:543 +msgid "Page Setup" +msgstr "" + +#: src/Widgets/Preferences.vala:544 +msgid "Configure PDF export options." +msgstr "" + +#: src/Widgets/Preferences.vala:641 +msgid "PDF CSS" +msgstr "" + +#: src/Widgets/Preferences.vala:642 +msgid "Choose CSS Style for PDF Export." +msgstr "" + +#: src/Widgets/Preferences.vala:650 +msgid "ePub & HTML CSS" +msgstr "" + +#: src/Widgets/Preferences.vala:651 +msgid "Choose CSS Style to use for ePub and HTML Export." +msgstr "" + +#: src/Widgets/Preferences.vala:684 +msgid "Editor Settings" +msgstr "" + +#: src/Widgets/Preferences.vala:685 +msgid "Modify the ThiefMD environment." +msgstr "" + +#: src/Widgets/Preferences.vala:779 +msgid "ThiefMD Settings" +msgstr "" + +#: src/Widgets/Preferences.vala:780 +msgid "Modify the ThiefMD appearance." +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Download" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "more themes" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Stored in" +msgstr "" + +#: src/ThiefApp.vala:315 +msgid "Fountain" +msgstr "" + +#: src/Constants/ThiefProperties.vala:101 +msgid "Fountain Preview and Export" +msgstr "" + +#: src/Exporters/ExportFountain.vala:57 +msgid "Fountain files" +msgstr "" + +#: src/Exporters/ExportFountain.vala:63 +msgid "Export Fountain" +msgstr "" + +#: src/Widgets/HeaderBar.vala:107 +msgid "Show Notes" +msgstr "" + +#: src/Widgets/Sheet.vala:289 +msgid "Copy File Path" +msgstr "" + +#: src/Widgets/Editor.vala:1394 +msgid "Insert Citation" +msgstr "" + +#: src/Widgets/Library.vala:639 +msgid "Set Project Icon" +msgstr "" + +#: src/Widgets/Library.vala:645 +msgid "Folder" +msgstr "" + +#: src/Widgets/Library.vala:648 +msgid "Reader" +msgstr "" + +#: src/Widgets/Library.vala:651 +msgid "Love" +msgstr "" + +#: src/Widgets/Library.vala:654 +msgid "Game" +msgstr "" + +#: src/Widgets/Library.vala:657 +msgid "Art" +msgstr "" + +#: src/Widgets/Library.vala:660 +msgid "Nature" +msgstr "" + +#: src/Widgets/Library.vala:663 +msgid "Food" +msgstr "" + +#: src/Widgets/Library.vala:666 +msgid "Help" +msgstr "" + +#: src/Widgets/Library.vala:669 +msgid "Cool" +msgstr "" + +#: src/Widgets/Library.vala:672 +msgid "Angel" +msgstr "" + +#: src/Widgets/Library.vala:675 +msgid "Monkey" +msgstr "" + +#: src/Widgets/Library.vala:678 +msgid "WordPress" +msgstr "" + +#: src/Widgets/Library.vala:681 +msgid "Ghost" +msgstr "" + +#: src/Widgets/Library.vala:684 +msgid "Write Freely" +msgstr "" + +#: src/Widgets/Library.vala:687 +msgid "Trash" +msgstr "" + +#: src/Widgets/Preferences.vala:431 +msgid "Number of Lines to Preview in Sheets View" +msgstr "" + +#: src/Widgets/Preferences.vala:765 +msgid "Disable application tips" +msgstr "" + +#: src/Widgets/Preferences.vala:766 +msgid "Start with new empty sheet on launch" +msgstr "" + +#: src/Enrichments/Fountain.vala:32 +msgid "Characters" +msgstr "" + +#: src/Enrichments/Markdown.vala:30 +msgid "Citations" +msgstr "" + +#: src/Constants/ThiefProperties.vala:95 +msgid "Stolen Victory Font" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "Grammar Check" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "the AbiSource Community" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "GNU Lesser General Public License v2.1" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:71 +msgid "Check Grammar" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:74 +msgid "Toggle Grammar Checking" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:87 +msgid "Grammar check is not available for your language" +msgstr "" + +#: src/Constants/ThiefProperties.vala:88 +msgid "Czech Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "PDF Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "Simon Sapin and contributors" +msgstr "" + +#: src/Controllers/FileManager.vala:39 +msgid "Stealing file contents..." +msgstr "" + +#: src/Controllers/FileManager.vala:40 +msgid "This isn't plagiarism, it's a remix!" +msgstr "" + +#: src/Controllers/FileManager.vala:41 +msgid "NYT Best Seller, here we come!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:233 +msgid "Taking your words, and letting them go... to the internet!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:234 +msgid "Mhm... I see and I ship." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:235 +msgid "Is this a selfie, and you're happy to see me?" +msgstr "" + +#: src/Connections/GhostConnection.vala:192 +msgid "Your words are like Casper... Friendly!" +msgstr "" + +#: src/Connections/GhostConnection.vala:193 +msgid "I see your words, and I'm taking them to the internet!" +msgstr "" + +#: src/Connections/GhostConnection.vala:194 +msgid "Booooooooooo! (That's Ghost speak for Great Work!)" +msgstr "" + +#: src/Connections/WordpressConnection.vala:192 +msgid "Taking it to the internet!" +msgstr "" + +#: src/Connections/WordpressConnection.vala:193 +msgid "Don't forget to share on reddit." +msgstr "" + +#: src/Connections/WordpressConnection.vala:194 +msgid "Pressing words together..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:149 +msgid "Simply Shakespearean." +msgstr "" + +#: src/Exporters/ExportPdf.vala:150 +msgid "Hmm... that's interesting..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:151 +msgid "Your writing is insightful." +msgstr "" + +#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 +#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 +#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 +msgid "Connection Error" +msgstr "" + +#: src/Widgets/Preferences.vala:159 +msgid " Medium" +msgstr "" + +#: src/Widgets/Preferences.vala:193 +msgid " Forem" +msgstr "" + +#: src/Widgets/Preferences.vala:227 +msgid " Hashnode" +msgstr "" + +#: src/Constants/ThiefProperties.vala:92 +msgid "German Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:93 +msgid "Finnish Translation Contributors" +msgstr "" + +#: src/Connections/WordpressConnection.vala:89 +msgid "Application Password" +msgstr "" -#~ msgid " Search" -#~ msgstr " Search" diff --git a/po/es.po b/po/es.po index 547290fb..90d1fa63 100644 --- a/po/es.po +++ b/po/es.po @@ -1,328 +1,37 @@ msgid "" msgstr "" -"Project-Id-Version: ThiefMD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-26 11:34-0700\n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: POEditor.com\n" +"Project-Id-Version: ThiefMD\n" +"Language: es\n" -#: src/ThiefApp.vala:244 +#: src/ThiefApp.vala:309 msgid "HTML" msgstr "HTML" -#: src/ThiefApp.vala:245 +#: src/ThiefApp.vala:310 msgid "PDF" msgstr "PDF" -#: src/ThiefApp.vala:246 +#: src/ThiefApp.vala:311 msgid "MHTML" msgstr "MHTML" -#: src/ThiefApp.vala:247 +#: src/ThiefApp.vala:312 msgid "Markdown" msgstr "Reducción" -#: src/ThiefApp.vala:248 +#: src/ThiefApp.vala:313 msgid "LaTeX" msgstr "Látex" -#: src/ThiefApp.vala:249 +#: src/ThiefApp.vala:314 msgid "DocX" msgstr "DocX" -#: src/ThiefApp.vala:250 -msgid "Fountain" -msgstr "Fuente" - -#. Visual Settings -#. Arbitrary strings -#: src/Constants/AppSettings.vala:104 -#, c-format -msgid "" -"# Click on a sheet to get started\n" -"\n" -"First time here? Drag a folder into the library, or click on the Folder " -"icon to select a folder to add.\n" -"\n" -"## Thief Tip:\n" -"\n" -"%s" -msgstr "" -"# Haga clic en una hoja para comenzar\n" -"\n" -"¿Primera vez aquí? Arrastre una carpeta a la biblioteca o haga clic en el " -"icono Carpeta para seleccionar una carpeta para agregar.\n" -"\n" -"## Consejo de ladrón:\n" -"\n" -"%s" - -#: src/Constants/ThiefProperties.vala:25 -msgid "The Markdown editor worth stealing" -msgstr "El editor de Markdown que vale la pena robar" - -#: src/Constants/ThiefProperties.vala:86 -msgid "Contributors who help make ThiefMD awesome" -msgstr "Colaboradores que ayudan a que ThiefMD sea increíble" - -#: src/Constants/ThiefProperties.vala:87 -msgid "Czech Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:88 -msgid "French Translation Contributors" -msgstr "Colaboradores de traducción al francés" - -#: src/Constants/ThiefProperties.vala:89 -msgid "Slovak Translation Contributors" -msgstr "Colaboradores de traducción al eslovaco" - -#: src/Constants/ThiefProperties.vala:90 -msgid "Swedish Translation Contributors" -msgstr "Colaboradores de traducción al sueco" - -#: src/Constants/ThiefProperties.vala:91 -#, fuzzy -msgid "German Translation Contributors" -msgstr "Colaboradores de traducción al francés" - -#: src/Constants/ThiefProperties.vala:92 -#, fuzzy -msgid "Finnish Translation Contributors" -msgstr "Colaboradores de traducción al francés" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Original Code" -msgstr "Codigo original" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" -msgstr "Basado en <a href='https://github.com/lainsce/quilter'> Quilter </a>" - -#: src/Constants/ThiefProperties.vala:93 src/Constants/ThiefProperties.vala:94 -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:101 -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -#: src/Constants/ThiefProperties.vala:105 -#: src/Constants/ThiefProperties.vala:106 -#: src/Constants/ThiefProperties.vala:107 -#: src/Constants/ThiefProperties.vala:108 -msgid "Copyright" -msgstr "Derechos de autor" - -#: src/Constants/ThiefProperties.vala:93 -msgid "GNU General Public License v3.0" -msgstr "Licencia pública general GNU v3.0" - -#: src/Constants/ThiefProperties.vala:94 -msgid "Stolen Victory Font" -msgstr "" - -#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -msgid "SIL OPEN FONT LICENSE Version 1.1" -msgstr "LICENCIA DE FUENTE ABIERTA SIL Versión 1.1" - -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -msgid "MIT License" -msgstr "Licencia MIT" - -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Widgets/ThemeSelector.vala:50 -msgid "Font" -msgstr "Fuente" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Preview CSS" -msgstr "Vista previa de CSS" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Mash up of Splendor and Modest" -msgstr "Mezcla de esplendor y modestia" - -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:108 -msgid "The MIT License (MIT)" -msgstr "La licencia del MIT (MIT)" - -#: src/Constants/ThiefProperties.vala:100 -msgid "Fountain Preview and Export" -msgstr "Vista previa y exportación de fuentes" - -#: src/Constants/ThiefProperties.vala:101 -msgid "Markdown Parsing" -msgstr "Análisis de Markdown" - -#: src/Constants/ThiefProperties.vala:101 -msgid "BSD-style License" -msgstr "Licencia estilo BSD" - -#: src/Constants/ThiefProperties.vala:102 -msgid "Syntax Highlighting" -msgstr "Resaltado de sintaxis" - -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:106 -msgid "BSD-3-Clause License" -msgstr "Licencia BSD-3-Cláusula" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Math Rendering" -msgstr "Representación matemática" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Khan Academy and other contributors." -msgstr "Khan Academy y otros colaboradores." - -#: src/Constants/ThiefProperties.vala:104 -msgid "XML Parsing" -msgstr "Análisis XML" - -#: src/Constants/ThiefProperties.vala:105 -msgid "Pandoc Export" -msgstr "Exportación Pandoc" - -#: src/Constants/ThiefProperties.vala:105 -msgid "John MacFarlane and others" -msgstr "John MacFarlane y otros" - -#: src/Constants/ThiefProperties.vala:105 -msgid "GNU General Public License v2.0" -msgstr "Licencia pública general GNU v2.0" - -#: src/Constants/ThiefProperties.vala:106 -msgid "PDF Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "Simon Sapin and contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "Grammar Check" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "the AbiSource Community" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "GNU Lesser General Public License v2.1" -msgstr "" - -#: src/Constants/ThiefProperties.vala:108 -msgid "libwritegood-vala based on" -msgstr "libwritegood-vala basado en" - -#: src/Constants/ThiefProperties.vala:108 -msgid "write-good: Naive linter for English prose" -msgstr "write-good: linter ingenuo para prosa inglesa" - -#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME -#: src/Constants/ThiefProperties.vala:112 -msgid "A3 (11.7 x 16.5 inches)" -msgstr "A3 (11,7 x 16,5 pulgadas)" - -#: src/Constants/ThiefProperties.vala:113 -msgid "A4 (8 x 11 inches)" -msgstr "A4 (8 x 11 pulgadas)" - -#: src/Constants/ThiefProperties.vala:114 -msgid "A5 (5.8 x 8.3 inches)" -msgstr "A5 (5,8 x 8,3 pulgadas)" - -#: src/Constants/ThiefProperties.vala:115 -msgid "B5 (6.93 x 9.84 inches)" -msgstr "B5 (6,93 x 9,84 pulgadas)" - -#: src/Constants/ThiefProperties.vala:116 -msgid "Executive (7 x 10 inches)" -msgstr "Ejecutivo (7 x 10 pulgadas)" - -#: src/Constants/ThiefProperties.vala:117 -msgid "Legal (8.5 x 14 inches)" -msgstr "Legal (8,5 x 14 pulgadas)" - -#: src/Constants/ThiefProperties.vala:118 -msgid "Letter (8.5 x 11 inches)" -msgstr "Carta (8,5 x 11 pulgadas)" - -#: src/Constants/ThiefProperties.vala:121 -msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." -msgstr "" -"¿No te gusta lo que ves? Presione `Ctrl +` para acceder a las preferencias." - -#: src/Constants/ThiefProperties.vala:122 -msgid "" -"No built in dark mode? Dark themes are available at https://themes.thiefmd." -"com. Add more in the Preferences (`Ctrl+,`)." -msgstr "" -"¿No construido en modo oscuro? Los temas oscuros están disponibles en " -"https://themes.thiefmd.com. Agregue más en las Preferencias (`Ctrl +,`)." - -#: src/Constants/ThiefProperties.vala:123 -msgid "" -"Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and " -"click Export." -msgstr "" -"¿No te gusta cómo se ve la vista previa? Presione Ctrl +, para acceder a las " -"preferencias y haga clic en Exportar." - -#: src/Constants/ThiefProperties.vala:124 -msgid "" -"Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." -msgstr "" -"¿Quiere importar un ePub, HTML o DocX? Haga clic en Importar en el mensaje " -"Nueva hoja." - -#: src/Constants/ThiefProperties.vala:125 -msgid "" -"Ready to publish your great work? Right-click on the folder and choose " -"\"Export Preview\"" -msgstr "" -"¿Listo para publicar tu gran trabajo? Haga clic con el botón derecho en la " -"carpeta y seleccione \"Exportar vista previa\"." - -#: src/Constants/ThiefProperties.vala:126 -msgid "Want to block out distractions? Full-screen is just an `F11` away." -msgstr "" -"¿Quieres bloquear las distracciones? La pantalla completa está a solo un " -"`F11` de distancia." - -#: src/Constants/ThiefProperties.vala:127 -msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." -msgstr "" -"Cambie rápidamente los modos de visualización con `Ctrl + 1`,` Ctrl + 2` y " -"`Ctrl + 3`." - -#: src/Constants/ThiefProperties.vala:128 -msgid "" -"Working with a lot of links? Turn on Experimental Mode to make your markdown " -"more readable `Ctrl+Shift+M`." -msgstr "" -"¿Trabajas con muchos enlaces? Active el modo experimental para que su rebaja " -"sea más legible `Ctrl + Shift + M`." - -#: src/Controllers/FileManager.vala:39 -msgid "Stealing file contents..." -msgstr "" - -#: src/Controllers/FileManager.vala:40 -msgid "This isn't plagiarism, it's a remix!" -msgstr "" - -#: src/Controllers/FileManager.vala:41 -msgid "NYT Best Seller, here we come!" -msgstr "" - +#. Supported import file extensions #: src/Controllers/FileManager.vala:43 msgid "Importing File" msgstr "Importando archivo" @@ -375,15 +84,6 @@ msgstr "Archivos MHTML" msgid "LaTeX file" msgstr "Archivo LaTeX" -#: src/Controllers/Dialogs.vala:161 -msgid "Supported files" -msgstr "Archivos compatibles" - -#: src/Controllers/Dialogs.vala:170 -#, c-format -msgid "%s files" -msgstr "% s archivos" - #: src/Controllers/Dialogs.vala:177 msgid "All files" msgstr "Todos los archivos" @@ -412,16 +112,10 @@ msgstr "Si no guarda, los cambios se perderán para siempre." msgid "Close without saving" msgstr "Cerrar sin guardar" -#: src/Controllers/SheetManager.vala:157 src/Widgets/StatisticsBar.vala:93 +#: src/Controllers/SheetManager.vala:156 src/Widgets/StatisticsBar.vala:93 msgid "No file opened" msgstr "Ningún archivo abierto" -#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 -#: src/Widgets/PublisherPreviewWindow.vala:295 -#: src/Widgets/ProjectStatistics.vala:71 -msgid "Close" -msgstr "Cerrar" - #: src/Connections/WriteFreelyConnection.vala:103 #: src/Connections/WordpressConnection.vala:85 msgid "Username" @@ -429,7 +123,6 @@ msgstr "Nombre de usuario" #: src/Connections/WriteFreelyConnection.vala:107 #: src/Connections/GhostConnection.vala:86 -#: src/Connections/WordpressConnection.vala:89 msgid "Password" msgstr "Contraseña" @@ -439,43 +132,21 @@ msgstr "Contraseña" msgid "Endpoint" msgstr "Punto final" -#: src/Connections/WriteFreelyConnection.vala:127 -msgid "New WriteFreely Connection" -msgstr "Nueva conexión WriteFreely" - #: src/Connections/WriteFreelyConnection.vala:130 #: src/Connections/GhostConnection.vala:109 #: src/Connections/WordpressConnection.vala:112 msgid "_Add Account" msgstr "_Añadir cuenta" -#: src/Connections/WriteFreelyConnection.vala:233 -msgid "Taking your words, and letting them go... to the internet!" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:234 -msgid "Mhm... I see and I ship." -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:235 -msgid "Is this a selfie, and you're happy to see me?" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:238 -#: src/Connections/GhostConnection.vala:197 -#: src/Connections/WordpressConnection.vala:198 -msgid "Uploading images" -msgstr "Subiendo imágenes" - #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid " Published" msgstr " Publicado" #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid "Post Published" msgstr "Publicación publicada" @@ -483,45 +154,11 @@ msgstr "Publicación publicada" msgid "E-mail" msgstr "Correo electrónico" -#: src/Connections/GhostConnection.vala:106 -msgid "New ghost Connection" -msgstr "Nueva conexión fantasma" - -#: src/Connections/GhostConnection.vala:192 -msgid "Your words are like Casper... Friendly!" -msgstr "" - -#: src/Connections/GhostConnection.vala:193 -msgid "I see your words, and I'm taking them to the internet!" -msgstr "" - -#: src/Connections/GhostConnection.vala:194 -msgid "Booooooooooo! (That's Ghost speak for Great Work!)" -msgstr "" - -#: src/Connections/WordpressConnection.vala:109 -msgid "New Wordpress Connection" -msgstr "Nueva conexión de Wordpress" - -#: src/Connections/WordpressConnection.vala:191 -msgid "Taking it to the internet!" -msgstr "" - -#: src/Connections/WordpressConnection.vala:192 -msgid "Don't forget to share on reddit." -msgstr "" - -#: src/Connections/WordpressConnection.vala:193 -msgid "Pressing words together..." -msgstr "" - -#: src/Enrichments/Fountain.vala:32 -msgid "Characters" -msgstr "" - -#: src/Enrichments/Markdown.vala:30 -msgid "Citations" -msgstr "" +#: src/Connections/WriteFreelyConnection.vala:238 +#: src/Connections/GhostConnection.vala:197 +#: src/Connections/WordpressConnection.vala:217 +msgid "Uploading images" +msgstr "Subiendo imágenes" #: src/Exporters/ExportDocx.vala:60 msgid "Export DocX" @@ -543,14 +180,6 @@ msgstr "Exportar LaTeX" msgid "Export Markdown" msgstr "Exportar Markdown" -#: src/Exporters/ExportFountain.vala:57 -msgid "Fountain files" -msgstr "Archivos fuente" - -#: src/Exporters/ExportFountain.vala:63 -msgid "Export Fountain" -msgstr "Fuente de exportación" - #: src/Exporters/ExportMhtml.vala:62 msgid "Export MHTML" msgstr "Exportar MHTML" @@ -559,18 +188,6 @@ msgstr "Exportar MHTML" msgid "Export PDF" msgstr "Exportar PDF" -#: src/Exporters/ExportPdf.vala:149 -msgid "Simply Shakespearean." -msgstr "" - -#: src/Exporters/ExportPdf.vala:150 -msgid "Hmm... that's interesting..." -msgstr "" - -#: src/Exporters/ExportPdf.vala:151 -msgid "Your writing is insightful." -msgstr "" - #: src/Exporters/ExportPdf.vala:153 src/Exporters/ExportPdf.vala:183 msgid "Working PDF Magic" msgstr "Trabajando PDF Magic" @@ -579,13 +196,17 @@ msgstr "Trabajando PDF Magic" msgid "Making sure your hard work looks purrfect..." msgstr "Asegurándose de que su arduo trabajo se vea perfecto ..." -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:132 -#: src/Widgets/QuickPreferences.vala:216 src/Widgets/QuickPreferences.vala:295 +#: src/Exporters/ExportPdf.vala:107 +msgid "Print to File" +msgstr "Imprimir archivo" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:146 +#: src/Widgets/QuickPreferences.vala:237 src/Widgets/QuickPreferences.vala:326 msgid "About ThiefMD" msgstr "Sobre ThiefMD" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:130 -#: src/Widgets/QuickPreferences.vala:214 src/Widgets/QuickPreferences.vala:293 +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:144 +#: src/Widgets/QuickPreferences.vala:235 src/Widgets/QuickPreferences.vala:324 msgid "About" msgstr "Acerca de" @@ -593,44 +214,28 @@ msgstr "Acerca de" msgid "Credits" msgstr "Créditos" -#. website = ThiefProperties.URL; -#: src/Widgets/About.vala:94 -msgid "Feedback" -msgstr "Realimentación" - -#. license_type = ThiefProperties.LICENSE_TYPE; -#: src/Widgets/About.vala:99 -msgid "This program comes with absolutely no warranty." -msgstr "Este programa no tiene absolutamente ninguna garantía." - -#: src/Widgets/About.vala:100 -msgid "" -"See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General " -"Public License, version 3 or later</a> for details." -msgstr "" -"Consulte la <a href='https://www.gnu.org/licenses/gpl-3.0.html'> Licencia " -"pública general GNU, versión 3 o posterior </a> para obtener más detalles." +#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 +#: src/Widgets/PublisherPreviewWindow.vala:295 +#: src/Widgets/ProjectStatistics.vala:71 +msgid "Close" +msgstr "Cerrar" -#: src/Widgets/HeaderBar.vala:86 +#: src/Widgets/Sheets.vala:179 msgid "New Sheet" msgstr "Hoja nueva" -#: src/Widgets/HeaderBar.vala:98 +#: src/Widgets/HeaderBar.vala:78 msgid "Change View" msgstr "Cambio Vista" -#: src/Widgets/HeaderBar.vala:106 +#: src/ThiefApp.vala:186 msgid "Add Folder to Library" msgstr "Agregar carpeta a la biblioteca" -#: src/Widgets/HeaderBar.vala:129 +#: src/Widgets/HeaderBar.vala:92 msgid "Settings" msgstr "Configuraciones" -#: src/Widgets/HeaderBar.vala:144 -msgid "Show Notes" -msgstr "Mostrar notas" - #: src/Widgets/Sheet.vala:215 msgid "Sort by" msgstr "Ordenar por" @@ -659,30 +264,26 @@ msgstr "Ordenar por fecha ascendente" msgid "Sort by Date Descending" msgstr "Ordenar por fecha descendente" -#: src/Widgets/Sheet.vala:261 src/Widgets/QuickPreferences.vala:95 -#: src/Widgets/QuickPreferences.vala:179 src/Widgets/QuickPreferences.vala:258 +#: src/Widgets/Sheet.vala:273 src/Widgets/QuickPreferences.vala:95 +#: src/Widgets/QuickPreferences.vala:195 src/Widgets/QuickPreferences.vala:279 msgid "Preview" msgstr "Avance" -#: src/Widgets/Sheet.vala:269 src/Widgets/Preferences.vala:482 +#: src/Widgets/Sheet.vala:281 src/Widgets/Preferences.vala:482 #: src/Widgets/PublisherPreviewWindow.vala:155 #: src/Widgets/ProjectStatistics.vala:64 msgid "Export" msgstr "Exportar" -#: src/Widgets/Sheet.vala:277 -msgid "Copy File Path" -msgstr "Copiar ruta de archivo" - #. Gtk.MenuItem menu_rename = new Gtk.MenuItem.with_label (_("Rename File")); #. menu_rename.activate.connect (() => { #. }); #. menu.add (menu_rename); -#: src/Widgets/Sheet.vala:293 +#: src/Widgets/Sheet.vala:305 msgid "Danger Zone" msgstr "Zona peligrosa" -#: src/Widgets/Sheet.vala:299 +#: src/Widgets/Sheet.vala:311 msgid "Move to Trash" msgstr "Mover a la papelera" @@ -694,128 +295,47 @@ msgstr "_Cargar desde disco" msgid "_Keep what's in editor" msgstr "_Mantener lo que hay en el editor" -#: src/Widgets/Editor.vala:1263 +#: src/Widgets/Editor.vala:1278 msgid "Insert Datetime" msgstr "Insertar fecha y hora" -#: src/Widgets/Editor.vala:1281 +#: src/Widgets/Editor.vala:1296 msgid "Insert YAML Frontmatter" msgstr "Insertar Frontmatter YAML" -#: src/Widgets/Editor.vala:1379 -msgid "Insert Citation" -msgstr "Insertar citación" - -#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); -#: src/Widgets/Library.vala:73 -msgid "Library" -msgstr "Biblioteca" - -#: src/Widgets/Library.vala:538 +#: src/Widgets/Library.vala:539 msgid "Export Preview" msgstr "Exportar vista previa" -#: src/Widgets/Library.vala:548 +#: src/Widgets/Library.vala:549 msgid "Writing Statistics" msgstr "Escribir estadísticas" -#: src/Widgets/Library.vala:561 +#: src/Widgets/Library.vala:562 msgid "Search " msgstr "Buscar " -#: src/Widgets/Library.vala:573 -msgid "Open in File Manager" -msgstr "Abrir en el Administrador de archivos" - -#: src/Widgets/Library.vala:585 +#: src/Widgets/Library.vala:586 msgid "Create Sub-Folder" msgstr "Crear sub-carpeta" -#: src/Widgets/Library.vala:602 +#: src/Widgets/Library.vala:603 msgid "Hide from Library" msgstr "Ocultar de la biblioteca" -#: src/Widgets/Library.vala:626 +#: src/Widgets/Library.vala:627 msgid "Show Hidden Items" msgstr "Mostrar elementos ocultos" -#: src/Widgets/Library.vala:638 -msgid "Set Project Icon" -msgstr "Establecer icono de proyecto" - -#: src/Widgets/Library.vala:641 src/Widgets/Preferences.vala:389 -msgid "None" -msgstr "Ninguna" - -#: src/Widgets/Library.vala:644 -msgid "Folder" -msgstr "Carpeta" - -#: src/Widgets/Library.vala:647 -msgid "Reader" -msgstr "Lector" - -#: src/Widgets/Library.vala:650 -msgid "Love" -msgstr "Amor" - -#: src/Widgets/Library.vala:653 -msgid "Game" -msgstr "Juego" - -#: src/Widgets/Library.vala:656 -msgid "Art" -msgstr "Arte" - -#: src/Widgets/Library.vala:659 -msgid "Nature" -msgstr "Naturaleza" - -#: src/Widgets/Library.vala:662 -msgid "Food" -msgstr "víveres" - -#: src/Widgets/Library.vala:665 -msgid "Help" -msgstr "Ayuda" - -#: src/Widgets/Library.vala:668 -msgid "Cool" -msgstr "Fresco" - -#: src/Widgets/Library.vala:671 -msgid "Angel" -msgstr "Ángel" - -#: src/Widgets/Library.vala:674 -msgid "Monkey" -msgstr "Mono" - -#: src/Widgets/Library.vala:677 -msgid "WordPress" -msgstr "Wordpress" - -#: src/Widgets/Library.vala:680 -msgid "Ghost" -msgstr "Fantasma" - -#: src/Widgets/Library.vala:683 -msgid "Write Freely" -msgstr "Escribir libremente" - -#: src/Widgets/Library.vala:686 -msgid "Trash" -msgstr "Basura" - -#: src/Widgets/Library.vala:696 +#: src/Widgets/Library.vala:697 msgid "Remove from Library" msgstr "Quitar de la biblioteca" -#: src/Widgets/Library.vala:933 +#: src/Widgets/Library.vala:934 msgid "Copy" msgstr "Copiar" -#: src/Widgets/Library.vala:935 +#: src/Widgets/Library.vala:936 msgid "Move" msgstr "Moverse" @@ -835,10 +355,6 @@ msgstr "Nombre de la hoja" msgid "Create" msgstr "Crear" -#: src/Widgets/NewSheet.vala:41 -msgid "Import" -msgstr "Importar" - #: src/Widgets/Preferences.vala:50 msgid "Current Connections" msgstr "Conexiones actuales" @@ -859,40 +375,10 @@ msgstr "Elija su software de blogs." msgid " WriteFreely" msgstr " Escribe libremente" -#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 -#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 -#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 -msgid "Connection Error" -msgstr "" - #: src/Widgets/Preferences.vala:91 msgid " ghost" msgstr " fantasma" -#: src/Widgets/Preferences.vala:125 -msgid " WordPress" -msgstr " WordPress" - -#: src/Widgets/Preferences.vala:159 -msgid " Medium" -msgstr "" - -#: src/Widgets/Preferences.vala:193 -msgid " Forem" -msgstr "" - -#: src/Widgets/Preferences.vala:227 -msgid " Hashnode" -msgstr "" - -#: src/Widgets/Preferences.vala:279 -msgid "Connections" -msgstr "Conexiones" - -#: src/Widgets/Preferences.vala:340 -msgid "Remove " -msgstr "Eliminar " - #: src/Widgets/Preferences.vala:343 msgid "_Remove" msgstr "_Eliminar" @@ -901,22 +387,14 @@ msgstr "_Eliminar" msgid "_Keep" msgstr "_Mantener" -#: src/Widgets/Preferences.vala:373 -msgid "Display" -msgstr "Mostrar" - -#: src/Widgets/Preferences.vala:377 -msgid "Display Options" -msgstr "Opciones de pantalla" - -#: src/Widgets/Preferences.vala:378 -msgid "Make ThiefMD feel like home." -msgstr "Haga que ThiefMD se sienta como en casa." - #: src/Widgets/Preferences.vala:384 msgid "Focus" msgstr "Atención" +#: src/Widgets/Library.vala:642 src/Widgets/Preferences.vala:389 +msgid "None" +msgstr "Ninguna" + #: src/Widgets/Preferences.vala:390 msgid "Paragraph" msgstr "Párrafo" @@ -929,33 +407,17 @@ msgstr "Frase" msgid "Word" msgstr "Palabra" -#: src/Widgets/Preferences.vala:431 -msgid "Number of Lines to Preview in Sheets View" -msgstr "Número de líneas para previsualizar en la vista hojas" - #: src/Widgets/Preferences.vala:440 msgid "Add New Theme" msgstr "Agregar nuevo tema" -#: src/Widgets/Preferences.vala:487 -msgid "Compiling Options" -msgstr "Opciones de compilación" - -#: src/Widgets/Preferences.vala:488 -msgid "Adjust how Markdown files are compiled together." -msgstr "Ajusta cómo se compilan juntos los archivos de Markdown." - #: src/Widgets/Preferences.vala:496 msgid "First Markdown File includes Author Metadata" msgstr "El primer archivo de Markdown incluye metadatos del autor" #: src/Widgets/Preferences.vala:498 -msgid "" -"First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>Author metadata</a>" -msgstr "" -"El primer archivo de Markdown incluye <a href='https://pandoc.org/MANUAL." -"html#epub-metadata'> metadatos del autor </a>" +msgid "First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Author metadata</a>" +msgstr "El primer archivo de Markdown incluye <a href='https://pandoc.org/MANUAL.html#epub-metadata'> metadatos del autor </a>" #: src/Widgets/Preferences.vala:514 msgid "Resolve full paths to resources" @@ -973,14 +435,6 @@ msgstr "Incluir título YAML como título" msgid "Include YAML title as H1 Heading" msgstr "Incluya el título YAML como título H1" -#: src/Widgets/Preferences.vala:543 -msgid "Page Setup" -msgstr "Configuración de página" - -#: src/Widgets/Preferences.vala:544 -msgid "Configure PDF export options." -msgstr "Configure las opciones de exportación de PDF." - #: src/Widgets/Preferences.vala:552 msgid "Page Break between Folders" msgstr "Salto de página entre carpetas" @@ -1005,41 +459,13 @@ msgstr "Márgenes laterales en PDF en pulgadas" msgid "Top & Bottom margins in PDF in inches" msgstr "Márgenes superior e inferior en PDF en pulgadas" -#: src/Widgets/Preferences.vala:641 -msgid "PDF CSS" -msgstr "PDF CSS" +#: src/Widgets/Preferences.vala:657 +msgid "Add Export Style" +msgstr "Agregar estilo de exportación" -#: src/Widgets/Preferences.vala:642 -msgid "Choose CSS Style for PDF Export." -msgstr "Elija Estilo CSS para exportar PDF." - -#: src/Widgets/Preferences.vala:650 -msgid "ePub & HTML CSS" -msgstr "ePub y HTML CSS" - -#: src/Widgets/Preferences.vala:651 -msgid "Choose CSS Style to use for ePub and HTML Export." -msgstr "Elija Estilo CSS para usar para ePub y HTML Export." - -#: src/Widgets/Preferences.vala:657 -msgid "Add Export Style" -msgstr "Agregar estilo de exportación" - -#: src/Widgets/Preferences.vala:680 -msgid "Editor" -msgstr "Editor" - -#: src/Widgets/Preferences.vala:684 -msgid "Editor Settings" -msgstr "Configuración del editor" - -#: src/Widgets/Preferences.vala:685 -msgid "Modify the ThiefMD environment." -msgstr "Modifique el entorno de ThiefMD." - -#: src/Widgets/Preferences.vala:693 -msgid "Enable spellcheck" -msgstr "Habilitar el corrector ortográfico" +#: src/Widgets/Preferences.vala:693 +msgid "Enable spellcheck" +msgstr "Habilitar el corrector ortográfico" #: src/Widgets/Preferences.vala:695 msgid "Check document spelling" @@ -1069,22 +495,6 @@ msgstr "Alternar escritura de estadísticas" msgid "Show writing statistics" msgstr "Mostrar estadísticas de escritura" -#: src/Widgets/Preferences.vala:765 -msgid "Disable application tips" -msgstr "Desactivar los consejos de la aplicación" - -#: src/Widgets/Preferences.vala:766 -msgid "Start with new empty sheet on launch" -msgstr "Comience con una nueva hoja vacía al inicio" - -#: src/Widgets/Preferences.vala:779 -msgid "ThiefMD Settings" -msgstr "Configuración de ThiefMD" - -#: src/Widgets/Preferences.vala:780 -msgid "Modify the ThiefMD appearance." -msgstr "Modifica la apariencia de ThiefMD." - #: src/Widgets/Preferences.vala:790 msgid "Toggle interface theming" msgstr "Alternar el tema de la interfaz" @@ -1117,18 +527,10 @@ msgstr "Alternar orden de biblioteca" msgid "Keep library order" msgstr "Mantener el orden de la biblioteca" -#: src/Widgets/Preferences.vala:858 -msgid "Toggle experimental features" -msgstr "Alternar funciones experimentales" - -#: src/Widgets/Preferences.vala:860 -msgid "Enable experimental features" -msgstr "Habilitar funciones experimentales" - #: src/Widgets/PublisherPreviewWindow.vala:67 #: src/Widgets/PublisherPreviewWindow.vala:209 -#: src/Widgets/QuickPreferences.vala:104 src/Widgets/QuickPreferences.vala:188 -#: src/Widgets/QuickPreferences.vala:267 +#: src/Widgets/QuickPreferences.vala:109 src/Widgets/QuickPreferences.vala:204 +#: src/Widgets/QuickPreferences.vala:293 msgid "Publishing Preview" msgstr "Vista previa de publicación" @@ -1153,14 +555,11 @@ msgid "words" msgstr "palabras" #: src/Widgets/ProjectStatistics.vala:126 -#, c-format -msgid "" -"<b>Reading Time:</b>\n" +msgid "<b>Reading Time:</b>\n" "%d %s\n" "%d %s\n" "%d %s" -msgstr "" -"<b> Tiempo de lectura: </b>\n" +msgstr "<b> Tiempo de lectura: </b>\n" "% d% s\n" "% d% s\n" "% d% s" @@ -1209,75 +608,41 @@ msgstr "Escribe bien" msgid "Toggle Write Good" msgstr "Toggle Escribir bien" -#: src/Widgets/QuickPreferences.vala:71 -msgid "Check Grammar" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:74 -msgid "Toggle Grammar Checking" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:87 -msgid "Grammar check is not available for your language" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:181 -#: src/Widgets/QuickPreferences.vala:260 +#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:197 +#: src/Widgets/QuickPreferences.vala:281 msgid "Launch Preview" msgstr "Vista previa de lanzamiento" -#: src/Widgets/QuickPreferences.vala:106 src/Widgets/QuickPreferences.vala:190 -#: src/Widgets/QuickPreferences.vala:269 -msgid "Open Export Window" -msgstr "Abrir ventana de exportación" - -#: src/Widgets/QuickPreferences.vala:113 src/Widgets/QuickPreferences.vala:197 -#: src/Widgets/QuickPreferences.vala:276 -msgid "Search Library" -msgstr "Biblioteca de búsqueda" - -#: src/Widgets/QuickPreferences.vala:115 src/Widgets/QuickPreferences.vala:199 -#: src/Widgets/QuickPreferences.vala:278 -msgid "Open Search Window" -msgstr "Abrir ventana de búsqueda" - -#: src/Widgets/QuickPreferences.vala:121 src/Widgets/QuickPreferences.vala:205 -#: src/Widgets/QuickPreferences.vala:284 +#: src/Widgets/QuickPreferences.vala:135 src/Widgets/QuickPreferences.vala:226 +#: src/Widgets/QuickPreferences.vala:315 msgid "Preferences" msgstr "Preferencias" -#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:207 -#: src/Widgets/QuickPreferences.vala:286 +#: src/Widgets/QuickPreferences.vala:137 src/Widgets/QuickPreferences.vala:228 +#: src/Widgets/QuickPreferences.vala:317 msgid "Edit Preferences" msgstr "Editar preferencias" -#: src/Widgets/ThemeSelector.vala:55 -msgid "Spacing" -msgstr "Espaciado" +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Widgets/ThemeSelector.vala:50 +msgid "Font" +msgstr "Fuente" #: src/Widgets/ThemeSelector.vala:142 msgid "Font Selector" msgstr "Selector de fuentes" -#: src/Widgets/ThemeSelector.vala:326 -msgid "Download" -msgstr "Descargar" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "more themes" -msgstr "Más temas" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "Stored in" -msgstr "Guardado en" +#: src/Widgets/ThemeSelector.vala:320 +msgid "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" +"<small>Stored in <a href='file://" +msgstr "Descarga <a href='https://themes.thiefmd.com/themes/'> más temas </a>.\n" +"<pequeño> Almacenado en <a href = 'archivo: //" #: src/Widgets/SearchBar.vala:110 -#, c-format msgid "(%d occurences)" msgstr "(% d ocurrencias)" #: src/Widgets/StatisticsBar.vala:100 -#, c-format msgid "%d %s %d %s and %d %s reading time." msgstr "% d% s% d% sy% d% s tiempo de lectura." @@ -1302,7 +667,6 @@ msgid "seconds" msgstr "segundos" #: src/Widgets/StatisticsBar.vala:106 -#, c-format msgid "%s : %d words." msgstr "% s:% d palabras." @@ -1310,9 +674,9 @@ msgstr "% s:% d palabras." msgid "Library Search" msgstr "Búsqueda de biblioteca" -#: src/Widgets/SearchWindow.vala:421 -msgid "Search" -msgstr "Buscar" +#: src/Widgets/SearchWindow.vala:422 +msgid " Search" +msgstr " Buscar" #: src/Widgets/SearchWindow.vala:445 msgid "Monitor for Library changes" @@ -1326,15 +690,611 @@ msgstr "<b> Robando el contenido del archivo ... </b>" msgid "Heading" msgstr "Bóveda" -#~ msgid "Print to File" -#~ msgstr "Imprimir archivo" +#. Font settings +#. Arbitrary strings +#: src/Constants/AppSettings.vala:104 +msgid "# Click on a sheet to get started\n" +"\n" +"First time here? Drag a folder into the library, or click on the Folder icon to select a folder to add.\n" +"\n" +"## Thief Tip:\n" +"\n" +"%s" +msgstr "# Haga clic en una hoja para comenzar\n" +"\n" +"¿Primera vez aquí? Arrastre una carpeta a la biblioteca o haga clic en el icono Carpeta para seleccionar una carpeta para agregar.\n" +"\n" +"## Consejo de ladrón:\n" +"\n" +"%s" + +#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); +#: src/ThiefApp.vala:182 +msgid "Library" +msgstr "Biblioteca" + +#: src/Widgets/Preferences.vala:680 +msgid "Editor" +msgstr "Editor" + +#: src/Widgets/SearchWindow.vala:421 +msgid "Search" +msgstr "Buscar" + +#: src/Widgets/QuickPreferences.vala:111 src/Widgets/QuickPreferences.vala:206 +#: src/Widgets/QuickPreferences.vala:295 +msgid "Open Export Window" +msgstr "Abrir ventana de exportación" + +#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:218 +#: src/Widgets/QuickPreferences.vala:307 +msgid "Search Library" +msgstr "Biblioteca de búsqueda" + +#: src/Widgets/QuickPreferences.vala:125 src/Widgets/QuickPreferences.vala:220 +#: src/Widgets/QuickPreferences.vala:309 +msgid "Open Search Window" +msgstr "Abrir ventana de búsqueda" + +#: src/Widgets/ThemeSelector.vala:55 +msgid "Spacing" +msgstr "Espaciado" + +#: src/Widgets/Preferences.vala:858 +msgid "Toggle experimental features" +msgstr "Alternar funciones experimentales" + +#: src/Widgets/Preferences.vala:860 +msgid "Enable experimental features" +msgstr "Habilitar funciones experimentales" + +#: src/Controllers/Dialogs.vala:161 +msgid "Supported files" +msgstr "Archivos compatibles" + +#: src/Controllers/Dialogs.vala:170 +msgid "%s files" +msgstr "% s archivos" + +#: src/Widgets/Library.vala:574 +msgid "Open in File Manager" +msgstr "Abrir en el Administrador de archivos" + +#: src/Widgets/NewSheet.vala:41 +msgid "Import" +msgstr "Importar" + +#: src/Widgets/Preferences.vala:125 +msgid " WordPress" +msgstr " WordPress" + +#: src/Constants/ThiefProperties.vala:25 +msgid "The Markdown editor worth stealing" +msgstr "El editor de Markdown que vale la pena robar" + +#: src/Constants/ThiefProperties.vala:87 +msgid "Contributors who help make ThiefMD awesome" +msgstr "Colaboradores que ayudan a que ThiefMD sea increíble" + +#: src/Constants/ThiefProperties.vala:89 +msgid "French Translation Contributors" +msgstr "Colaboradores de traducción al francés" + +#: src/Constants/ThiefProperties.vala:90 +msgid "Slovak Translation Contributors" +msgstr "Colaboradores de traducción al eslovaco" + +#: src/Constants/ThiefProperties.vala:91 +msgid "Swedish Translation Contributors" +msgstr "Colaboradores de traducción al sueco" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Original Code" +msgstr "Codigo original" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" +msgstr "Basado en <a href='https://github.com/lainsce/quilter'> Quilter </a>" + +#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:95 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 +msgid "Copyright" +msgstr "Derechos de autor" + +#: src/Constants/ThiefProperties.vala:94 +msgid "GNU General Public License v3.0" +msgstr "Licencia pública general GNU v3.0" + +#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +msgid "SIL OPEN FONT LICENSE Version 1.1" +msgstr "LICENCIA DE FUENTE ABIERTA SIL Versión 1.1" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Preview CSS" +msgstr "Vista previa de CSS" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Mash up of Splendor and Modest" +msgstr "Mezcla de esplendor y modestia" + +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:109 +msgid "The MIT License (MIT)" +msgstr "La licencia del MIT (MIT)" + +#: src/Constants/ThiefProperties.vala:102 +msgid "Markdown Parsing" +msgstr "Análisis de Markdown" + +#: src/Constants/ThiefProperties.vala:102 +msgid "BSD-style License" +msgstr "Licencia estilo BSD" + +#: src/Constants/ThiefProperties.vala:103 +msgid "Syntax Highlighting" +msgstr "Resaltado de sintaxis" + +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:107 +msgid "BSD-3-Clause License" +msgstr "Licencia BSD-3-Cláusula" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Math Rendering" +msgstr "Representación matemática" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Khan Academy and other contributors." +msgstr "Khan Academy y otros colaboradores." + +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +msgid "MIT License" +msgstr "Licencia MIT" + +#: src/Constants/ThiefProperties.vala:105 +msgid "XML Parsing" +msgstr "Análisis XML" + +#: src/Constants/ThiefProperties.vala:106 +msgid "Pandoc Export" +msgstr "Exportación Pandoc" -#~ msgid "" -#~ "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" -#~ "<small>Stored in <a href='file://" -#~ msgstr "" -#~ "Descarga <a href='https://themes.thiefmd.com/themes/'> más temas </a>.\n" -#~ "<pequeño> Almacenado en <a href = 'archivo: //" +#: src/Constants/ThiefProperties.vala:106 +msgid "John MacFarlane and others" +msgstr "John MacFarlane y otros" + +#: src/Constants/ThiefProperties.vala:106 +msgid "GNU General Public License v2.0" +msgstr "Licencia pública general GNU v2.0" + +#: src/Constants/ThiefProperties.vala:109 +msgid "libwritegood-vala based on" +msgstr "libwritegood-vala basado en" + +#: src/Constants/ThiefProperties.vala:109 +msgid "write-good: Naive linter for English prose" +msgstr "write-good: linter ingenuo para prosa inglesa" + +#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME +#: src/Constants/ThiefProperties.vala:113 +msgid "A3 (11.7 x 16.5 inches)" +msgstr "A3 (11,7 x 16,5 pulgadas)" + +#: src/Constants/ThiefProperties.vala:114 +msgid "A4 (8 x 11 inches)" +msgstr "A4 (8 x 11 pulgadas)" + +#: src/Constants/ThiefProperties.vala:115 +msgid "A5 (5.8 x 8.3 inches)" +msgstr "A5 (5,8 x 8,3 pulgadas)" + +#: src/Constants/ThiefProperties.vala:116 +msgid "B5 (6.93 x 9.84 inches)" +msgstr "B5 (6,93 x 9,84 pulgadas)" + +#: src/Constants/ThiefProperties.vala:117 +msgid "Executive (7 x 10 inches)" +msgstr "Ejecutivo (7 x 10 pulgadas)" + +#: src/Constants/ThiefProperties.vala:118 +msgid "Legal (8.5 x 14 inches)" +msgstr "Legal (8,5 x 14 pulgadas)" + +#: src/Constants/ThiefProperties.vala:119 +msgid "Letter (8.5 x 11 inches)" +msgstr "Carta (8,5 x 11 pulgadas)" + +#: src/Constants/ThiefProperties.vala:122 +msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." +msgstr "¿No te gusta lo que ves? Presione `Ctrl +` para acceder a las preferencias." + +#: src/Constants/ThiefProperties.vala:123 +msgid "No built in dark mode? Dark themes are available at https://themes.thiefmd.com. Add more in the Preferences (`Ctrl+,`)." +msgstr "¿No construido en modo oscuro? Los temas oscuros están disponibles en https://themes.thiefmd.com. Agregue más en las Preferencias (`Ctrl +,`)." + +#: src/Constants/ThiefProperties.vala:124 +msgid "Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and click Export." +msgstr "¿No te gusta cómo se ve la vista previa? Presione Ctrl +, para acceder a las preferencias y haga clic en Exportar." + +#: src/Constants/ThiefProperties.vala:125 +msgid "Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." +msgstr "¿Quiere importar un ePub, HTML o DocX? Haga clic en Importar en el mensaje Nueva hoja." + +#: src/Constants/ThiefProperties.vala:126 +msgid "Ready to publish your great work? Right-click on the folder and choose \"Export Preview\"" +msgstr "¿Listo para publicar tu gran trabajo? Haga clic con el botón derecho en la carpeta y seleccione \"Exportar vista previa\"." + +#: src/Constants/ThiefProperties.vala:127 +msgid "Want to block out distractions? Full-screen is just an `F11` away." +msgstr "¿Quieres bloquear las distracciones? La pantalla completa está a solo un `F11` de distancia." + +#: src/Constants/ThiefProperties.vala:128 +msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." +msgstr "Cambie rápidamente los modos de visualización con `Ctrl + 1`,` Ctrl + 2` y `Ctrl + 3`." + +#: src/Constants/ThiefProperties.vala:129 +msgid "Working with a lot of links? Turn on Experimental Mode to make your markdown more readable `Ctrl+Shift+M`." +msgstr "¿Trabajas con muchos enlaces? Active el modo experimental para que su rebaja sea más legible `Ctrl + Shift + M`." + +#: src/Connections/WriteFreelyConnection.vala:127 +msgid "New WriteFreely Connection" +msgstr "Nueva conexión WriteFreely" + +#: src/Connections/GhostConnection.vala:106 +msgid "New ghost Connection" +msgstr "Nueva conexión fantasma" + +#: src/Connections/WordpressConnection.vala:109 +msgid "New Wordpress Connection" +msgstr "Nueva conexión de Wordpress" + +#. website = ThiefProperties.URL; +#: src/Widgets/About.vala:94 +msgid "Feedback" +msgstr "Realimentación" + +#. license_type = ThiefProperties.LICENSE_TYPE; +#: src/Widgets/About.vala:99 +msgid "This program comes with absolutely no warranty." +msgstr "Este programa no tiene absolutamente ninguna garantía." + +#: src/Widgets/About.vala:100 +msgid "See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, version 3 or later</a> for details." +msgstr "Consulte la <a href='https://www.gnu.org/licenses/gpl-3.0.html'> Licencia pública general GNU, versión 3 o posterior </a> para obtener más detalles." + +#: src/Widgets/Preferences.vala:279 +msgid "Connections" +msgstr "Conexiones" + +#: src/Widgets/Preferences.vala:340 +msgid "Remove " +msgstr "Eliminar " + +#: src/Widgets/Preferences.vala:373 +msgid "Display" +msgstr "Mostrar" + +#: src/Widgets/Preferences.vala:377 +msgid "Display Options" +msgstr "Opciones de pantalla" + +#: src/Widgets/Preferences.vala:378 +msgid "Make ThiefMD feel like home." +msgstr "Haga que ThiefMD se sienta como en casa." + +#: src/Widgets/Preferences.vala:487 +msgid "Compiling Options" +msgstr "Opciones de compilación" + +#: src/Widgets/Preferences.vala:488 +msgid "Adjust how Markdown files are compiled together." +msgstr "Ajusta cómo se compilan juntos los archivos de Markdown." + +#: src/Widgets/Preferences.vala:543 +msgid "Page Setup" +msgstr "Configuración de página" + +#: src/Widgets/Preferences.vala:544 +msgid "Configure PDF export options." +msgstr "Configure las opciones de exportación de PDF." + +#: src/Widgets/Preferences.vala:641 +msgid "PDF CSS" +msgstr "PDF CSS" + +#: src/Widgets/Preferences.vala:642 +msgid "Choose CSS Style for PDF Export." +msgstr "Elija Estilo CSS para exportar PDF." + +#: src/Widgets/Preferences.vala:650 +msgid "ePub & HTML CSS" +msgstr "ePub y HTML CSS" + +#: src/Widgets/Preferences.vala:651 +msgid "Choose CSS Style to use for ePub and HTML Export." +msgstr "Elija Estilo CSS para usar para ePub y HTML Export." + +#: src/Widgets/Preferences.vala:684 +msgid "Editor Settings" +msgstr "Configuración del editor" + +#: src/Widgets/Preferences.vala:685 +msgid "Modify the ThiefMD environment." +msgstr "Modifique el entorno de ThiefMD." + +#: src/Widgets/Preferences.vala:779 +msgid "ThiefMD Settings" +msgstr "Configuración de ThiefMD" + +#: src/Widgets/Preferences.vala:780 +msgid "Modify the ThiefMD appearance." +msgstr "Modifica la apariencia de ThiefMD." + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Download" +msgstr "Descargar" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "more themes" +msgstr "Más temas" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Stored in" +msgstr "Guardado en" + +#: src/ThiefApp.vala:315 +msgid "Fountain" +msgstr "Fuente" + +#: src/Constants/ThiefProperties.vala:101 +msgid "Fountain Preview and Export" +msgstr "Vista previa y exportación de fuentes" + +#: src/Exporters/ExportFountain.vala:57 +msgid "Fountain files" +msgstr "Archivos fuente" + +#: src/Exporters/ExportFountain.vala:63 +msgid "Export Fountain" +msgstr "Fuente de exportación" + +#: src/Widgets/HeaderBar.vala:107 +msgid "Show Notes" +msgstr "Mostrar notas" + +#: src/Widgets/Sheet.vala:289 +msgid "Copy File Path" +msgstr "Copiar ruta de archivo" + +#: src/Widgets/Editor.vala:1394 +msgid "Insert Citation" +msgstr "Insertar citación" + +#: src/Widgets/Library.vala:639 +msgid "Set Project Icon" +msgstr "Establecer icono de proyecto" + +#: src/Widgets/Library.vala:645 +msgid "Folder" +msgstr "Carpeta" + +#: src/Widgets/Library.vala:648 +msgid "Reader" +msgstr "Lector" + +#: src/Widgets/Library.vala:651 +msgid "Love" +msgstr "Amor" + +#: src/Widgets/Library.vala:654 +msgid "Game" +msgstr "Juego" + +#: src/Widgets/Library.vala:657 +msgid "Art" +msgstr "Arte" + +#: src/Widgets/Library.vala:660 +msgid "Nature" +msgstr "Naturaleza" + +#: src/Widgets/Library.vala:663 +msgid "Food" +msgstr "víveres" + +#: src/Widgets/Library.vala:666 +msgid "Help" +msgstr "Ayuda" + +#: src/Widgets/Library.vala:669 +msgid "Cool" +msgstr "Fresco" + +#: src/Widgets/Library.vala:672 +msgid "Angel" +msgstr "Ángel" + +#: src/Widgets/Library.vala:675 +msgid "Monkey" +msgstr "Mono" + +#: src/Widgets/Library.vala:678 +msgid "WordPress" +msgstr "Wordpress" + +#: src/Widgets/Library.vala:681 +msgid "Ghost" +msgstr "Fantasma" + +#: src/Widgets/Library.vala:684 +msgid "Write Freely" +msgstr "Escribir libremente" + +#: src/Widgets/Library.vala:687 +msgid "Trash" +msgstr "Basura" + +#: src/Widgets/Preferences.vala:431 +msgid "Number of Lines to Preview in Sheets View" +msgstr "Número de líneas para previsualizar en la vista hojas" + +#: src/Widgets/Preferences.vala:765 +msgid "Disable application tips" +msgstr "Desactivar los consejos de la aplicación" + +#: src/Widgets/Preferences.vala:766 +msgid "Start with new empty sheet on launch" +msgstr "Comience con una nueva hoja vacía al inicio" + +#: src/Enrichments/Fountain.vala:32 +msgid "Characters" +msgstr "" + +#: src/Enrichments/Markdown.vala:30 +msgid "Citations" +msgstr "" + +#: src/Constants/ThiefProperties.vala:95 +msgid "Stolen Victory Font" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "Grammar Check" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "the AbiSource Community" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "GNU Lesser General Public License v2.1" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:71 +msgid "Check Grammar" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:74 +msgid "Toggle Grammar Checking" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:87 +msgid "Grammar check is not available for your language" +msgstr "" + +#: src/Constants/ThiefProperties.vala:88 +msgid "Czech Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "PDF Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "Simon Sapin and contributors" +msgstr "" + +#: src/Controllers/FileManager.vala:39 +msgid "Stealing file contents..." +msgstr "" + +#: src/Controllers/FileManager.vala:40 +msgid "This isn't plagiarism, it's a remix!" +msgstr "" + +#: src/Controllers/FileManager.vala:41 +msgid "NYT Best Seller, here we come!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:233 +msgid "Taking your words, and letting them go... to the internet!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:234 +msgid "Mhm... I see and I ship." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:235 +msgid "Is this a selfie, and you're happy to see me?" +msgstr "" + +#: src/Connections/GhostConnection.vala:192 +msgid "Your words are like Casper... Friendly!" +msgstr "" + +#: src/Connections/GhostConnection.vala:193 +msgid "I see your words, and I'm taking them to the internet!" +msgstr "" + +#: src/Connections/GhostConnection.vala:194 +msgid "Booooooooooo! (That's Ghost speak for Great Work!)" +msgstr "" + +#: src/Connections/WordpressConnection.vala:192 +msgid "Taking it to the internet!" +msgstr "" + +#: src/Connections/WordpressConnection.vala:193 +msgid "Don't forget to share on reddit." +msgstr "" + +#: src/Connections/WordpressConnection.vala:194 +msgid "Pressing words together..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:149 +msgid "Simply Shakespearean." +msgstr "" + +#: src/Exporters/ExportPdf.vala:150 +msgid "Hmm... that's interesting..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:151 +msgid "Your writing is insightful." +msgstr "" + +#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 +#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 +#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 +msgid "Connection Error" +msgstr "" + +#: src/Widgets/Preferences.vala:159 +msgid " Medium" +msgstr "" + +#: src/Widgets/Preferences.vala:193 +msgid " Forem" +msgstr "" + +#: src/Widgets/Preferences.vala:227 +msgid " Hashnode" +msgstr "" + +#: src/Constants/ThiefProperties.vala:92 +msgid "German Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:93 +msgid "Finnish Translation Contributors" +msgstr "" + +#: src/Connections/WordpressConnection.vala:89 +msgid "Application Password" +msgstr "" -#~ msgid " Search" -#~ msgstr " Buscar" diff --git a/po/fi.po b/po/fi.po index 5d5ee8e2..f6c4b2c2 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,303 +1,37 @@ msgid "" msgstr "" -"Project-Id-Version: ThiefMD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-26 11:34-0700\n" -"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: POEditor.com\n" +"Project-Id-Version: ThiefMD\n" +"Language: fi\n" -#: src/ThiefApp.vala:244 +#: src/ThiefApp.vala:309 msgid "HTML" msgstr "HTML" -#: src/ThiefApp.vala:245 +#: src/ThiefApp.vala:310 msgid "PDF" msgstr "PDF" -#: src/ThiefApp.vala:246 +#: src/ThiefApp.vala:311 msgid "MHTML" msgstr "MHTML" -#: src/ThiefApp.vala:247 +#: src/ThiefApp.vala:312 msgid "Markdown" msgstr "Markdown" -#: src/ThiefApp.vala:248 +#: src/ThiefApp.vala:313 msgid "LaTeX" msgstr "LaTeX" -#: src/ThiefApp.vala:249 +#: src/ThiefApp.vala:314 msgid "DocX" msgstr "DocX" -#: src/ThiefApp.vala:250 -msgid "Fountain" -msgstr "" - -#. Visual Settings -#. Arbitrary strings -#: src/Constants/AppSettings.vala:104 -#, c-format -msgid "" -"# Click on a sheet to get started\n" -"\n" -"First time here? Drag a folder into the library, or click on the Folder " -"icon to select a folder to add.\n" -"\n" -"## Thief Tip:\n" -"\n" -"%s" -msgstr "" - -#: src/Constants/ThiefProperties.vala:25 -msgid "The Markdown editor worth stealing" -msgstr "Varastamisen arvoinen Markdown-muokkain" - -#: src/Constants/ThiefProperties.vala:86 -msgid "Contributors who help make ThiefMD awesome" -msgstr "" - -#: src/Constants/ThiefProperties.vala:87 -msgid "Czech Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:88 -msgid "French Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:89 -msgid "Slovak Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:90 -msgid "Swedish Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:91 -msgid "German Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:92 -msgid "Finnish Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Original Code" -msgstr "Alkuperäinen koodi" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" -msgstr "Pohjautuu <a href='https://github.com/lainsce/quilter'>Quilteriin</a>" - -#: src/Constants/ThiefProperties.vala:93 src/Constants/ThiefProperties.vala:94 -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:101 -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -#: src/Constants/ThiefProperties.vala:105 -#: src/Constants/ThiefProperties.vala:106 -#: src/Constants/ThiefProperties.vala:107 -#: src/Constants/ThiefProperties.vala:108 -msgid "Copyright" -msgstr "Tekijänoikeus" - -#: src/Constants/ThiefProperties.vala:93 -msgid "GNU General Public License v3.0" -msgstr "" - -#: src/Constants/ThiefProperties.vala:94 -msgid "Stolen Victory Font" -msgstr "" - -#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -msgid "SIL OPEN FONT LICENSE Version 1.1" -msgstr "" - -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -msgid "MIT License" -msgstr "MIT-lisenssi" - -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Widgets/ThemeSelector.vala:50 -msgid "Font" -msgstr "Fontti" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Preview CSS" -msgstr "" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Mash up of Splendor and Modest" -msgstr "" - -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:108 -msgid "The MIT License (MIT)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:100 -msgid "Fountain Preview and Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:101 -msgid "Markdown Parsing" -msgstr "Markdown-jäsennys" - -#: src/Constants/ThiefProperties.vala:101 -msgid "BSD-style License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:102 -msgid "Syntax Highlighting" -msgstr "Syntaksin korostus" - -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:106 -msgid "BSD-3-Clause License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Math Rendering" -msgstr "" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Khan Academy and other contributors." -msgstr "" - -#: src/Constants/ThiefProperties.vala:104 -msgid "XML Parsing" -msgstr "XML-jäsennys" - -#: src/Constants/ThiefProperties.vala:105 -msgid "Pandoc Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "John MacFarlane and others" -msgstr "John MacFarlane ja muut" - -#: src/Constants/ThiefProperties.vala:105 -msgid "GNU General Public License v2.0" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "PDF Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "Simon Sapin and contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "Grammar Check" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "the AbiSource Community" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "GNU Lesser General Public License v2.1" -msgstr "" - -#: src/Constants/ThiefProperties.vala:108 -msgid "libwritegood-vala based on" -msgstr "" - -#: src/Constants/ThiefProperties.vala:108 -msgid "write-good: Naive linter for English prose" -msgstr "" - -#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME -#: src/Constants/ThiefProperties.vala:112 -msgid "A3 (11.7 x 16.5 inches)" -msgstr "A3 (11,7 x 16,5 tuumaa)" - -#: src/Constants/ThiefProperties.vala:113 -msgid "A4 (8 x 11 inches)" -msgstr "A4 (8 x 11 tuumaa)" - -#: src/Constants/ThiefProperties.vala:114 -msgid "A5 (5.8 x 8.3 inches)" -msgstr "A5 (5,8 x 8,3 tuumaa)" - -#: src/Constants/ThiefProperties.vala:115 -msgid "B5 (6.93 x 9.84 inches)" -msgstr "B5 (6,93 x 9,84 tuumaa)" - -#: src/Constants/ThiefProperties.vala:116 -msgid "Executive (7 x 10 inches)" -msgstr "Executive (7 x 10 tuumaa)" - -#: src/Constants/ThiefProperties.vala:117 -msgid "Legal (8.5 x 14 inches)" -msgstr "Legal (8,5 x 14 tuumaa)" - -#: src/Constants/ThiefProperties.vala:118 -msgid "Letter (8.5 x 11 inches)" -msgstr "Letter (8,5 x 11 tuumaa)" - -#: src/Constants/ThiefProperties.vala:121 -msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." -msgstr "" - -#: src/Constants/ThiefProperties.vala:122 -msgid "" -"No built in dark mode? Dark themes are available at https://themes.thiefmd." -"com. Add more in the Preferences (`Ctrl+,`)." -msgstr "" - -#: src/Constants/ThiefProperties.vala:123 -msgid "" -"Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and " -"click Export." -msgstr "" - -#: src/Constants/ThiefProperties.vala:124 -msgid "" -"Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." -msgstr "" - -#: src/Constants/ThiefProperties.vala:125 -msgid "" -"Ready to publish your great work? Right-click on the folder and choose " -"\"Export Preview\"" -msgstr "" - -#: src/Constants/ThiefProperties.vala:126 -msgid "Want to block out distractions? Full-screen is just an `F11` away." -msgstr "" - -#: src/Constants/ThiefProperties.vala:127 -msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." -msgstr "" - -#: src/Constants/ThiefProperties.vala:128 -msgid "" -"Working with a lot of links? Turn on Experimental Mode to make your markdown " -"more readable `Ctrl+Shift+M`." -msgstr "" - -#: src/Controllers/FileManager.vala:39 -msgid "Stealing file contents..." -msgstr "" - -#: src/Controllers/FileManager.vala:40 -msgid "This isn't plagiarism, it's a remix!" -msgstr "" - -#: src/Controllers/FileManager.vala:41 -msgid "NYT Best Seller, here we come!" -msgstr "" - +#. Supported import file extensions #: src/Controllers/FileManager.vala:43 msgid "Importing File" msgstr "Tuodaan tiedostoa" @@ -350,15 +84,6 @@ msgstr "MHTML-tiedostot" msgid "LaTeX file" msgstr "LaTeX-tiedosto" -#: src/Controllers/Dialogs.vala:161 -msgid "Supported files" -msgstr "Tuetut tiedostot" - -#: src/Controllers/Dialogs.vala:170 -#, c-format -msgid "%s files" -msgstr "%s tiedostoa" - #: src/Controllers/Dialogs.vala:177 msgid "All files" msgstr "Kaikki tiedostot" @@ -387,16 +112,10 @@ msgstr "Jos et tallenna, muutokset katoavat." msgid "Close without saving" msgstr "Sulje tallentamatta" -#: src/Controllers/SheetManager.vala:157 src/Widgets/StatisticsBar.vala:93 +#: src/Controllers/SheetManager.vala:156 src/Widgets/StatisticsBar.vala:93 msgid "No file opened" msgstr "Ei tiedostoa avattuna" -#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 -#: src/Widgets/PublisherPreviewWindow.vala:295 -#: src/Widgets/ProjectStatistics.vala:71 -msgid "Close" -msgstr "Sulje" - #: src/Connections/WriteFreelyConnection.vala:103 #: src/Connections/WordpressConnection.vala:85 msgid "Username" @@ -404,7 +123,6 @@ msgstr "Käyttäjätunnus" #: src/Connections/WriteFreelyConnection.vala:107 #: src/Connections/GhostConnection.vala:86 -#: src/Connections/WordpressConnection.vala:89 msgid "Password" msgstr "Salasana" @@ -414,43 +132,21 @@ msgstr "Salasana" msgid "Endpoint" msgstr "Päätepiste" -#: src/Connections/WriteFreelyConnection.vala:127 -msgid "New WriteFreely Connection" -msgstr "Uusi WriteFreely-yhteys" - #: src/Connections/WriteFreelyConnection.vala:130 #: src/Connections/GhostConnection.vala:109 #: src/Connections/WordpressConnection.vala:112 msgid "_Add Account" msgstr "_Lisää tili" -#: src/Connections/WriteFreelyConnection.vala:233 -msgid "Taking your words, and letting them go... to the internet!" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:234 -msgid "Mhm... I see and I ship." -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:235 -msgid "Is this a selfie, and you're happy to see me?" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:238 -#: src/Connections/GhostConnection.vala:197 -#: src/Connections/WordpressConnection.vala:198 -msgid "Uploading images" -msgstr "Lähetetään kuvia" - #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid " Published" msgstr " Julkaistu" #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid "Post Published" msgstr "Artikkeli julkaistu" @@ -458,45 +154,11 @@ msgstr "Artikkeli julkaistu" msgid "E-mail" msgstr "Sähköposti" -#: src/Connections/GhostConnection.vala:106 -msgid "New ghost Connection" -msgstr "Uusi ghost-yhteys" - -#: src/Connections/GhostConnection.vala:192 -msgid "Your words are like Casper... Friendly!" -msgstr "" - -#: src/Connections/GhostConnection.vala:193 -msgid "I see your words, and I'm taking them to the internet!" -msgstr "" - -#: src/Connections/GhostConnection.vala:194 -msgid "Booooooooooo! (That's Ghost speak for Great Work!)" -msgstr "" - -#: src/Connections/WordpressConnection.vala:109 -msgid "New Wordpress Connection" -msgstr "Uusi WordPress-yhteys" - -#: src/Connections/WordpressConnection.vala:191 -msgid "Taking it to the internet!" -msgstr "" - -#: src/Connections/WordpressConnection.vala:192 -msgid "Don't forget to share on reddit." -msgstr "" - -#: src/Connections/WordpressConnection.vala:193 -msgid "Pressing words together..." -msgstr "" - -#: src/Enrichments/Fountain.vala:32 -msgid "Characters" -msgstr "" - -#: src/Enrichments/Markdown.vala:30 -msgid "Citations" -msgstr "" +#: src/Connections/WriteFreelyConnection.vala:238 +#: src/Connections/GhostConnection.vala:197 +#: src/Connections/WordpressConnection.vala:217 +msgid "Uploading images" +msgstr "Lähetetään kuvia" #: src/Exporters/ExportDocx.vala:60 msgid "Export DocX" @@ -518,14 +180,6 @@ msgstr "Vie LaTeX" msgid "Export Markdown" msgstr "Vie Markdown" -#: src/Exporters/ExportFountain.vala:57 -msgid "Fountain files" -msgstr "" - -#: src/Exporters/ExportFountain.vala:63 -msgid "Export Fountain" -msgstr "" - #: src/Exporters/ExportMhtml.vala:62 msgid "Export MHTML" msgstr "Vie MHTML" @@ -534,18 +188,6 @@ msgstr "Vie MHTML" msgid "Export PDF" msgstr "Vie PDF" -#: src/Exporters/ExportPdf.vala:149 -msgid "Simply Shakespearean." -msgstr "" - -#: src/Exporters/ExportPdf.vala:150 -msgid "Hmm... that's interesting..." -msgstr "" - -#: src/Exporters/ExportPdf.vala:151 -msgid "Your writing is insightful." -msgstr "" - #: src/Exporters/ExportPdf.vala:153 src/Exporters/ExportPdf.vala:183 msgid "Working PDF Magic" msgstr "" @@ -554,13 +196,17 @@ msgstr "" msgid "Making sure your hard work looks purrfect..." msgstr "" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:132 -#: src/Widgets/QuickPreferences.vala:216 src/Widgets/QuickPreferences.vala:295 +#: src/Exporters/ExportPdf.vala:107 +msgid "Print to File" +msgstr "Tulosta tiedostoon" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:146 +#: src/Widgets/QuickPreferences.vala:237 src/Widgets/QuickPreferences.vala:326 msgid "About ThiefMD" msgstr "Tietoja - ThiefMD" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:130 -#: src/Widgets/QuickPreferences.vala:214 src/Widgets/QuickPreferences.vala:293 +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:144 +#: src/Widgets/QuickPreferences.vala:235 src/Widgets/QuickPreferences.vala:324 msgid "About" msgstr "Tietoja" @@ -568,42 +214,28 @@ msgstr "Tietoja" msgid "Credits" msgstr "Tekijät" -#. website = ThiefProperties.URL; -#: src/Widgets/About.vala:94 -msgid "Feedback" -msgstr "" - -#. license_type = ThiefProperties.LICENSE_TYPE; -#: src/Widgets/About.vala:99 -msgid "This program comes with absolutely no warranty." -msgstr "Tämä ohjelma ei sisällä minkäänlaista takuuta." - -#: src/Widgets/About.vala:100 -msgid "" -"See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General " -"Public License, version 3 or later</a> for details." -msgstr "" +#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 +#: src/Widgets/PublisherPreviewWindow.vala:295 +#: src/Widgets/ProjectStatistics.vala:71 +msgid "Close" +msgstr "Sulje" -#: src/Widgets/HeaderBar.vala:86 +#: src/Widgets/Sheets.vala:179 msgid "New Sheet" msgstr "Uusi arkki" -#: src/Widgets/HeaderBar.vala:98 +#: src/Widgets/HeaderBar.vala:78 msgid "Change View" msgstr "Vaihda näkymää" -#: src/Widgets/HeaderBar.vala:106 +#: src/ThiefApp.vala:186 msgid "Add Folder to Library" msgstr "Lisää kansio kirjastoon" -#: src/Widgets/HeaderBar.vala:129 +#: src/Widgets/HeaderBar.vala:92 msgid "Settings" msgstr "Asetukset" -#: src/Widgets/HeaderBar.vala:144 -msgid "Show Notes" -msgstr "Näytä huomiot" - #: src/Widgets/Sheet.vala:215 msgid "Sort by" msgstr "" @@ -632,30 +264,26 @@ msgstr "" msgid "Sort by Date Descending" msgstr "" -#: src/Widgets/Sheet.vala:261 src/Widgets/QuickPreferences.vala:95 -#: src/Widgets/QuickPreferences.vala:179 src/Widgets/QuickPreferences.vala:258 +#: src/Widgets/Sheet.vala:273 src/Widgets/QuickPreferences.vala:95 +#: src/Widgets/QuickPreferences.vala:195 src/Widgets/QuickPreferences.vala:279 msgid "Preview" msgstr "Esikatselu" -#: src/Widgets/Sheet.vala:269 src/Widgets/Preferences.vala:482 +#: src/Widgets/Sheet.vala:281 src/Widgets/Preferences.vala:482 #: src/Widgets/PublisherPreviewWindow.vala:155 #: src/Widgets/ProjectStatistics.vala:64 msgid "Export" msgstr "Vie" -#: src/Widgets/Sheet.vala:277 -msgid "Copy File Path" -msgstr "Kopioi tiedoston polku" - #. Gtk.MenuItem menu_rename = new Gtk.MenuItem.with_label (_("Rename File")); #. menu_rename.activate.connect (() => { #. }); #. menu.add (menu_rename); -#: src/Widgets/Sheet.vala:293 +#: src/Widgets/Sheet.vala:305 msgid "Danger Zone" msgstr "Vaaravyöhyke" -#: src/Widgets/Sheet.vala:299 +#: src/Widgets/Sheet.vala:311 msgid "Move to Trash" msgstr "Siirrä roskakoriin" @@ -667,128 +295,47 @@ msgstr "_Lataa levyltä" msgid "_Keep what's in editor" msgstr "" -#: src/Widgets/Editor.vala:1263 +#: src/Widgets/Editor.vala:1278 msgid "Insert Datetime" msgstr "" -#: src/Widgets/Editor.vala:1281 +#: src/Widgets/Editor.vala:1296 msgid "Insert YAML Frontmatter" msgstr "" -#: src/Widgets/Editor.vala:1379 -msgid "Insert Citation" -msgstr "Lisää sitaatti" - -#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); -#: src/Widgets/Library.vala:73 -msgid "Library" -msgstr "Kirjasto" - -#: src/Widgets/Library.vala:538 +#: src/Widgets/Library.vala:539 msgid "Export Preview" msgstr "Viennin esikatselu" -#: src/Widgets/Library.vala:548 +#: src/Widgets/Library.vala:549 msgid "Writing Statistics" msgstr "Kirjoitustilastot" -#: src/Widgets/Library.vala:561 +#: src/Widgets/Library.vala:562 msgid "Search " msgstr "Etsi " -#: src/Widgets/Library.vala:573 -msgid "Open in File Manager" -msgstr "Avaa tiedostonhallinnassa" - -#: src/Widgets/Library.vala:585 +#: src/Widgets/Library.vala:586 msgid "Create Sub-Folder" msgstr "Luo alikansio" -#: src/Widgets/Library.vala:602 +#: src/Widgets/Library.vala:603 msgid "Hide from Library" msgstr "Piilota kirjastosta" -#: src/Widgets/Library.vala:626 +#: src/Widgets/Library.vala:627 msgid "Show Hidden Items" msgstr "Näytä piilotetut kohteet" -#: src/Widgets/Library.vala:638 -msgid "Set Project Icon" -msgstr "Valitse projektin kuvake" - -#: src/Widgets/Library.vala:641 src/Widgets/Preferences.vala:389 -msgid "None" -msgstr "Ei mitään" - -#: src/Widgets/Library.vala:644 -msgid "Folder" -msgstr "Kansio" - -#: src/Widgets/Library.vala:647 -msgid "Reader" -msgstr "" - -#: src/Widgets/Library.vala:650 -msgid "Love" -msgstr "" - -#: src/Widgets/Library.vala:653 -msgid "Game" -msgstr "" - -#: src/Widgets/Library.vala:656 -msgid "Art" -msgstr "" - -#: src/Widgets/Library.vala:659 -msgid "Nature" -msgstr "" - -#: src/Widgets/Library.vala:662 -msgid "Food" -msgstr "" - -#: src/Widgets/Library.vala:665 -msgid "Help" -msgstr "" - -#: src/Widgets/Library.vala:668 -msgid "Cool" -msgstr "" - -#: src/Widgets/Library.vala:671 -msgid "Angel" -msgstr "" - -#: src/Widgets/Library.vala:674 -msgid "Monkey" -msgstr "" - -#: src/Widgets/Library.vala:677 -msgid "WordPress" -msgstr "WordPress" - -#: src/Widgets/Library.vala:680 -msgid "Ghost" -msgstr "Ghost" - -#: src/Widgets/Library.vala:683 -msgid "Write Freely" -msgstr "" - -#: src/Widgets/Library.vala:686 -msgid "Trash" -msgstr "" - -#: src/Widgets/Library.vala:696 +#: src/Widgets/Library.vala:697 msgid "Remove from Library" msgstr "Poista kirjastosta" -#: src/Widgets/Library.vala:933 +#: src/Widgets/Library.vala:934 msgid "Copy" msgstr "Kopioi" -#: src/Widgets/Library.vala:935 +#: src/Widgets/Library.vala:936 msgid "Move" msgstr "Siirrä" @@ -808,10 +355,6 @@ msgstr "Arkin nimi" msgid "Create" msgstr "Luo" -#: src/Widgets/NewSheet.vala:41 -msgid "Import" -msgstr "Tuo" - #: src/Widgets/Preferences.vala:50 msgid "Current Connections" msgstr "Nykyiset yhteydet" @@ -832,40 +375,10 @@ msgstr "Valitse bloggausohjelmisto." msgid " WriteFreely" msgstr " WriteFreely" -#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 -#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 -#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 -msgid "Connection Error" -msgstr "" - #: src/Widgets/Preferences.vala:91 msgid " ghost" msgstr " ghost" -#: src/Widgets/Preferences.vala:125 -msgid " WordPress" -msgstr " WordPress" - -#: src/Widgets/Preferences.vala:159 -msgid " Medium" -msgstr "" - -#: src/Widgets/Preferences.vala:193 -msgid " Forem" -msgstr "" - -#: src/Widgets/Preferences.vala:227 -msgid " Hashnode" -msgstr "" - -#: src/Widgets/Preferences.vala:279 -msgid "Connections" -msgstr "Yhteydet" - -#: src/Widgets/Preferences.vala:340 -msgid "Remove " -msgstr "Poista " - #: src/Widgets/Preferences.vala:343 msgid "_Remove" msgstr "_Poista" @@ -874,22 +387,14 @@ msgstr "_Poista" msgid "_Keep" msgstr "_Säilytä" -#: src/Widgets/Preferences.vala:373 -msgid "Display" -msgstr "Näkymä" - -#: src/Widgets/Preferences.vala:377 -msgid "Display Options" -msgstr "Näkymän valinnat" - -#: src/Widgets/Preferences.vala:378 -msgid "Make ThiefMD feel like home." -msgstr "Tee ThiefMD:stä mieluisa itsellesi." - #: src/Widgets/Preferences.vala:384 msgid "Focus" msgstr "Kohdistus" +#: src/Widgets/Library.vala:642 src/Widgets/Preferences.vala:389 +msgid "None" +msgstr "Ei mitään" + #: src/Widgets/Preferences.vala:390 msgid "Paragraph" msgstr "Kappale" @@ -902,30 +407,16 @@ msgstr "Lause" msgid "Word" msgstr "Sana" -#: src/Widgets/Preferences.vala:431 -msgid "Number of Lines to Preview in Sheets View" -msgstr "" - #: src/Widgets/Preferences.vala:440 msgid "Add New Theme" msgstr "Lisää uusi teema" -#: src/Widgets/Preferences.vala:487 -msgid "Compiling Options" -msgstr "" - -#: src/Widgets/Preferences.vala:488 -msgid "Adjust how Markdown files are compiled together." -msgstr "" - #: src/Widgets/Preferences.vala:496 msgid "First Markdown File includes Author Metadata" msgstr "" #: src/Widgets/Preferences.vala:498 -msgid "" -"First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>Author metadata</a>" +msgid "First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Author metadata</a>" msgstr "" #: src/Widgets/Preferences.vala:514 @@ -944,14 +435,6 @@ msgstr "Sisällytä YAML-otsikko otsikoksi" msgid "Include YAML title as H1 Heading" msgstr "Sisällytä YAML-otsikko H1-otsikoksi" -#: src/Widgets/Preferences.vala:543 -msgid "Page Setup" -msgstr "Sivun asetukset" - -#: src/Widgets/Preferences.vala:544 -msgid "Configure PDF export options." -msgstr "Muokkaa PDF-viennin asetuksia." - #: src/Widgets/Preferences.vala:552 msgid "Page Break between Folders" msgstr "Sivuvaihto kansioiden välissä" @@ -976,38 +459,10 @@ msgstr "" msgid "Top & Bottom margins in PDF in inches" msgstr "" -#: src/Widgets/Preferences.vala:641 -msgid "PDF CSS" -msgstr "PDF CSS" - -#: src/Widgets/Preferences.vala:642 -msgid "Choose CSS Style for PDF Export." -msgstr "Valitse CSS-tyyli PDF-vientiä varten." - -#: src/Widgets/Preferences.vala:650 -msgid "ePub & HTML CSS" -msgstr "ePub & HTML CSS" - -#: src/Widgets/Preferences.vala:651 -msgid "Choose CSS Style to use for ePub and HTML Export." -msgstr "Valitse ePub- ja HTML-vienneissä käytettävä CSS-tyyli." - #: src/Widgets/Preferences.vala:657 msgid "Add Export Style" msgstr "Lisää vientityyli" -#: src/Widgets/Preferences.vala:680 -msgid "Editor" -msgstr "Muokkain" - -#: src/Widgets/Preferences.vala:684 -msgid "Editor Settings" -msgstr "Muokkaimen asetukset" - -#: src/Widgets/Preferences.vala:685 -msgid "Modify the ThiefMD environment." -msgstr "Muokkaa ThiefMD-ympäristöä." - #: src/Widgets/Preferences.vala:693 msgid "Enable spellcheck" msgstr "Käytä oikolukua" @@ -1040,22 +495,6 @@ msgstr "" msgid "Show writing statistics" msgstr "Näytä kirjoitustilastot" -#: src/Widgets/Preferences.vala:765 -msgid "Disable application tips" -msgstr "Poista käytöstä sovelluksen vinkit" - -#: src/Widgets/Preferences.vala:766 -msgid "Start with new empty sheet on launch" -msgstr "Aloita uudella tyhjällä arkilla käynnistäessä" - -#: src/Widgets/Preferences.vala:779 -msgid "ThiefMD Settings" -msgstr "ThiefMD:n asetukset" - -#: src/Widgets/Preferences.vala:780 -msgid "Modify the ThiefMD appearance." -msgstr "Muokkaa ThiefMD:n ulkoasua." - #: src/Widgets/Preferences.vala:790 msgid "Toggle interface theming" msgstr "" @@ -1088,18 +527,10 @@ msgstr "" msgid "Keep library order" msgstr "" -#: src/Widgets/Preferences.vala:858 -msgid "Toggle experimental features" -msgstr "" - -#: src/Widgets/Preferences.vala:860 -msgid "Enable experimental features" -msgstr "Käytä kokeellisia ominaisuuksia" - #: src/Widgets/PublisherPreviewWindow.vala:67 #: src/Widgets/PublisherPreviewWindow.vala:209 -#: src/Widgets/QuickPreferences.vala:104 src/Widgets/QuickPreferences.vala:188 -#: src/Widgets/QuickPreferences.vala:267 +#: src/Widgets/QuickPreferences.vala:109 src/Widgets/QuickPreferences.vala:204 +#: src/Widgets/QuickPreferences.vala:293 msgid "Publishing Preview" msgstr "" @@ -1124,14 +555,11 @@ msgid "words" msgstr "sanaa" #: src/Widgets/ProjectStatistics.vala:126 -#, c-format -msgid "" -"<b>Reading Time:</b>\n" +msgid "<b>Reading Time:</b>\n" "%d %s\n" "%d %s\n" "%d %s" -msgstr "" -"<b>Lukuaika:</b>\n" +msgstr "<b>Lukuaika:</b>\n" "%d %s\n" "%d %s\n" "%d %s" @@ -1180,75 +608,40 @@ msgstr "" msgid "Toggle Write Good" msgstr "" -#: src/Widgets/QuickPreferences.vala:71 -msgid "Check Grammar" -msgstr "Tarkista kieliasu" - -#: src/Widgets/QuickPreferences.vala:74 -msgid "Toggle Grammar Checking" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:87 -msgid "Grammar check is not available for your language" -msgstr "Kieliasun tarkistus ei ole käytettävissä kielelläsi" - -#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:181 -#: src/Widgets/QuickPreferences.vala:260 +#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:197 +#: src/Widgets/QuickPreferences.vala:281 msgid "Launch Preview" msgstr "" -#: src/Widgets/QuickPreferences.vala:106 src/Widgets/QuickPreferences.vala:190 -#: src/Widgets/QuickPreferences.vala:269 -msgid "Open Export Window" -msgstr "Avaa vienti-ikkuna" - -#: src/Widgets/QuickPreferences.vala:113 src/Widgets/QuickPreferences.vala:197 -#: src/Widgets/QuickPreferences.vala:276 -msgid "Search Library" -msgstr "Etsi kirjastosta" - -#: src/Widgets/QuickPreferences.vala:115 src/Widgets/QuickPreferences.vala:199 -#: src/Widgets/QuickPreferences.vala:278 -msgid "Open Search Window" -msgstr "Avaa hakuikkuna" - -#: src/Widgets/QuickPreferences.vala:121 src/Widgets/QuickPreferences.vala:205 -#: src/Widgets/QuickPreferences.vala:284 +#: src/Widgets/QuickPreferences.vala:135 src/Widgets/QuickPreferences.vala:226 +#: src/Widgets/QuickPreferences.vala:315 msgid "Preferences" msgstr "Asetukset" -#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:207 -#: src/Widgets/QuickPreferences.vala:286 +#: src/Widgets/QuickPreferences.vala:137 src/Widgets/QuickPreferences.vala:228 +#: src/Widgets/QuickPreferences.vala:317 msgid "Edit Preferences" msgstr "Muokkaa asetuksia" -#: src/Widgets/ThemeSelector.vala:55 -msgid "Spacing" -msgstr "Välistys" +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Widgets/ThemeSelector.vala:50 +msgid "Font" +msgstr "Fontti" #: src/Widgets/ThemeSelector.vala:142 msgid "Font Selector" msgstr "Fonttivalitsin" -#: src/Widgets/ThemeSelector.vala:326 -msgid "Download" -msgstr "Lataa" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "more themes" -msgstr "" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "Stored in" +#: src/Widgets/ThemeSelector.vala:320 +msgid "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" +"<small>Stored in <a href='file://" msgstr "" #: src/Widgets/SearchBar.vala:110 -#, c-format msgid "(%d occurences)" msgstr "" #: src/Widgets/StatisticsBar.vala:100 -#, c-format msgid "%d %s %d %s and %d %s reading time." msgstr "" @@ -1273,7 +666,6 @@ msgid "seconds" msgstr "sekuntia" #: src/Widgets/StatisticsBar.vala:106 -#, c-format msgid "%s : %d words." msgstr "%s : %d sanaa." @@ -1281,9 +673,9 @@ msgstr "%s : %d sanaa." msgid "Library Search" msgstr "Kirjastohaku" -#: src/Widgets/SearchWindow.vala:421 -msgid "Search" -msgstr "" +#: src/Widgets/SearchWindow.vala:422 +msgid " Search" +msgstr " Etsi" #: src/Widgets/SearchWindow.vala:445 msgid "Monitor for Library changes" @@ -1297,8 +689,605 @@ msgstr "<b>Varastetaan tiedoston sisältöä...</b>" msgid "Heading" msgstr "Otsikko" -#~ msgid "Print to File" -#~ msgstr "Tulosta tiedostoon" +#. Font settings +#. Arbitrary strings +#: src/Constants/AppSettings.vala:104 +msgid "# Click on a sheet to get started\n" +"\n" +"First time here? Drag a folder into the library, or click on the Folder icon to select a folder to add.\n" +"\n" +"## Thief Tip:\n" +"\n" +"%s" +msgstr "" + +#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); +#: src/ThiefApp.vala:182 +msgid "Library" +msgstr "Kirjasto" + +#: src/Widgets/Preferences.vala:680 +msgid "Editor" +msgstr "Muokkain" + +#: src/Widgets/SearchWindow.vala:421 +msgid "Search" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:111 src/Widgets/QuickPreferences.vala:206 +#: src/Widgets/QuickPreferences.vala:295 +msgid "Open Export Window" +msgstr "Avaa vienti-ikkuna" + +#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:218 +#: src/Widgets/QuickPreferences.vala:307 +msgid "Search Library" +msgstr "Etsi kirjastosta" + +#: src/Widgets/QuickPreferences.vala:125 src/Widgets/QuickPreferences.vala:220 +#: src/Widgets/QuickPreferences.vala:309 +msgid "Open Search Window" +msgstr "Avaa hakuikkuna" + +#: src/Widgets/ThemeSelector.vala:55 +msgid "Spacing" +msgstr "Välistys" + +#: src/Widgets/Preferences.vala:858 +msgid "Toggle experimental features" +msgstr "" + +#: src/Widgets/Preferences.vala:860 +msgid "Enable experimental features" +msgstr "Käytä kokeellisia ominaisuuksia" + +#: src/Controllers/Dialogs.vala:161 +msgid "Supported files" +msgstr "Tuetut tiedostot" + +#: src/Controllers/Dialogs.vala:170 +msgid "%s files" +msgstr "%s tiedostoa" + +#: src/Widgets/Library.vala:574 +msgid "Open in File Manager" +msgstr "Avaa tiedostonhallinnassa" + +#: src/Widgets/NewSheet.vala:41 +msgid "Import" +msgstr "Tuo" + +#: src/Widgets/Preferences.vala:125 +msgid " WordPress" +msgstr " WordPress" + +#: src/Constants/ThiefProperties.vala:25 +msgid "The Markdown editor worth stealing" +msgstr "Varastamisen arvoinen Markdown-muokkain" + +#: src/Constants/ThiefProperties.vala:87 +msgid "Contributors who help make ThiefMD awesome" +msgstr "" + +#: src/Constants/ThiefProperties.vala:89 +msgid "French Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:90 +msgid "Slovak Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:91 +msgid "Swedish Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Original Code" +msgstr "Alkuperäinen koodi" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" +msgstr "Pohjautuu <a href='https://github.com/lainsce/quilter'>Quilteriin</a>" + +#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:95 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 +msgid "Copyright" +msgstr "Tekijänoikeus" + +#: src/Constants/ThiefProperties.vala:94 +msgid "GNU General Public License v3.0" +msgstr "" + +#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +msgid "SIL OPEN FONT LICENSE Version 1.1" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Preview CSS" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Mash up of Splendor and Modest" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:109 +msgid "The MIT License (MIT)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:102 +msgid "Markdown Parsing" +msgstr "Markdown-jäsennys" + +#: src/Constants/ThiefProperties.vala:102 +msgid "BSD-style License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:103 +msgid "Syntax Highlighting" +msgstr "Syntaksin korostus" + +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:107 +msgid "BSD-3-Clause License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Math Rendering" +msgstr "" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Khan Academy and other contributors." +msgstr "" + +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +msgid "MIT License" +msgstr "MIT-lisenssi" + +#: src/Constants/ThiefProperties.vala:105 +msgid "XML Parsing" +msgstr "XML-jäsennys" + +#: src/Constants/ThiefProperties.vala:106 +msgid "Pandoc Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "John MacFarlane and others" +msgstr "John MacFarlane ja muut" + +#: src/Constants/ThiefProperties.vala:106 +msgid "GNU General Public License v2.0" +msgstr "" + +#: src/Constants/ThiefProperties.vala:109 +msgid "libwritegood-vala based on" +msgstr "" + +#: src/Constants/ThiefProperties.vala:109 +msgid "write-good: Naive linter for English prose" +msgstr "" + +#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME +#: src/Constants/ThiefProperties.vala:113 +msgid "A3 (11.7 x 16.5 inches)" +msgstr "A3 (11,7 x 16,5 tuumaa)" + +#: src/Constants/ThiefProperties.vala:114 +msgid "A4 (8 x 11 inches)" +msgstr "A4 (8 x 11 tuumaa)" + +#: src/Constants/ThiefProperties.vala:115 +msgid "A5 (5.8 x 8.3 inches)" +msgstr "A5 (5,8 x 8,3 tuumaa)" + +#: src/Constants/ThiefProperties.vala:116 +msgid "B5 (6.93 x 9.84 inches)" +msgstr "B5 (6,93 x 9,84 tuumaa)" + +#: src/Constants/ThiefProperties.vala:117 +msgid "Executive (7 x 10 inches)" +msgstr "Executive (7 x 10 tuumaa)" + +#: src/Constants/ThiefProperties.vala:118 +msgid "Legal (8.5 x 14 inches)" +msgstr "Legal (8,5 x 14 tuumaa)" + +#: src/Constants/ThiefProperties.vala:119 +msgid "Letter (8.5 x 11 inches)" +msgstr "Letter (8,5 x 11 tuumaa)" + +#: src/Constants/ThiefProperties.vala:122 +msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." +msgstr "" + +#: src/Constants/ThiefProperties.vala:123 +msgid "No built in dark mode? Dark themes are available at https://themes.thiefmd.com. Add more in the Preferences (`Ctrl+,`)." +msgstr "" + +#: src/Constants/ThiefProperties.vala:124 +msgid "Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and click Export." +msgstr "" + +#: src/Constants/ThiefProperties.vala:125 +msgid "Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." +msgstr "" + +#: src/Constants/ThiefProperties.vala:126 +msgid "Ready to publish your great work? Right-click on the folder and choose \"Export Preview\"" +msgstr "" + +#: src/Constants/ThiefProperties.vala:127 +msgid "Want to block out distractions? Full-screen is just an `F11` away." +msgstr "" + +#: src/Constants/ThiefProperties.vala:128 +msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." +msgstr "" + +#: src/Constants/ThiefProperties.vala:129 +msgid "Working with a lot of links? Turn on Experimental Mode to make your markdown more readable `Ctrl+Shift+M`." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:127 +msgid "New WriteFreely Connection" +msgstr "Uusi WriteFreely-yhteys" + +#: src/Connections/GhostConnection.vala:106 +msgid "New ghost Connection" +msgstr "Uusi ghost-yhteys" + +#: src/Connections/WordpressConnection.vala:109 +msgid "New Wordpress Connection" +msgstr "Uusi WordPress-yhteys" + +#. website = ThiefProperties.URL; +#: src/Widgets/About.vala:94 +msgid "Feedback" +msgstr "" + +#. license_type = ThiefProperties.LICENSE_TYPE; +#: src/Widgets/About.vala:99 +msgid "This program comes with absolutely no warranty." +msgstr "Tämä ohjelma ei sisällä minkäänlaista takuuta." + +#: src/Widgets/About.vala:100 +msgid "See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, version 3 or later</a> for details." +msgstr "" + +#: src/Widgets/Preferences.vala:279 +msgid "Connections" +msgstr "Yhteydet" + +#: src/Widgets/Preferences.vala:340 +msgid "Remove " +msgstr "Poista " + +#: src/Widgets/Preferences.vala:373 +msgid "Display" +msgstr "Näkymä" + +#: src/Widgets/Preferences.vala:377 +msgid "Display Options" +msgstr "Näkymän valinnat" + +#: src/Widgets/Preferences.vala:378 +msgid "Make ThiefMD feel like home." +msgstr "Tee ThiefMD:stä mieluisa itsellesi." + +#: src/Widgets/Preferences.vala:487 +msgid "Compiling Options" +msgstr "" + +#: src/Widgets/Preferences.vala:488 +msgid "Adjust how Markdown files are compiled together." +msgstr "" + +#: src/Widgets/Preferences.vala:543 +msgid "Page Setup" +msgstr "Sivun asetukset" + +#: src/Widgets/Preferences.vala:544 +msgid "Configure PDF export options." +msgstr "Muokkaa PDF-viennin asetuksia." + +#: src/Widgets/Preferences.vala:641 +msgid "PDF CSS" +msgstr "PDF CSS" + +#: src/Widgets/Preferences.vala:642 +msgid "Choose CSS Style for PDF Export." +msgstr "Valitse CSS-tyyli PDF-vientiä varten." + +#: src/Widgets/Preferences.vala:650 +msgid "ePub & HTML CSS" +msgstr "ePub & HTML CSS" + +#: src/Widgets/Preferences.vala:651 +msgid "Choose CSS Style to use for ePub and HTML Export." +msgstr "Valitse ePub- ja HTML-vienneissä käytettävä CSS-tyyli." + +#: src/Widgets/Preferences.vala:684 +msgid "Editor Settings" +msgstr "Muokkaimen asetukset" + +#: src/Widgets/Preferences.vala:685 +msgid "Modify the ThiefMD environment." +msgstr "Muokkaa ThiefMD-ympäristöä." + +#: src/Widgets/Preferences.vala:779 +msgid "ThiefMD Settings" +msgstr "ThiefMD:n asetukset" + +#: src/Widgets/Preferences.vala:780 +msgid "Modify the ThiefMD appearance." +msgstr "Muokkaa ThiefMD:n ulkoasua." + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Download" +msgstr "Lataa" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "more themes" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Stored in" +msgstr "" + +#: src/ThiefApp.vala:315 +msgid "Fountain" +msgstr "" + +#: src/Constants/ThiefProperties.vala:101 +msgid "Fountain Preview and Export" +msgstr "" + +#: src/Exporters/ExportFountain.vala:57 +msgid "Fountain files" +msgstr "" + +#: src/Exporters/ExportFountain.vala:63 +msgid "Export Fountain" +msgstr "" + +#: src/Widgets/HeaderBar.vala:107 +msgid "Show Notes" +msgstr "Näytä huomiot" + +#: src/Widgets/Sheet.vala:289 +msgid "Copy File Path" +msgstr "Kopioi tiedoston polku" + +#: src/Widgets/Editor.vala:1394 +msgid "Insert Citation" +msgstr "Lisää sitaatti" + +#: src/Widgets/Library.vala:639 +msgid "Set Project Icon" +msgstr "Valitse projektin kuvake" + +#: src/Widgets/Library.vala:645 +msgid "Folder" +msgstr "Kansio" + +#: src/Widgets/Library.vala:648 +msgid "Reader" +msgstr "" + +#: src/Widgets/Library.vala:651 +msgid "Love" +msgstr "" + +#: src/Widgets/Library.vala:654 +msgid "Game" +msgstr "" + +#: src/Widgets/Library.vala:657 +msgid "Art" +msgstr "" + +#: src/Widgets/Library.vala:660 +msgid "Nature" +msgstr "" + +#: src/Widgets/Library.vala:663 +msgid "Food" +msgstr "" + +#: src/Widgets/Library.vala:666 +msgid "Help" +msgstr "" + +#: src/Widgets/Library.vala:669 +msgid "Cool" +msgstr "" + +#: src/Widgets/Library.vala:672 +msgid "Angel" +msgstr "" + +#: src/Widgets/Library.vala:675 +msgid "Monkey" +msgstr "" + +#: src/Widgets/Library.vala:678 +msgid "WordPress" +msgstr "WordPress" + +#: src/Widgets/Library.vala:681 +msgid "Ghost" +msgstr "Ghost" + +#: src/Widgets/Library.vala:684 +msgid "Write Freely" +msgstr "" + +#: src/Widgets/Library.vala:687 +msgid "Trash" +msgstr "" + +#: src/Widgets/Preferences.vala:431 +msgid "Number of Lines to Preview in Sheets View" +msgstr "" + +#: src/Widgets/Preferences.vala:765 +msgid "Disable application tips" +msgstr "Poista käytöstä sovelluksen vinkit" + +#: src/Widgets/Preferences.vala:766 +msgid "Start with new empty sheet on launch" +msgstr "Aloita uudella tyhjällä arkilla käynnistäessä" + +#: src/Enrichments/Fountain.vala:32 +msgid "Characters" +msgstr "" + +#: src/Enrichments/Markdown.vala:30 +msgid "Citations" +msgstr "" + +#: src/Constants/ThiefProperties.vala:95 +msgid "Stolen Victory Font" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "Grammar Check" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "the AbiSource Community" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "GNU Lesser General Public License v2.1" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:71 +msgid "Check Grammar" +msgstr "Tarkista kieliasu" + +#: src/Widgets/QuickPreferences.vala:74 +msgid "Toggle Grammar Checking" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:87 +msgid "Grammar check is not available for your language" +msgstr "Kieliasun tarkistus ei ole käytettävissä kielelläsi" + +#: src/Constants/ThiefProperties.vala:88 +msgid "Czech Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "PDF Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "Simon Sapin and contributors" +msgstr "" + +#: src/Controllers/FileManager.vala:39 +msgid "Stealing file contents..." +msgstr "" + +#: src/Controllers/FileManager.vala:40 +msgid "This isn't plagiarism, it's a remix!" +msgstr "" + +#: src/Controllers/FileManager.vala:41 +msgid "NYT Best Seller, here we come!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:233 +msgid "Taking your words, and letting them go... to the internet!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:234 +msgid "Mhm... I see and I ship." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:235 +msgid "Is this a selfie, and you're happy to see me?" +msgstr "" + +#: src/Connections/GhostConnection.vala:192 +msgid "Your words are like Casper... Friendly!" +msgstr "" + +#: src/Connections/GhostConnection.vala:193 +msgid "I see your words, and I'm taking them to the internet!" +msgstr "" + +#: src/Connections/GhostConnection.vala:194 +msgid "Booooooooooo! (That's Ghost speak for Great Work!)" +msgstr "" + +#: src/Connections/WordpressConnection.vala:192 +msgid "Taking it to the internet!" +msgstr "" + +#: src/Connections/WordpressConnection.vala:193 +msgid "Don't forget to share on reddit." +msgstr "" + +#: src/Connections/WordpressConnection.vala:194 +msgid "Pressing words together..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:149 +msgid "Simply Shakespearean." +msgstr "" + +#: src/Exporters/ExportPdf.vala:150 +msgid "Hmm... that's interesting..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:151 +msgid "Your writing is insightful." +msgstr "" + +#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 +#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 +#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 +msgid "Connection Error" +msgstr "" + +#: src/Widgets/Preferences.vala:159 +msgid " Medium" +msgstr "" + +#: src/Widgets/Preferences.vala:193 +msgid " Forem" +msgstr "" + +#: src/Widgets/Preferences.vala:227 +msgid " Hashnode" +msgstr "" + +#: src/Constants/ThiefProperties.vala:92 +msgid "German Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:93 +msgid "Finnish Translation Contributors" +msgstr "" + +#: src/Connections/WordpressConnection.vala:89 +msgid "Application Password" +msgstr "" -#~ msgid " Search" -#~ msgstr " Etsi" diff --git a/po/fr.po b/po/fr.po index 20c338d9..12137e30 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,311 +1,37 @@ msgid "" msgstr "" -"Project-Id-Version: ThiefMD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-26 11:34-0700\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: POEditor.com\n" +"Project-Id-Version: ThiefMD\n" +"Language: fr\n" -#: src/ThiefApp.vala:244 +#: src/ThiefApp.vala:309 msgid "HTML" msgstr "HTML" -#: src/ThiefApp.vala:245 +#: src/ThiefApp.vala:310 msgid "PDF" msgstr "PDF" -#: src/ThiefApp.vala:246 +#: src/ThiefApp.vala:311 msgid "MHTML" msgstr "MHTML" -#: src/ThiefApp.vala:247 +#: src/ThiefApp.vala:312 msgid "Markdown" msgstr "Markdown" -#: src/ThiefApp.vala:248 +#: src/ThiefApp.vala:313 msgid "LaTeX" msgstr "LaTeX" -#: src/ThiefApp.vala:249 +#: src/ThiefApp.vala:314 msgid "DocX" msgstr "Docx" -#: src/ThiefApp.vala:250 -msgid "Fountain" -msgstr "" - -#. Visual Settings -#. Arbitrary strings -#: src/Constants/AppSettings.vala:104 -#, c-format -msgid "" -"# Click on a sheet to get started\n" -"\n" -"First time here? Drag a folder into the library, or click on the Folder " -"icon to select a folder to add.\n" -"\n" -"## Thief Tip:\n" -"\n" -"%s" -msgstr "" -"# Cliquez sur une Feuille pour commencer\n" -"\n" -"Première fois ici ? Glissez un dossier sur la bibliothèque, ou cliquez sur " -"l'icône de dossier pour sélectionner un dossier à ajouter.\n" -"\n" -"## Astuce Thief:\n" -"\n" -"%s" - -#: src/Constants/ThiefProperties.vala:25 -msgid "The Markdown editor worth stealing" -msgstr "" - -#: src/Constants/ThiefProperties.vala:86 -msgid "Contributors who help make ThiefMD awesome" -msgstr "" - -#: src/Constants/ThiefProperties.vala:87 -msgid "Czech Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:88 -msgid "French Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:89 -msgid "Slovak Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:90 -msgid "Swedish Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:91 -msgid "German Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:92 -msgid "Finnish Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Original Code" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 src/Constants/ThiefProperties.vala:94 -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:101 -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -#: src/Constants/ThiefProperties.vala:105 -#: src/Constants/ThiefProperties.vala:106 -#: src/Constants/ThiefProperties.vala:107 -#: src/Constants/ThiefProperties.vala:108 -msgid "Copyright" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "GNU General Public License v3.0" -msgstr "" - -#: src/Constants/ThiefProperties.vala:94 -msgid "Stolen Victory Font" -msgstr "" - -#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -msgid "SIL OPEN FONT LICENSE Version 1.1" -msgstr "" - -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -msgid "MIT License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Widgets/ThemeSelector.vala:50 -msgid "Font" -msgstr "Police" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Preview CSS" -msgstr "" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Mash up of Splendor and Modest" -msgstr "" - -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:108 -msgid "The MIT License (MIT)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:100 -msgid "Fountain Preview and Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:101 -msgid "Markdown Parsing" -msgstr "" - -#: src/Constants/ThiefProperties.vala:101 -msgid "BSD-style License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:102 -msgid "Syntax Highlighting" -msgstr "" - -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:106 -msgid "BSD-3-Clause License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Math Rendering" -msgstr "" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Khan Academy and other contributors." -msgstr "" - -#: src/Constants/ThiefProperties.vala:104 -msgid "XML Parsing" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "Pandoc Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "John MacFarlane and others" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "GNU General Public License v2.0" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "PDF Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "Simon Sapin and contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "Grammar Check" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "the AbiSource Community" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "GNU Lesser General Public License v2.1" -msgstr "" - -#: src/Constants/ThiefProperties.vala:108 -msgid "libwritegood-vala based on" -msgstr "" - -#: src/Constants/ThiefProperties.vala:108 -msgid "write-good: Naive linter for English prose" -msgstr "" - -#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME -#: src/Constants/ThiefProperties.vala:112 -msgid "A3 (11.7 x 16.5 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:113 -msgid "A4 (8 x 11 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:114 -msgid "A5 (5.8 x 8.3 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:115 -msgid "B5 (6.93 x 9.84 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:116 -msgid "Executive (7 x 10 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:117 -msgid "Legal (8.5 x 14 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:118 -msgid "Letter (8.5 x 11 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:121 -msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." -msgstr "" - -#: src/Constants/ThiefProperties.vala:122 -msgid "" -"No built in dark mode? Dark themes are available at https://themes.thiefmd." -"com. Add more in the Preferences (`Ctrl+,`)." -msgstr "" - -#: src/Constants/ThiefProperties.vala:123 -msgid "" -"Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and " -"click Export." -msgstr "" - -#: src/Constants/ThiefProperties.vala:124 -msgid "" -"Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." -msgstr "" - -#: src/Constants/ThiefProperties.vala:125 -msgid "" -"Ready to publish your great work? Right-click on the folder and choose " -"\"Export Preview\"" -msgstr "" - -#: src/Constants/ThiefProperties.vala:126 -msgid "Want to block out distractions? Full-screen is just an `F11` away." -msgstr "" - -#: src/Constants/ThiefProperties.vala:127 -msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." -msgstr "" - -#: src/Constants/ThiefProperties.vala:128 -msgid "" -"Working with a lot of links? Turn on Experimental Mode to make your markdown " -"more readable `Ctrl+Shift+M`." -msgstr "" - -#: src/Controllers/FileManager.vala:39 -msgid "Stealing file contents..." -msgstr "" - -#: src/Controllers/FileManager.vala:40 -msgid "This isn't plagiarism, it's a remix!" -msgstr "" - -#: src/Controllers/FileManager.vala:41 -msgid "NYT Best Seller, here we come!" -msgstr "" - +#. Supported import file extensions #: src/Controllers/FileManager.vala:43 msgid "Importing File" msgstr "Importer un fichier" @@ -325,6 +51,7 @@ msgstr "_Annuler" msgid "_Open" msgstr "_Ouvrir" +#. Where necessary, I modified the default shortcut to fit the French menus. #: src/Controllers/Dialogs.vala:61 msgid "_Add to Library" msgstr "Ajouter à la _bibliothèque" @@ -358,15 +85,6 @@ msgstr "fichiers LaTeX" msgid "LaTeX file" msgstr "fichier LaTeX" -#: src/Controllers/Dialogs.vala:161 -msgid "Supported files" -msgstr "" - -#: src/Controllers/Dialogs.vala:170 -#, c-format -msgid "%s files" -msgstr "" - #: src/Controllers/Dialogs.vala:177 msgid "All files" msgstr "Tous les fichiers" @@ -385,29 +103,20 @@ msgstr "Enregistrer fichier" #: src/Controllers/Dialogs.vala:222 msgid "There are unsaved changes to the file. Do you want to save?" -msgstr "" -"Il y a des changements non-sauvegardés dans le fichier. Voulez-vous " -"enregistrer?" +msgstr "Il y a des changements non-sauvegardés dans le fichier. Voulez-vous enregistrer?" #: src/Controllers/Dialogs.vala:223 msgid "If you don't save, changes will be lost forever." -msgstr "" -"Si vous n'enregistrez pas, les changements seront définitivement perdues." +msgstr "Si vous n'enregistrez pas, les changements seront définitivement perdues." #: src/Controllers/Dialogs.vala:228 msgid "Close without saving" msgstr "Fermer sans enregistrer" -#: src/Controllers/SheetManager.vala:157 src/Widgets/StatisticsBar.vala:93 +#: src/Controllers/SheetManager.vala:156 src/Widgets/StatisticsBar.vala:93 msgid "No file opened" msgstr "Aucun fichier ouvert" -#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 -#: src/Widgets/PublisherPreviewWindow.vala:295 -#: src/Widgets/ProjectStatistics.vala:71 -msgid "Close" -msgstr "Fermer" - #: src/Connections/WriteFreelyConnection.vala:103 #: src/Connections/WordpressConnection.vala:85 msgid "Username" @@ -415,7 +124,6 @@ msgstr "Nom d'utilisateur" #: src/Connections/WriteFreelyConnection.vala:107 #: src/Connections/GhostConnection.vala:86 -#: src/Connections/WordpressConnection.vala:89 msgid "Password" msgstr "Mot de passe" @@ -425,43 +133,21 @@ msgstr "Mot de passe" msgid "Endpoint" msgstr "URL" -#: src/Connections/WriteFreelyConnection.vala:127 -msgid "New WriteFreely Connection" -msgstr "" - #: src/Connections/WriteFreelyConnection.vala:130 #: src/Connections/GhostConnection.vala:109 #: src/Connections/WordpressConnection.vala:112 msgid "_Add Account" msgstr "A_jouter un compte" -#: src/Connections/WriteFreelyConnection.vala:233 -msgid "Taking your words, and letting them go... to the internet!" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:234 -msgid "Mhm... I see and I ship." -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:235 -msgid "Is this a selfie, and you're happy to see me?" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:238 -#: src/Connections/GhostConnection.vala:197 -#: src/Connections/WordpressConnection.vala:198 -msgid "Uploading images" -msgstr "Chargement des images" - #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid " Published" msgstr " Publié" #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid "Post Published" msgstr "Article Publié" @@ -469,45 +155,11 @@ msgstr "Article Publié" msgid "E-mail" msgstr "E-mail" -#: src/Connections/GhostConnection.vala:106 -msgid "New ghost Connection" -msgstr "" - -#: src/Connections/GhostConnection.vala:192 -msgid "Your words are like Casper... Friendly!" -msgstr "" - -#: src/Connections/GhostConnection.vala:193 -msgid "I see your words, and I'm taking them to the internet!" -msgstr "" - -#: src/Connections/GhostConnection.vala:194 -msgid "Booooooooooo! (That's Ghost speak for Great Work!)" -msgstr "" - -#: src/Connections/WordpressConnection.vala:109 -msgid "New Wordpress Connection" -msgstr "" - -#: src/Connections/WordpressConnection.vala:191 -msgid "Taking it to the internet!" -msgstr "" - -#: src/Connections/WordpressConnection.vala:192 -msgid "Don't forget to share on reddit." -msgstr "" - -#: src/Connections/WordpressConnection.vala:193 -msgid "Pressing words together..." -msgstr "" - -#: src/Enrichments/Fountain.vala:32 -msgid "Characters" -msgstr "" - -#: src/Enrichments/Markdown.vala:30 -msgid "Citations" -msgstr "" +#: src/Connections/WriteFreelyConnection.vala:238 +#: src/Connections/GhostConnection.vala:197 +#: src/Connections/WordpressConnection.vala:217 +msgid "Uploading images" +msgstr "Chargement des images" #: src/Exporters/ExportDocx.vala:60 msgid "Export DocX" @@ -529,14 +181,6 @@ msgstr "Exporter LaTeX" msgid "Export Markdown" msgstr "Exporter Markdown" -#: src/Exporters/ExportFountain.vala:57 -msgid "Fountain files" -msgstr "" - -#: src/Exporters/ExportFountain.vala:63 -msgid "Export Fountain" -msgstr "" - #: src/Exporters/ExportMhtml.vala:62 msgid "Export MHTML" msgstr "Exporter MHTML" @@ -545,18 +189,6 @@ msgstr "Exporter MHTML" msgid "Export PDF" msgstr "Exporter PDF" -#: src/Exporters/ExportPdf.vala:149 -msgid "Simply Shakespearean." -msgstr "" - -#: src/Exporters/ExportPdf.vala:150 -msgid "Hmm... that's interesting..." -msgstr "" - -#: src/Exporters/ExportPdf.vala:151 -msgid "Your writing is insightful." -msgstr "" - #: src/Exporters/ExportPdf.vala:153 src/Exporters/ExportPdf.vala:183 msgid "Working PDF Magic" msgstr "" @@ -565,13 +197,17 @@ msgstr "" msgid "Making sure your hard work looks purrfect..." msgstr "" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:132 -#: src/Widgets/QuickPreferences.vala:216 src/Widgets/QuickPreferences.vala:295 +#: src/Exporters/ExportPdf.vala:107 +msgid "Print to File" +msgstr "Imprimer dans un fichier" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:146 +#: src/Widgets/QuickPreferences.vala:237 src/Widgets/QuickPreferences.vala:326 msgid "About ThiefMD" msgstr "À propos de ThiefMD" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:130 -#: src/Widgets/QuickPreferences.vala:214 src/Widgets/QuickPreferences.vala:293 +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:144 +#: src/Widgets/QuickPreferences.vala:235 src/Widgets/QuickPreferences.vala:324 msgid "About" msgstr "À propos" @@ -579,42 +215,28 @@ msgstr "À propos" msgid "Credits" msgstr "Crédits" -#. website = ThiefProperties.URL; -#: src/Widgets/About.vala:94 -msgid "Feedback" -msgstr "" - -#. license_type = ThiefProperties.LICENSE_TYPE; -#: src/Widgets/About.vala:99 -msgid "This program comes with absolutely no warranty." -msgstr "" - -#: src/Widgets/About.vala:100 -msgid "" -"See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General " -"Public License, version 3 or later</a> for details." -msgstr "" +#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 +#: src/Widgets/PublisherPreviewWindow.vala:295 +#: src/Widgets/ProjectStatistics.vala:71 +msgid "Close" +msgstr "Fermer" -#: src/Widgets/HeaderBar.vala:86 +#: src/Widgets/Sheets.vala:179 msgid "New Sheet" msgstr "Nouvelle Feuille" -#: src/Widgets/HeaderBar.vala:98 +#: src/Widgets/HeaderBar.vala:78 msgid "Change View" msgstr "Changer de vue" -#: src/Widgets/HeaderBar.vala:106 +#: src/ThiefApp.vala:186 msgid "Add Folder to Library" msgstr "Ajouter le dossier à la Bibliothèque" -#: src/Widgets/HeaderBar.vala:129 +#: src/Widgets/HeaderBar.vala:92 msgid "Settings" msgstr "Préférences" -#: src/Widgets/HeaderBar.vala:144 -msgid "Show Notes" -msgstr "" - #: src/Widgets/Sheet.vala:215 msgid "Sort by" msgstr "Trier par" @@ -643,30 +265,26 @@ msgstr "Trier par date (descendant)" msgid "Sort by Date Descending" msgstr "Trier par date (montant)" -#: src/Widgets/Sheet.vala:261 src/Widgets/QuickPreferences.vala:95 -#: src/Widgets/QuickPreferences.vala:179 src/Widgets/QuickPreferences.vala:258 +#: src/Widgets/Sheet.vala:273 src/Widgets/QuickPreferences.vala:95 +#: src/Widgets/QuickPreferences.vala:195 src/Widgets/QuickPreferences.vala:279 msgid "Preview" msgstr "Aperçu" -#: src/Widgets/Sheet.vala:269 src/Widgets/Preferences.vala:482 +#: src/Widgets/Sheet.vala:281 src/Widgets/Preferences.vala:482 #: src/Widgets/PublisherPreviewWindow.vala:155 #: src/Widgets/ProjectStatistics.vala:64 msgid "Export" msgstr "Exporter" -#: src/Widgets/Sheet.vala:277 -msgid "Copy File Path" -msgstr "" - #. Gtk.MenuItem menu_rename = new Gtk.MenuItem.with_label (_("Rename File")); #. menu_rename.activate.connect (() => { #. }); #. menu.add (menu_rename); -#: src/Widgets/Sheet.vala:293 +#: src/Widgets/Sheet.vala:305 msgid "Danger Zone" msgstr "Danger Zone" -#: src/Widgets/Sheet.vala:299 +#: src/Widgets/Sheet.vala:311 msgid "Move to Trash" msgstr "Déplacer vers la corbeille" @@ -678,128 +296,47 @@ msgstr "C_harger depuis le disque" msgid "_Keep what's in editor" msgstr "_Garder ce qui est dans l'éditeur" -#: src/Widgets/Editor.vala:1263 +#: src/Widgets/Editor.vala:1278 msgid "Insert Datetime" msgstr "Insérer Datetime" -#: src/Widgets/Editor.vala:1281 +#: src/Widgets/Editor.vala:1296 msgid "Insert YAML Frontmatter" msgstr "Insérer le Frontmatter YAML" -#: src/Widgets/Editor.vala:1379 -msgid "Insert Citation" -msgstr "" - -#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); -#: src/Widgets/Library.vala:73 -msgid "Library" -msgstr "Bibliothèque" - -#: src/Widgets/Library.vala:538 +#: src/Widgets/Library.vala:539 msgid "Export Preview" msgstr "Exporter l'aperçu" -#: src/Widgets/Library.vala:548 +#: src/Widgets/Library.vala:549 msgid "Writing Statistics" msgstr "Écrire les statistiques" -#: src/Widgets/Library.vala:561 +#: src/Widgets/Library.vala:562 msgid "Search " msgstr "Chercher " -#: src/Widgets/Library.vala:573 -msgid "Open in File Manager" -msgstr "" - -#: src/Widgets/Library.vala:585 +#: src/Widgets/Library.vala:586 msgid "Create Sub-Folder" msgstr "Créer un sous-dossier" -#: src/Widgets/Library.vala:602 +#: src/Widgets/Library.vala:603 msgid "Hide from Library" msgstr "Masquer dans la Bibliothèque" -#: src/Widgets/Library.vala:626 +#: src/Widgets/Library.vala:627 msgid "Show Hidden Items" msgstr "Afficher les éléments masqués" -#: src/Widgets/Library.vala:638 -msgid "Set Project Icon" -msgstr "" - -#: src/Widgets/Library.vala:641 src/Widgets/Preferences.vala:389 -msgid "None" -msgstr "Aucun" - -#: src/Widgets/Library.vala:644 -msgid "Folder" -msgstr "" - -#: src/Widgets/Library.vala:647 -msgid "Reader" -msgstr "" - -#: src/Widgets/Library.vala:650 -msgid "Love" -msgstr "" - -#: src/Widgets/Library.vala:653 -msgid "Game" -msgstr "" - -#: src/Widgets/Library.vala:656 -msgid "Art" -msgstr "" - -#: src/Widgets/Library.vala:659 -msgid "Nature" -msgstr "" - -#: src/Widgets/Library.vala:662 -msgid "Food" -msgstr "" - -#: src/Widgets/Library.vala:665 -msgid "Help" -msgstr "" - -#: src/Widgets/Library.vala:668 -msgid "Cool" -msgstr "" - -#: src/Widgets/Library.vala:671 -msgid "Angel" -msgstr "" - -#: src/Widgets/Library.vala:674 -msgid "Monkey" -msgstr "" - -#: src/Widgets/Library.vala:677 -msgid "WordPress" -msgstr "" - -#: src/Widgets/Library.vala:680 -msgid "Ghost" -msgstr "" - -#: src/Widgets/Library.vala:683 -msgid "Write Freely" -msgstr "" - -#: src/Widgets/Library.vala:686 -msgid "Trash" -msgstr "" - -#: src/Widgets/Library.vala:696 +#: src/Widgets/Library.vala:697 msgid "Remove from Library" msgstr "Supprimer de la Bibliothèque" -#: src/Widgets/Library.vala:933 +#: src/Widgets/Library.vala:934 msgid "Copy" msgstr "Copier" -#: src/Widgets/Library.vala:935 +#: src/Widgets/Library.vala:936 msgid "Move" msgstr "Déplacer" @@ -819,10 +356,6 @@ msgstr "Nom de la Feuille" msgid "Create" msgstr "Créer" -#: src/Widgets/NewSheet.vala:41 -msgid "Import" -msgstr "" - #: src/Widgets/Preferences.vala:50 msgid "Current Connections" msgstr "Connexions en cours" @@ -843,40 +376,10 @@ msgstr "Sélectionnez votre logiciel de blogging" msgid " WriteFreely" msgstr " Mode sans distraction" -#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 -#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 -#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 -msgid "Connection Error" -msgstr "" - #: src/Widgets/Preferences.vala:91 msgid " ghost" msgstr " ghost" -#: src/Widgets/Preferences.vala:125 -msgid " WordPress" -msgstr "" - -#: src/Widgets/Preferences.vala:159 -msgid " Medium" -msgstr "" - -#: src/Widgets/Preferences.vala:193 -msgid " Forem" -msgstr "" - -#: src/Widgets/Preferences.vala:227 -msgid " Hashnode" -msgstr "" - -#: src/Widgets/Preferences.vala:279 -msgid "Connections" -msgstr "" - -#: src/Widgets/Preferences.vala:340 -msgid "Remove " -msgstr "" - #: src/Widgets/Preferences.vala:343 msgid "_Remove" msgstr "Supp_rimer" @@ -885,22 +388,14 @@ msgstr "Supp_rimer" msgid "_Keep" msgstr "_Garder" -#: src/Widgets/Preferences.vala:373 -msgid "Display" -msgstr "" - -#: src/Widgets/Preferences.vala:377 -msgid "Display Options" -msgstr "" - -#: src/Widgets/Preferences.vala:378 -msgid "Make ThiefMD feel like home." -msgstr "" - #: src/Widgets/Preferences.vala:384 msgid "Focus" msgstr "Focus" +#: src/Widgets/Library.vala:642 src/Widgets/Preferences.vala:389 +msgid "None" +msgstr "Aucun" + #: src/Widgets/Preferences.vala:390 msgid "Paragraph" msgstr "Paragraphe" @@ -913,33 +408,17 @@ msgstr "Phrase" msgid "Word" msgstr "Mot" -#: src/Widgets/Preferences.vala:431 -msgid "Number of Lines to Preview in Sheets View" -msgstr "" - #: src/Widgets/Preferences.vala:440 msgid "Add New Theme" msgstr "Ajouter un nouveau thème" -#: src/Widgets/Preferences.vala:487 -msgid "Compiling Options" -msgstr "" - -#: src/Widgets/Preferences.vala:488 -msgid "Adjust how Markdown files are compiled together." -msgstr "" - #: src/Widgets/Preferences.vala:496 msgid "First Markdown File includes Author Metadata" msgstr "Le 1er fichier Markdown comporte les métadonnées d'auteur" #: src/Widgets/Preferences.vala:498 -msgid "" -"First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>Author metadata</a>" -msgstr "" -"Le 1er fichier Markdown inclut les <a href='https://pandoc.org/MANUAL." -"html#epub-metadata'>métadonnées d'auteur</a>" +msgid "First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Author metadata</a>" +msgstr "Le 1er fichier Markdown inclut les <a href='https://pandoc.org/MANUAL.html#epub-metadata'>métadonnées d'auteur</a>" #: src/Widgets/Preferences.vala:514 msgid "Resolve full paths to resources" @@ -957,14 +436,6 @@ msgstr "Inlcure les titres YAML en tant que Titre" msgid "Include YAML title as H1 Heading" msgstr "Inlcure les titres YAML en tant que Titre de niveau 1" -#: src/Widgets/Preferences.vala:543 -msgid "Page Setup" -msgstr "" - -#: src/Widgets/Preferences.vala:544 -msgid "Configure PDF export options." -msgstr "" - #: src/Widgets/Preferences.vala:552 msgid "Page Break between Folders" msgstr "Saut de page entre les dossiers" @@ -989,37 +460,9 @@ msgstr "Marges des côtés du PDF (inches)" msgid "Top & Bottom margins in PDF in inches" msgstr "Marges du haut et du bas du PDF (inches)" -#: src/Widgets/Preferences.vala:641 -msgid "PDF CSS" -msgstr "" - -#: src/Widgets/Preferences.vala:642 -msgid "Choose CSS Style for PDF Export." -msgstr "" - -#: src/Widgets/Preferences.vala:650 -msgid "ePub & HTML CSS" -msgstr "" - -#: src/Widgets/Preferences.vala:651 -msgid "Choose CSS Style to use for ePub and HTML Export." -msgstr "" - -#: src/Widgets/Preferences.vala:657 -msgid "Add Export Style" -msgstr "Ajouter un Style d'exportation" - -#: src/Widgets/Preferences.vala:680 -msgid "Editor" -msgstr "" - -#: src/Widgets/Preferences.vala:684 -msgid "Editor Settings" -msgstr "" - -#: src/Widgets/Preferences.vala:685 -msgid "Modify the ThiefMD environment." -msgstr "" +#: src/Widgets/Preferences.vala:657 +msgid "Add Export Style" +msgstr "Ajouter un Style d'exportation" #: src/Widgets/Preferences.vala:693 msgid "Enable spellcheck" @@ -1055,22 +498,6 @@ msgstr "(Dés)activer les statistiques d'écriture" msgid "Show writing statistics" msgstr "Afficher les statistiques d'écriture" -#: src/Widgets/Preferences.vala:765 -msgid "Disable application tips" -msgstr "" - -#: src/Widgets/Preferences.vala:766 -msgid "Start with new empty sheet on launch" -msgstr "" - -#: src/Widgets/Preferences.vala:779 -msgid "ThiefMD Settings" -msgstr "" - -#: src/Widgets/Preferences.vala:780 -msgid "Modify the ThiefMD appearance." -msgstr "" - #: src/Widgets/Preferences.vala:790 msgid "Toggle interface theming" msgstr "(Dés)activer le thème de l'interface" @@ -1105,18 +532,10 @@ msgstr "Basculer l'ordre de la bibliothèque" msgid "Keep library order" msgstr "Conserver l'ordre de la bibliothèque" -#: src/Widgets/Preferences.vala:858 -msgid "Toggle experimental features" -msgstr "" - -#: src/Widgets/Preferences.vala:860 -msgid "Enable experimental features" -msgstr "" - #: src/Widgets/PublisherPreviewWindow.vala:67 #: src/Widgets/PublisherPreviewWindow.vala:209 -#: src/Widgets/QuickPreferences.vala:104 src/Widgets/QuickPreferences.vala:188 -#: src/Widgets/QuickPreferences.vala:267 +#: src/Widgets/QuickPreferences.vala:109 src/Widgets/QuickPreferences.vala:204 +#: src/Widgets/QuickPreferences.vala:293 msgid "Publishing Preview" msgstr "Aperçu de la publication" @@ -1142,14 +561,11 @@ msgid "words" msgstr "mots" #: src/Widgets/ProjectStatistics.vala:126 -#, c-format -msgid "" -"<b>Reading Time:</b>\n" +msgid "<b>Reading Time:</b>\n" "%d %s\n" "%d %s\n" "%d %s" -msgstr "" -"<b>Temps de lecture:</b>\n" +msgstr "<b>Temps de lecture:</b>\n" "%d %s\n" "%d %s\n" "%d %s" @@ -1190,6 +606,7 @@ msgstr "Vérifier l'orthographe" msgid "Toggle Spellcheck" msgstr "(Dés)activer la vérification orthographique" +#. Not sure this should be translated since it is a tool/feature, not a sentence. If it is to be translated we should decide the expresion we should use in French. Write Good means 'Bien Écrire" which will be obvious to any user but sounds quite lame in French ;) #: src/Widgets/QuickPreferences.vala:61 #, fuzzy msgid "Write Good" @@ -1199,75 +616,41 @@ msgstr "Write Good" msgid "Toggle Write Good" msgstr "(Dés)activer Write Good" -#: src/Widgets/QuickPreferences.vala:71 -msgid "Check Grammar" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:74 -msgid "Toggle Grammar Checking" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:87 -msgid "Grammar check is not available for your language" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:181 -#: src/Widgets/QuickPreferences.vala:260 +#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:197 +#: src/Widgets/QuickPreferences.vala:281 msgid "Launch Preview" msgstr "Démarrer l'aperçu" -#: src/Widgets/QuickPreferences.vala:106 src/Widgets/QuickPreferences.vala:190 -#: src/Widgets/QuickPreferences.vala:269 -msgid "Open Export Window" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:113 src/Widgets/QuickPreferences.vala:197 -#: src/Widgets/QuickPreferences.vala:276 -msgid "Search Library" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:115 src/Widgets/QuickPreferences.vala:199 -#: src/Widgets/QuickPreferences.vala:278 -msgid "Open Search Window" -msgstr "" - -#: src/Widgets/QuickPreferences.vala:121 src/Widgets/QuickPreferences.vala:205 -#: src/Widgets/QuickPreferences.vala:284 +#: src/Widgets/QuickPreferences.vala:135 src/Widgets/QuickPreferences.vala:226 +#: src/Widgets/QuickPreferences.vala:315 msgid "Preferences" msgstr "Préférences" -#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:207 -#: src/Widgets/QuickPreferences.vala:286 +#: src/Widgets/QuickPreferences.vala:137 src/Widgets/QuickPreferences.vala:228 +#: src/Widgets/QuickPreferences.vala:317 msgid "Edit Preferences" msgstr "Modifier les préférences" -#: src/Widgets/ThemeSelector.vala:55 -msgid "Spacing" -msgstr "" +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Widgets/ThemeSelector.vala:50 +msgid "Font" +msgstr "Police" #: src/Widgets/ThemeSelector.vala:142 msgid "Font Selector" msgstr "Sélecteur de police" -#: src/Widgets/ThemeSelector.vala:326 -msgid "Download" -msgstr "" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "more themes" -msgstr "" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "Stored in" -msgstr "" +#: src/Widgets/ThemeSelector.vala:320 +msgid "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" +"<small>Stored in <a href='file://" +msgstr "Téléchargez <a href='https://themes.thiefmd.com/themes/'>plus de thèmes</a>.\n" +"<small>Enregistrés dans <a href='file://" #: src/Widgets/SearchBar.vala:110 -#, c-format msgid "(%d occurences)" msgstr "(%d occurences)" #: src/Widgets/StatisticsBar.vala:100 -#, c-format msgid "%d %s %d %s and %d %s reading time." msgstr "%d %s %d %s et %d %s temps de lecture." @@ -1292,7 +675,6 @@ msgid "seconds" msgstr "secondes" #: src/Widgets/StatisticsBar.vala:106 -#, c-format msgid "%s : %d words." msgstr "%s : %d mots." @@ -1300,9 +682,9 @@ msgstr "%s : %d mots." msgid "Library Search" msgstr "Chercher dans la Bibliothèque" -#: src/Widgets/SearchWindow.vala:421 -msgid "Search" -msgstr "" +#: src/Widgets/SearchWindow.vala:422 +msgid " Search" +msgstr " Chercher" #: src/Widgets/SearchWindow.vala:445 msgid "Monitor for Library changes" @@ -1316,16 +698,611 @@ msgstr "<b>Dérobe le contenu du fichier...</b>" msgid "Heading" msgstr "Titre" -#~ msgid "Print to File" -#~ msgstr "Imprimer dans un fichier" +#. Font settings +#. Arbitrary strings +#: src/Constants/AppSettings.vala:104 +msgid "# Click on a sheet to get started\n" +"\n" +"First time here? Drag a folder into the library, or click on the Folder icon to select a folder to add.\n" +"\n" +"## Thief Tip:\n" +"\n" +"%s" +msgstr "# Cliquez sur une Feuille pour commencer\n" +"\n" +"Première fois ici ? Glissez un dossier sur la bibliothèque, ou cliquez sur l'icône de dossier pour sélectionner un dossier à ajouter.\n" +"\n" +"## Astuce Thief:\n" +"\n" +"%s" + +#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); +#: src/ThiefApp.vala:182 +msgid "Library" +msgstr "Bibliothèque" + +#: src/Widgets/Preferences.vala:680 +msgid "Editor" +msgstr "" + +#: src/Widgets/SearchWindow.vala:421 +msgid "Search" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:111 src/Widgets/QuickPreferences.vala:206 +#: src/Widgets/QuickPreferences.vala:295 +msgid "Open Export Window" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:218 +#: src/Widgets/QuickPreferences.vala:307 +msgid "Search Library" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:125 src/Widgets/QuickPreferences.vala:220 +#: src/Widgets/QuickPreferences.vala:309 +msgid "Open Search Window" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:55 +msgid "Spacing" +msgstr "" + +#: src/Widgets/Preferences.vala:858 +msgid "Toggle experimental features" +msgstr "" + +#: src/Widgets/Preferences.vala:860 +msgid "Enable experimental features" +msgstr "" + +#: src/Controllers/Dialogs.vala:161 +msgid "Supported files" +msgstr "" + +#: src/Controllers/Dialogs.vala:170 +msgid "%s files" +msgstr "" + +#: src/Widgets/Library.vala:574 +msgid "Open in File Manager" +msgstr "" + +#: src/Widgets/NewSheet.vala:41 +msgid "Import" +msgstr "" + +#: src/Widgets/Preferences.vala:125 +msgid " WordPress" +msgstr "" + +#: src/Constants/ThiefProperties.vala:25 +msgid "The Markdown editor worth stealing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:87 +msgid "Contributors who help make ThiefMD awesome" +msgstr "" + +#: src/Constants/ThiefProperties.vala:89 +msgid "French Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:90 +msgid "Slovak Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:91 +msgid "Swedish Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Original Code" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:95 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 +msgid "Copyright" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "GNU General Public License v3.0" +msgstr "" + +#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +msgid "SIL OPEN FONT LICENSE Version 1.1" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Preview CSS" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Mash up of Splendor and Modest" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:109 +msgid "The MIT License (MIT)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:102 +msgid "Markdown Parsing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:102 +msgid "BSD-style License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:103 +msgid "Syntax Highlighting" +msgstr "" + +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:107 +msgid "BSD-3-Clause License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Math Rendering" +msgstr "" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Khan Academy and other contributors." +msgstr "" + +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +msgid "MIT License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:105 +msgid "XML Parsing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "Pandoc Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "John MacFarlane and others" +msgstr "" -#~ msgid "" -#~ "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" -#~ "<small>Stored in <a href='file://" -#~ msgstr "" -#~ "Téléchargez <a href='https://themes.thiefmd.com/themes/'>plus de thèmes</" -#~ "a>.\n" -#~ "<small>Enregistrés dans <a href='file://" +#: src/Constants/ThiefProperties.vala:106 +msgid "GNU General Public License v2.0" +msgstr "" + +#: src/Constants/ThiefProperties.vala:109 +msgid "libwritegood-vala based on" +msgstr "" + +#: src/Constants/ThiefProperties.vala:109 +msgid "write-good: Naive linter for English prose" +msgstr "" + +#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME +#: src/Constants/ThiefProperties.vala:113 +msgid "A3 (11.7 x 16.5 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:114 +msgid "A4 (8 x 11 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:115 +msgid "A5 (5.8 x 8.3 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:116 +msgid "B5 (6.93 x 9.84 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:117 +msgid "Executive (7 x 10 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:118 +msgid "Legal (8.5 x 14 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:119 +msgid "Letter (8.5 x 11 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:122 +msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." +msgstr "" + +#: src/Constants/ThiefProperties.vala:123 +msgid "No built in dark mode? Dark themes are available at https://themes.thiefmd.com. Add more in the Preferences (`Ctrl+,`)." +msgstr "" + +#: src/Constants/ThiefProperties.vala:124 +msgid "Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and click Export." +msgstr "" + +#: src/Constants/ThiefProperties.vala:125 +msgid "Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." +msgstr "" + +#: src/Constants/ThiefProperties.vala:126 +msgid "Ready to publish your great work? Right-click on the folder and choose \"Export Preview\"" +msgstr "" + +#: src/Constants/ThiefProperties.vala:127 +msgid "Want to block out distractions? Full-screen is just an `F11` away." +msgstr "" + +#: src/Constants/ThiefProperties.vala:128 +msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." +msgstr "" + +#: src/Constants/ThiefProperties.vala:129 +msgid "Working with a lot of links? Turn on Experimental Mode to make your markdown more readable `Ctrl+Shift+M`." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:127 +msgid "New WriteFreely Connection" +msgstr "" + +#: src/Connections/GhostConnection.vala:106 +msgid "New ghost Connection" +msgstr "" + +#: src/Connections/WordpressConnection.vala:109 +msgid "New Wordpress Connection" +msgstr "" + +#. website = ThiefProperties.URL; +#: src/Widgets/About.vala:94 +msgid "Feedback" +msgstr "" + +#. license_type = ThiefProperties.LICENSE_TYPE; +#: src/Widgets/About.vala:99 +msgid "This program comes with absolutely no warranty." +msgstr "" + +#: src/Widgets/About.vala:100 +msgid "See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, version 3 or later</a> for details." +msgstr "" + +#: src/Widgets/Preferences.vala:279 +msgid "Connections" +msgstr "" + +#: src/Widgets/Preferences.vala:340 +msgid "Remove " +msgstr "" + +#: src/Widgets/Preferences.vala:373 +msgid "Display" +msgstr "" + +#: src/Widgets/Preferences.vala:377 +msgid "Display Options" +msgstr "" + +#: src/Widgets/Preferences.vala:378 +msgid "Make ThiefMD feel like home." +msgstr "" + +#: src/Widgets/Preferences.vala:487 +msgid "Compiling Options" +msgstr "" + +#: src/Widgets/Preferences.vala:488 +msgid "Adjust how Markdown files are compiled together." +msgstr "" + +#: src/Widgets/Preferences.vala:543 +msgid "Page Setup" +msgstr "" + +#: src/Widgets/Preferences.vala:544 +msgid "Configure PDF export options." +msgstr "" + +#: src/Widgets/Preferences.vala:641 +msgid "PDF CSS" +msgstr "" + +#: src/Widgets/Preferences.vala:642 +msgid "Choose CSS Style for PDF Export." +msgstr "" + +#: src/Widgets/Preferences.vala:650 +msgid "ePub & HTML CSS" +msgstr "" + +#: src/Widgets/Preferences.vala:651 +msgid "Choose CSS Style to use for ePub and HTML Export." +msgstr "" + +#: src/Widgets/Preferences.vala:684 +msgid "Editor Settings" +msgstr "" + +#: src/Widgets/Preferences.vala:685 +msgid "Modify the ThiefMD environment." +msgstr "" + +#: src/Widgets/Preferences.vala:779 +msgid "ThiefMD Settings" +msgstr "" + +#: src/Widgets/Preferences.vala:780 +msgid "Modify the ThiefMD appearance." +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Download" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "more themes" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Stored in" +msgstr "" + +#: src/ThiefApp.vala:315 +msgid "Fountain" +msgstr "" + +#: src/Constants/ThiefProperties.vala:101 +msgid "Fountain Preview and Export" +msgstr "" + +#: src/Exporters/ExportFountain.vala:57 +msgid "Fountain files" +msgstr "" + +#: src/Exporters/ExportFountain.vala:63 +msgid "Export Fountain" +msgstr "" + +#: src/Widgets/HeaderBar.vala:107 +msgid "Show Notes" +msgstr "" + +#: src/Widgets/Sheet.vala:289 +msgid "Copy File Path" +msgstr "" + +#: src/Widgets/Editor.vala:1394 +msgid "Insert Citation" +msgstr "" + +#: src/Widgets/Library.vala:639 +msgid "Set Project Icon" +msgstr "" + +#: src/Widgets/Library.vala:645 +msgid "Folder" +msgstr "" + +#: src/Widgets/Library.vala:648 +msgid "Reader" +msgstr "" + +#: src/Widgets/Library.vala:651 +msgid "Love" +msgstr "" + +#: src/Widgets/Library.vala:654 +msgid "Game" +msgstr "" + +#: src/Widgets/Library.vala:657 +msgid "Art" +msgstr "" + +#: src/Widgets/Library.vala:660 +msgid "Nature" +msgstr "" + +#: src/Widgets/Library.vala:663 +msgid "Food" +msgstr "" + +#: src/Widgets/Library.vala:666 +msgid "Help" +msgstr "" + +#: src/Widgets/Library.vala:669 +msgid "Cool" +msgstr "" + +#: src/Widgets/Library.vala:672 +msgid "Angel" +msgstr "" + +#: src/Widgets/Library.vala:675 +msgid "Monkey" +msgstr "" + +#: src/Widgets/Library.vala:678 +msgid "WordPress" +msgstr "" + +#: src/Widgets/Library.vala:681 +msgid "Ghost" +msgstr "" + +#: src/Widgets/Library.vala:684 +msgid "Write Freely" +msgstr "" + +#: src/Widgets/Library.vala:687 +msgid "Trash" +msgstr "" + +#: src/Widgets/Preferences.vala:431 +msgid "Number of Lines to Preview in Sheets View" +msgstr "" + +#: src/Widgets/Preferences.vala:765 +msgid "Disable application tips" +msgstr "" + +#: src/Widgets/Preferences.vala:766 +msgid "Start with new empty sheet on launch" +msgstr "" + +#: src/Enrichments/Fountain.vala:32 +msgid "Characters" +msgstr "" + +#: src/Enrichments/Markdown.vala:30 +msgid "Citations" +msgstr "" + +#: src/Constants/ThiefProperties.vala:95 +msgid "Stolen Victory Font" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "Grammar Check" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "the AbiSource Community" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "GNU Lesser General Public License v2.1" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:71 +msgid "Check Grammar" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:74 +msgid "Toggle Grammar Checking" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:87 +msgid "Grammar check is not available for your language" +msgstr "" + +#: src/Constants/ThiefProperties.vala:88 +msgid "Czech Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "PDF Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "Simon Sapin and contributors" +msgstr "" + +#: src/Controllers/FileManager.vala:39 +msgid "Stealing file contents..." +msgstr "" + +#: src/Controllers/FileManager.vala:40 +msgid "This isn't plagiarism, it's a remix!" +msgstr "" + +#: src/Controllers/FileManager.vala:41 +msgid "NYT Best Seller, here we come!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:233 +msgid "Taking your words, and letting them go... to the internet!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:234 +msgid "Mhm... I see and I ship." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:235 +msgid "Is this a selfie, and you're happy to see me?" +msgstr "" + +#: src/Connections/GhostConnection.vala:192 +msgid "Your words are like Casper... Friendly!" +msgstr "" + +#: src/Connections/GhostConnection.vala:193 +msgid "I see your words, and I'm taking them to the internet!" +msgstr "" + +#: src/Connections/GhostConnection.vala:194 +msgid "Booooooooooo! (That's Ghost speak for Great Work!)" +msgstr "" + +#: src/Connections/WordpressConnection.vala:192 +msgid "Taking it to the internet!" +msgstr "" + +#: src/Connections/WordpressConnection.vala:193 +msgid "Don't forget to share on reddit." +msgstr "" + +#: src/Connections/WordpressConnection.vala:194 +msgid "Pressing words together..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:149 +msgid "Simply Shakespearean." +msgstr "" + +#: src/Exporters/ExportPdf.vala:150 +msgid "Hmm... that's interesting..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:151 +msgid "Your writing is insightful." +msgstr "" + +#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 +#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 +#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 +msgid "Connection Error" +msgstr "" + +#: src/Widgets/Preferences.vala:159 +msgid " Medium" +msgstr "" + +#: src/Widgets/Preferences.vala:193 +msgid " Forem" +msgstr "" + +#: src/Widgets/Preferences.vala:227 +msgid " Hashnode" +msgstr "" + +#: src/Constants/ThiefProperties.vala:92 +msgid "German Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:93 +msgid "Finnish Translation Contributors" +msgstr "" + +#: src/Connections/WordpressConnection.vala:89 +msgid "Application Password" +msgstr "" -#~ msgid " Search" -#~ msgstr " Chercher" diff --git a/po/pl.po b/po/pl.po new file mode 100644 index 00000000..158c93d5 --- /dev/null +++ b/po/pl.po @@ -0,0 +1,1307 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: POEditor.com\n" +"Project-Id-Version: ThiefMD\n" +"Language: pl\n" + +#: src/ThiefApp.vala:309 +msgid "HTML" +msgstr "HTML" + +#: src/ThiefApp.vala:310 +msgid "PDF" +msgstr "PDF" + +#: src/ThiefApp.vala:311 +msgid "MHTML" +msgstr "MHTML" + +#: src/ThiefApp.vala:312 +msgid "Markdown" +msgstr "Markdown" + +#: src/ThiefApp.vala:313 +msgid "LaTeX" +msgstr "LaTeX" + +#: src/ThiefApp.vala:314 +msgid "DocX" +msgstr "DocX" + +#. Supported import file extensions +#: src/Controllers/FileManager.vala:43 +msgid "Importing File" +msgstr "Importowanie pliku" + +#: src/Controllers/Dialogs.vala:26 src/Controllers/Dialogs.vala:59 +msgid "_Save" +msgstr "Zapisz" + +#: src/Controllers/Dialogs.vala:27 src/Controllers/Dialogs.vala:55 +#: src/Connections/WriteFreelyConnection.vala:132 +#: src/Connections/GhostConnection.vala:111 +#: src/Connections/WordpressConnection.vala:114 +msgid "_Cancel" +msgstr "Anuluj" + +#: src/Controllers/Dialogs.vala:57 +msgid "_Open" +msgstr "Otwórz" + +#: src/Controllers/Dialogs.vala:61 +msgid "_Add to Library" +msgstr "Dodaj do biblioteki" + +#: src/Controllers/Dialogs.vala:70 src/Exporters/ExportPdf.vala:88 +msgid "PDF file" +msgstr "Plik PDF" + +#: src/Controllers/Dialogs.vala:76 src/Exporters/ExportEpub.vala:55 +msgid "ePUB file" +msgstr "Plik ePUB" + +#: src/Controllers/Dialogs.vala:82 src/Exporters/ExportDocx.vala:55 +msgid "docx file" +msgstr "Plik DocX" + +#: src/Controllers/Dialogs.vala:88 src/Controllers/Dialogs.vala:153 +#: src/Exporters/ExportMarkdown.vala:55 +msgid "Markdown files" +msgstr "Pliki Markdown" + +#: src/Controllers/Dialogs.vala:95 src/Exporters/ExportHtml.vala:56 +msgid "HTML files" +msgstr "Pliki HTML" + +#: src/Controllers/Dialogs.vala:102 src/Exporters/ExportMhtml.vala:56 +msgid "MHTML files" +msgstr "Pliki MHTML" + +#: src/Controllers/Dialogs.vala:109 src/Exporters/ExportLatex.vala:55 +msgid "LaTeX file" +msgstr "Plik LaTeX" + +#: src/Controllers/Dialogs.vala:177 +msgid "All files" +msgstr "Wszystkie pliki" + +#: src/Controllers/Dialogs.vala:186 +msgid "Add to Library" +msgstr "Dodaj do biblioteki" + +#: src/Controllers/Dialogs.vala:196 +msgid "Open file" +msgstr "Otwórz plik" + +#: src/Controllers/Dialogs.vala:208 +msgid "Save file" +msgstr "Zapisz plik" + +#: src/Controllers/Dialogs.vala:222 +msgid "There are unsaved changes to the file. Do you want to save?" +msgstr "Masz niezapisane zmiany w pliku. Czy chcesz zapisać?" + +#: src/Controllers/Dialogs.vala:223 +msgid "If you don't save, changes will be lost forever." +msgstr "Jeżeli plik nie zostanie zapisany, zmiany zostaną bezpowrotnie utracone." + +#: src/Controllers/Dialogs.vala:228 +msgid "Close without saving" +msgstr "Zamknij bez zapisywania" + +#: src/Controllers/SheetManager.vala:156 src/Widgets/StatisticsBar.vala:93 +msgid "No file opened" +msgstr "Nie otworzono pliku" + +#: src/Connections/WriteFreelyConnection.vala:103 +#: src/Connections/WordpressConnection.vala:85 +msgid "Username" +msgstr "Nazwa osoby używającej" + +#: src/Connections/WriteFreelyConnection.vala:107 +#: src/Connections/GhostConnection.vala:86 +msgid "Password" +msgstr "Hasło" + +#: src/Connections/WriteFreelyConnection.vala:112 +#: src/Connections/GhostConnection.vala:91 +#: src/Connections/WordpressConnection.vala:94 +msgid "Endpoint" +msgstr "Endpoint" + +#: src/Connections/WriteFreelyConnection.vala:130 +#: src/Connections/GhostConnection.vala:109 +#: src/Connections/WordpressConnection.vala:112 +msgid "_Add Account" +msgstr "Dodaj konto" + +#: src/Connections/WriteFreelyConnection.vala:318 +#: src/Connections/GhostConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 +msgid " Published" +msgstr "Opublikowano" + +#: src/Connections/WriteFreelyConnection.vala:318 +#: src/Connections/GhostConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 +msgid "Post Published" +msgstr "Wpis opublikowany" + +#: src/Connections/GhostConnection.vala:82 +msgid "E-mail" +msgstr "E-mail" + +#: src/Connections/WriteFreelyConnection.vala:238 +#: src/Connections/GhostConnection.vala:197 +#: src/Connections/WordpressConnection.vala:217 +msgid "Uploading images" +msgstr "Wgrywanie obrazków" + +#: src/Exporters/ExportDocx.vala:60 +msgid "Export DocX" +msgstr "Eksport DocX" + +#: src/Exporters/ExportEpub.vala:60 +msgid "Export ePUB" +msgstr "Eksport ePUB" + +#: src/Exporters/ExportHtml.vala:62 +msgid "Export HTML" +msgstr "Eksport HTML" + +#: src/Exporters/ExportLatex.vala:60 +msgid "Export LaTeX" +msgstr "Eksport LaTeX" + +#: src/Exporters/ExportMarkdown.vala:61 +msgid "Export Markdown" +msgstr "Eksport Markdown" + +#: src/Exporters/ExportMhtml.vala:62 +msgid "Export MHTML" +msgstr "Eksport MHTML" + +#: src/Exporters/ExportPdf.vala:93 +msgid "Export PDF" +msgstr "Eksport PDF" + +#: src/Exporters/ExportPdf.vala:153 src/Exporters/ExportPdf.vala:183 +msgid "Working PDF Magic" +msgstr "Wyczarowuję PDF" + +#: src/Exporters/ExportPdf.vala:184 +msgid "Making sure your hard work looks purrfect..." +msgstr "Upewniam się, że twoja ciężka praca wygląda purrfekcyjnie..." + +#: src/Exporters/ExportPdf.vala:107 +msgid "Print to File" +msgstr "Wydrukuj do pliku" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:146 +#: src/Widgets/QuickPreferences.vala:237 src/Widgets/QuickPreferences.vala:326 +msgid "About ThiefMD" +msgstr "O ThiefMD" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:144 +#: src/Widgets/QuickPreferences.vala:235 src/Widgets/QuickPreferences.vala:324 +msgid "About" +msgstr "O programie" + +#: src/Widgets/About.vala:45 +msgid "Credits" +msgstr "Zasługi" + +#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 +#: src/Widgets/PublisherPreviewWindow.vala:295 +#: src/Widgets/ProjectStatistics.vala:71 +msgid "Close" +msgstr "Zamknij" + +#: src/Widgets/Sheets.vala:179 +msgid "New Sheet" +msgstr "Nowa kartka" + +#: src/Widgets/HeaderBar.vala:78 +msgid "Change View" +msgstr "Zmień widok" + +#: src/ThiefApp.vala:186 +msgid "Add Folder to Library" +msgstr "Dodaj katalog do biblioteki" + +#: src/Widgets/HeaderBar.vala:92 +msgid "Settings" +msgstr "Preferencje" + +#: src/Widgets/Sheet.vala:215 +msgid "Sort by" +msgstr "Sortuj według" + +#: src/Widgets/Sheet.vala:218 +msgid "Sort by Filename Ascending" +msgstr "Sortuj według nazwy pliku rosnąco" + +#: src/Widgets/Sheet.vala:224 +msgid "Sort by Filename Descending" +msgstr "Sortuj według nazwy pliku malejąco" + +#: src/Widgets/Sheet.vala:231 +msgid "Sort by Title Ascending" +msgstr "Sortuj według tytułu rosnąco" + +#: src/Widgets/Sheet.vala:237 +msgid "Sort by Title Descending" +msgstr "Sortuj według tytułu malejąco" + +#: src/Widgets/Sheet.vala:244 +msgid "Sort by Date Ascending" +msgstr "Sortuj według daty rosnąco" + +#: src/Widgets/Sheet.vala:250 +msgid "Sort by Date Descending" +msgstr "Sortuj według daty malejąco" + +#: src/Widgets/Sheet.vala:273 src/Widgets/QuickPreferences.vala:95 +#: src/Widgets/QuickPreferences.vala:195 src/Widgets/QuickPreferences.vala:279 +msgid "Preview" +msgstr "Podgląd" + +#: src/Widgets/Sheet.vala:281 src/Widgets/Preferences.vala:482 +#: src/Widgets/PublisherPreviewWindow.vala:155 +#: src/Widgets/ProjectStatistics.vala:64 +msgid "Export" +msgstr "Eksport" + +#. Gtk.MenuItem menu_rename = new Gtk.MenuItem.with_label (_("Rename File")); +#. menu_rename.activate.connect (() => { +#. }); +#. menu.add (menu_rename); +#: src/Widgets/Sheet.vala:305 +msgid "Danger Zone" +msgstr "Strefa zagrożenia" + +#: src/Widgets/Sheet.vala:311 +msgid "Move to Trash" +msgstr "Przenieś do kosza" + +#: src/Widgets/Editor.vala:236 +msgid "_Load from disk" +msgstr "Załaduj z dysku" + +#: src/Widgets/Editor.vala:238 +msgid "_Keep what's in editor" +msgstr "Zachowaj wersję z edytora" + +#: src/Widgets/Editor.vala:1278 +msgid "Insert Datetime" +msgstr "Wstaw datę i czas" + +#: src/Widgets/Editor.vala:1296 +msgid "Insert YAML Frontmatter" +msgstr "Wstaw frontmatter YAML" + +#: src/Widgets/Library.vala:539 +msgid "Export Preview" +msgstr "Podgląd eksportu" + +#: src/Widgets/Library.vala:549 +msgid "Writing Statistics" +msgstr "Statystyki pisania" + +#: src/Widgets/Library.vala:562 +msgid "Search " +msgstr "Przeszukaj␣" + +#: src/Widgets/Library.vala:586 +msgid "Create Sub-Folder" +msgstr "Utwórz podkatalog" + +#: src/Widgets/Library.vala:603 +msgid "Hide from Library" +msgstr "Ukryj z bilioteki" + +#: src/Widgets/Library.vala:627 +msgid "Show Hidden Items" +msgstr "Pokaż ukryte elementy" + +#: src/Widgets/Library.vala:697 +msgid "Remove from Library" +msgstr "Usuń z biblioteki" + +#: src/Widgets/Library.vala:934 +msgid "Copy" +msgstr "Skopiuj" + +#: src/Widgets/Library.vala:936 +msgid "Move" +msgstr "Przenieś" + +#: src/Widgets/NewFolder.vala:31 +msgid "Folder name" +msgstr "Nazwa katalogu" + +#: src/Widgets/NewFolder.vala:34 +msgid "mkdir" +msgstr "Utwórz" + +#: src/Widgets/NewSheet.vala:37 +msgid "Sheet name" +msgstr "Nazwa kartki" + +#: src/Widgets/NewSheet.vala:40 +msgid "Create" +msgstr "Utwórz" + +#: src/Widgets/Preferences.vala:50 +msgid "Current Connections" +msgstr "Obecne połączenia" + +#: src/Widgets/Preferences.vala:51 +msgid "Click on a connection to remove." +msgstr "Kliknij połączenie, by je usunąć." + +#: src/Widgets/Preferences.vala:54 +msgid "Add Connection" +msgstr "Dodaj połączenie" + +#: src/Widgets/Preferences.vala:55 +msgid "Choose your blogging software." +msgstr "Wybierz swoją platformę blogową." + +#: src/Widgets/Preferences.vala:57 +msgid " WriteFreely" +msgstr " WriteFreely" + +#: src/Widgets/Preferences.vala:91 +msgid " ghost" +msgstr " ghost" + +#: src/Widgets/Preferences.vala:343 +msgid "_Remove" +msgstr "Usuń" + +#: src/Widgets/Preferences.vala:345 +msgid "_Keep" +msgstr "Zachowaj" + +#: src/Widgets/Preferences.vala:384 +msgid "Focus" +msgstr "Skupienie na" + +#: src/Widgets/Library.vala:642 src/Widgets/Preferences.vala:389 +msgid "None" +msgstr "Niczym" + +#: src/Widgets/Preferences.vala:390 +msgid "Paragraph" +msgstr "Paragrafie" + +#: src/Widgets/Preferences.vala:391 +msgid "Sentence" +msgstr "Zdaniu" + +#: src/Widgets/Preferences.vala:392 +msgid "Word" +msgstr "Słowu" + +#: src/Widgets/Preferences.vala:440 +msgid "Add New Theme" +msgstr "Dodaj nowy motyw" + +#: src/Widgets/Preferences.vala:496 +msgid "First Markdown File includes Author Metadata" +msgstr "Pierwszy plik Markdown zawiera metadane autora" + +#: src/Widgets/Preferences.vala:498 +msgid "First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Author metadata</a>" +msgstr "Pierwszy plik Markdown zawiera <a href='https://pandoc.org/MANUAL.html#epub-metadata'>metadane autora</a>" + +#: src/Widgets/Preferences.vala:514 +msgid "Resolve full paths to resources" +msgstr "Rozwiń pełne ścieżki do zasobów" + +#: src/Widgets/Preferences.vala:516 +msgid "Resolve full paths to resources on export" +msgstr "Rozwiń pełne ścieżki do zasobów przy eksporcie" + +#: src/Widgets/Preferences.vala:531 +msgid "Include YAML title as Heading" +msgstr "Dołącz tytuł YAML jako nagłówek" + +#: src/Widgets/Preferences.vala:533 +msgid "Include YAML title as H1 Heading" +msgstr "Dołącz tytuł YAML jako nagłówek H1" + +#: src/Widgets/Preferences.vala:552 +msgid "Page Break between Folders" +msgstr "Podział strony pomiędzy katalogami" + +#: src/Widgets/Preferences.vala:554 +msgid "Insert a Page Break after each folder" +msgstr "Wstaw podział strony po każdym katalogu" + +#: src/Widgets/Preferences.vala:569 +msgid "Page Break between Sheets" +msgstr "Podział strony pomiędzy kartkami" + +#: src/Widgets/Preferences.vala:571 +msgid "Insert a Page Break after each sheet" +msgstr "Wstaw podział strony po każdej kartce" + +#: src/Widgets/Preferences.vala:611 +msgid "Side margins in PDF in inches" +msgstr "Marginesy boczne w pliku PDF w calach" + +#: src/Widgets/Preferences.vala:631 +msgid "Top & Bottom margins in PDF in inches" +msgstr "Marginesy górny i dolny w pliku PDF w calach" + +#: src/Widgets/Preferences.vala:657 +msgid "Add Export Style" +msgstr "Dodaj styl eksportu" + +#: src/Widgets/Preferences.vala:693 +msgid "Enable spellcheck" +msgstr "Włącz sprawdzanie pisowni" + +#: src/Widgets/Preferences.vala:695 +msgid "Check document spelling" +msgstr "Sprawdź pisownię w dokumencie" + +#: src/Widgets/Preferences.vala:709 +msgid "Enable Write-Good" +msgstr "Włącz Write-Good" + +#: src/Widgets/Preferences.vala:713 +msgid "Enable Write-Good: recommendations for sentence structure" +msgstr "Włącz Write-Good: rekomendacje dla struktury zdania" + +#: src/Widgets/Preferences.vala:728 +msgid "Toggle typewriter scrolling" +msgstr "Przełącz przewijanie jak w maszynie do pisania" + +#: src/Widgets/Preferences.vala:729 +msgid "Enable typewriter focus mode" +msgstr "Włącz tryb przewijania jak w maszynie do pisania" + +#: src/Widgets/Preferences.vala:749 +msgid "Toggle writing statistics" +msgstr "Przełącz statystyki pisania" + +#: src/Widgets/Preferences.vala:750 +msgid "Show writing statistics" +msgstr "Pokaż statystyki pisania" + +#: src/Widgets/Preferences.vala:790 +msgid "Toggle interface theming" +msgstr "Przełącz zmianę wyglądu interfejsu" + +#: src/Widgets/Preferences.vala:791 +msgid "Apply theme to interface" +msgstr "Zastosuj motyw do interfejsu" + +#: src/Widgets/Preferences.vala:810 +msgid "Toggle auto-hide headerbar" +msgstr "Przełącz ukrywanie paska nagłówka" + +#: src/Widgets/Preferences.vala:812 +msgid "Automatically hide headerbar" +msgstr "Automatycznie ukrywaj pasek nagłówka" + +#: src/Widgets/Preferences.vala:826 +msgid "Hide title" +msgstr "Ukryj tytuł" + +#: src/Widgets/Preferences.vala:828 +msgid "Remove ThiefMD branding" +msgstr "Usuń oznakowanie ThiefMD" + +#: src/Widgets/Preferences.vala:842 +msgid "Toggle library order" +msgstr "Przełącz kolejność biblioteki" + +#: src/Widgets/Preferences.vala:844 +msgid "Keep library order" +msgstr "Zachowuj kolejność w bibliotece" + +#: src/Widgets/PublisherPreviewWindow.vala:67 +#: src/Widgets/PublisherPreviewWindow.vala:209 +#: src/Widgets/QuickPreferences.vala:109 src/Widgets/QuickPreferences.vala:204 +#: src/Widgets/QuickPreferences.vala:293 +msgid "Publishing Preview" +msgstr "Podgląd publikacji" + +#: src/Widgets/PublisherPreviewWindow.vala:157 +msgid "Export Item" +msgstr "Wyeksportuj element" + +#: src/Widgets/PublisherPreviewWindow.vala:194 +msgid "File not Exported" +msgstr "Plik nie został wyeksportowany" + +#: src/Widgets/PublisherPreviewWindow.vala:195 +msgid "ThiefMD could not export the file, please try again." +msgstr "ThiefMD nie mógł wyeksportować pliku, proszę spróbuj ponownie." + +#: src/Widgets/ProjectStatistics.vala:83 +msgid "Refresh Statistics" +msgstr "Odśwież statystyki" + +#: src/Widgets/ProjectStatistics.vala:125 +msgid "words" +msgstr "słów" + +#. Reversed order for correct grammar. In polish there are 3 noun forms depending on a numeral. +#. +#. 1 hour = 1 godzina +#. 2-4 hours = 2-4 godziny +#. 5+ hours = 5+ godzin +#. +#. So it's better to do "Godziny: x" (Hours: x). It's not as pretty, but at least it's more correct :) +#: src/Widgets/ProjectStatistics.vala:126 +msgid "<b>Reading Time:</b>\n" +"%d %s\n" +"%d %s\n" +"%d %s" +msgstr "<b>Czas czytania:</b>\n" +"%s: %d\n" +"%s: %d\n" +"%s: %d" + +#: src/Widgets/ProjectStatistics.vala:127 +msgid "Hour" +msgstr "Godzina:" + +#: src/Widgets/ProjectStatistics.vala:127 +msgid "Hours" +msgstr "Godziny:" + +#: src/Widgets/ProjectStatistics.vala:128 +msgid "Minute" +msgstr "Minuta:" + +#: src/Widgets/ProjectStatistics.vala:128 +msgid "Minutes" +msgstr "Minuty:" + +#: src/Widgets/ProjectStatistics.vala:129 +msgid "Seconds" +msgstr "Sekundy:" + +#: src/Widgets/QuickPreferences.vala:41 +msgid "Typewriter Scrolling" +msgstr "Tryb maszyny do pisania" + +#: src/Widgets/QuickPreferences.vala:44 +msgid "Toggle Typewriter Scrolling" +msgstr "Przełącz przewijanie jak w maszynie do pisania" + +#: src/Widgets/QuickPreferences.vala:51 +msgid "Check Spelling" +msgstr "Sprawdź pisownię" + +#: src/Widgets/QuickPreferences.vala:54 +msgid "Toggle Spellcheck" +msgstr "Przełącz sprawdzanie pisowni" + +#: src/Widgets/QuickPreferences.vala:61 +msgid "Write Good" +msgstr "Write Good" + +#: src/Widgets/QuickPreferences.vala:64 +msgid "Toggle Write Good" +msgstr "Przełącz Write Good" + +#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:197 +#: src/Widgets/QuickPreferences.vala:281 +msgid "Launch Preview" +msgstr "Pokaż podgląd" + +#: src/Widgets/QuickPreferences.vala:135 src/Widgets/QuickPreferences.vala:226 +#: src/Widgets/QuickPreferences.vala:315 +msgid "Preferences" +msgstr "Preferencje" + +#: src/Widgets/QuickPreferences.vala:137 src/Widgets/QuickPreferences.vala:228 +#: src/Widgets/QuickPreferences.vala:317 +msgid "Edit Preferences" +msgstr "Edytuj preferencje" + +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Widgets/ThemeSelector.vala:50 +msgid "Font" +msgstr "Czcionka" + +#: src/Widgets/ThemeSelector.vala:142 +msgid "Font Selector" +msgstr "Wybór czcionki" + +#: src/Widgets/ThemeSelector.vala:320 +msgid "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" +"<small>Stored in <a href='file://" +msgstr "Pobierz <a href='https://themes.thiefmd.com/themes/'>więcej motywów</a>.\n" +"<small>Przechowywane w <a href='file://" + +#: src/Widgets/SearchBar.vala:110 +msgid "(%d occurences)" +msgstr "(%d wystąpień)" + +#: src/Widgets/StatisticsBar.vala:100 +msgid "%d %s %d %s and %d %s reading time." +msgstr "%d %s %d %s and %d %s czasu czytania." + +#: src/Widgets/StatisticsBar.vala:101 +msgid "hour" +msgstr "godzina" + +#: src/Widgets/StatisticsBar.vala:101 +msgid "hours" +msgstr "godziny" + +#: src/Widgets/StatisticsBar.vala:102 +msgid "minute" +msgstr "minuta" + +#: src/Widgets/StatisticsBar.vala:102 +msgid "minutes" +msgstr "minut" + +#: src/Widgets/StatisticsBar.vala:103 +msgid "seconds" +msgstr "sekund" + +#: src/Widgets/StatisticsBar.vala:106 +msgid "%s : %d words." +msgstr "%s : %d słów." + +#: src/Widgets/SearchWindow.vala:419 +msgid "Library Search" +msgstr "Wyszukiwanie w bibliotece" + +#: src/Widgets/SearchWindow.vala:422 +msgid " Search" +msgstr "Wyszukiwanie" + +#: src/Widgets/SearchWindow.vala:445 +msgid "Monitor for Library changes" +msgstr "Monitoruj zmiany w bibliotece" + +#: src/Widgets/Thinking.vala:87 +msgid "<b>Stealing file contents...</b>" +msgstr "<b>Kradnę zawartość pliku...</b>" + +#: src/Widgets/MarkdownCheatSheet.vala:52 +msgid "Heading" +msgstr "Nagłówek" + +#. Font settings +#. Arbitrary strings +#: src/Constants/AppSettings.vala:104 +msgid "# Click on a sheet to get started\n" +"\n" +"First time here? Drag a folder into the library, or click on the Folder icon to select a folder to add.\n" +"\n" +"## Thief Tip:\n" +"\n" +"%s" +msgstr "# Kliknij kartkę, by rozpocząć\n" +"\n" +"Pierwszy raz? Przeciągnij katalog do biblioteki lub kliknij ikonę katalogu, by wybrać katalog do dodania.\n" +"\n" +"## Porada Złodzieja:\n" +"\n" +"%s" + +#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); +#: src/ThiefApp.vala:182 +msgid "Library" +msgstr "Biblioteka" + +#: src/Widgets/Preferences.vala:680 +msgid "Editor" +msgstr "Edytor" + +#: src/Widgets/SearchWindow.vala:421 +msgid "Search" +msgstr "Wyszukiwanie" + +#: src/Widgets/QuickPreferences.vala:111 src/Widgets/QuickPreferences.vala:206 +#: src/Widgets/QuickPreferences.vala:295 +msgid "Open Export Window" +msgstr "Otwórz okno eksportu" + +#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:218 +#: src/Widgets/QuickPreferences.vala:307 +msgid "Search Library" +msgstr "Wyszukaj w bibliotece" + +#: src/Widgets/QuickPreferences.vala:125 src/Widgets/QuickPreferences.vala:220 +#: src/Widgets/QuickPreferences.vala:309 +msgid "Open Search Window" +msgstr "Otwórz okno wyszukiwania" + +#: src/Widgets/ThemeSelector.vala:55 +msgid "Spacing" +msgstr "Interlinia" + +#: src/Widgets/Preferences.vala:858 +msgid "Toggle experimental features" +msgstr "Przełącz funkcje eksperymentalne" + +#: src/Widgets/Preferences.vala:860 +msgid "Enable experimental features" +msgstr "Włącz funkcje eksperymentalne" + +#: src/Controllers/Dialogs.vala:161 +msgid "Supported files" +msgstr "Wspierane pliki" + +#: src/Controllers/Dialogs.vala:170 +msgid "%s files" +msgstr "%s plików" + +#: src/Widgets/Library.vala:574 +msgid "Open in File Manager" +msgstr "Otwórz w menadżerze plików" + +#: src/Widgets/NewSheet.vala:41 +msgid "Import" +msgstr "Importuj" + +#: src/Widgets/Preferences.vala:125 +msgid " WordPress" +msgstr " WordPress" + +#: src/Constants/ThiefProperties.vala:25 +msgid "The Markdown editor worth stealing" +msgstr "Edytor Markdown warty kradzieży" + +#: src/Constants/ThiefProperties.vala:87 +msgid "Contributors who help make ThiefMD awesome" +msgstr "Współtwórcy, którzy pomagają uczynić ThiefMD niesamowitym" + +#: src/Constants/ThiefProperties.vala:89 +msgid "French Translation Contributors" +msgstr "Tłumaczenie na język francuski" + +#: src/Constants/ThiefProperties.vala:90 +msgid "Slovak Translation Contributors" +msgstr "Tłumaczenie na język słowacki" + +#: src/Constants/ThiefProperties.vala:91 +msgid "Swedish Translation Contributors" +msgstr "Tłumaczenie na język szwedzki" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Original Code" +msgstr "Kod oryginalny" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" +msgstr "Oparty na <a href='https://github.com/lainsce/quilter'>Quilter</a>" + +#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:95 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 +msgid "Copyright" +msgstr "Copyright" + +#: src/Constants/ThiefProperties.vala:94 +msgid "GNU General Public License v3.0" +msgstr "GNU General Public License v3.0" + +#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +msgid "SIL OPEN FONT LICENSE Version 1.1" +msgstr "SIL OPEN FONT LICENSE wersja 1.1" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Preview CSS" +msgstr "CSS podglądu" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Mash up of Splendor and Modest" +msgstr "Połączenie Splendor i Modest" + +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:109 +msgid "The MIT License (MIT)" +msgstr "Licencja MIT" + +#: src/Constants/ThiefProperties.vala:102 +msgid "Markdown Parsing" +msgstr "Parsowanie Markdown" + +#: src/Constants/ThiefProperties.vala:102 +msgid "BSD-style License" +msgstr "Licencja typu BSD" + +#: src/Constants/ThiefProperties.vala:103 +msgid "Syntax Highlighting" +msgstr "Podświetlanie składni" + +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:107 +msgid "BSD-3-Clause License" +msgstr "Licencja BSD-3-Clause" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Math Rendering" +msgstr "Renderowanie wyrażeń matematycznych" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Khan Academy and other contributors." +msgstr "Khan Academy i inni współtwórcy." + +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +msgid "MIT License" +msgstr "Licencja MIT" + +#: src/Constants/ThiefProperties.vala:105 +msgid "XML Parsing" +msgstr "Parsowanie XML" + +#: src/Constants/ThiefProperties.vala:106 +msgid "Pandoc Export" +msgstr "Eksport Pandoc" + +#: src/Constants/ThiefProperties.vala:106 +msgid "John MacFarlane and others" +msgstr "John MacFarlane i inni" + +#: src/Constants/ThiefProperties.vala:106 +msgid "GNU General Public License v2.0" +msgstr "GNU General Public License v2.0" + +#: src/Constants/ThiefProperties.vala:109 +msgid "libwritegood-vala based on" +msgstr "libwritegood-vala oparta na" + +#: src/Constants/ThiefProperties.vala:109 +msgid "write-good: Naive linter for English prose" +msgstr "write-good: Prosty linter dla prozy angielskojęzycznej" + +#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME +#: src/Constants/ThiefProperties.vala:113 +msgid "A3 (11.7 x 16.5 inches)" +msgstr "A3 (11,7 x 16,5 cali)" + +#: src/Constants/ThiefProperties.vala:114 +msgid "A4 (8 x 11 inches)" +msgstr "A4 (8 x 11 cali)" + +#: src/Constants/ThiefProperties.vala:115 +msgid "A5 (5.8 x 8.3 inches)" +msgstr "A5 (5,8 x 8,3 cali)" + +#: src/Constants/ThiefProperties.vala:116 +msgid "B5 (6.93 x 9.84 inches)" +msgstr "B5 (6,93 x 9,84 cali)" + +#: src/Constants/ThiefProperties.vala:117 +msgid "Executive (7 x 10 inches)" +msgstr "Executive (7 x 10 cali)" + +#: src/Constants/ThiefProperties.vala:118 +msgid "Legal (8.5 x 14 inches)" +msgstr "Legal (8.5 x 14 cali)" + +#: src/Constants/ThiefProperties.vala:119 +msgid "Letter (8.5 x 11 inches)" +msgstr "Letter (8.5 x 11 cali)" + +#: src/Constants/ThiefProperties.vala:122 +msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." +msgstr "Nie podoba ci się to, co widzisz? Naciśnij `Ctrl+,` by otworzyć preferencje." + +#: src/Constants/ThiefProperties.vala:123 +msgid "No built in dark mode? Dark themes are available at https://themes.thiefmd.com. Add more in the Preferences (`Ctrl+,`)." +msgstr "Brak wbudowanego ciemnego stylu? Ciemne motywy są dostępne na https://themes.thiefmd.com. Możesz dodać więcej w preferencjach (`Ctrl+,`)." + +#: src/Constants/ThiefProperties.vala:124 +msgid "Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and click Export." +msgstr "Nie podoba ci się, jak wygląda podgląd? Naciśnij `Ctrl+,` by otworzyć preferencje i kliknij Eksport." + +#: src/Constants/ThiefProperties.vala:125 +msgid "Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." +msgstr "Chcesz zaimportować plik ePUB, HTML lub DocX? Kliknij Importuj w oknie dodawania nowej kartki." + +#: src/Constants/ThiefProperties.vala:126 +msgid "Ready to publish your great work? Right-click on the folder and choose \"Export Preview\"" +msgstr "Gotowy na publikację swojego wielkiego dzieła? Kliknij prawym na katalog i wybierz \"Podgląd eksportu\"" + +#: src/Constants/ThiefProperties.vala:127 +msgid "Want to block out distractions? Full-screen is just an `F11` away." +msgstr "Chcesz zablokować rozpraszacze? Pełny ekran jest tylko `F11` stąd." + +#: src/Constants/ThiefProperties.vala:128 +msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." +msgstr "Szybko przełączaj tryby widoku przy pomocy `Ctrl+1`, `Ctrl+2` i `Ctrl+3`." + +#: src/Constants/ThiefProperties.vala:129 +msgid "Working with a lot of links? Turn on Experimental Mode to make your markdown more readable `Ctrl+Shift+M`." +msgstr "Pracujesz z dużą ilością odnośników? Włącz tryb eksperymentalny, by twój Markdown był bardziej czytelny przy użyciu `Ctrl+Shift+M`." + +#: src/Connections/WriteFreelyConnection.vala:127 +msgid "New WriteFreely Connection" +msgstr "Nowe połączenie z WriteFreely" + +#: src/Connections/GhostConnection.vala:106 +msgid "New ghost Connection" +msgstr "Nowe połączenie z ghost" + +#: src/Connections/WordpressConnection.vala:109 +msgid "New Wordpress Connection" +msgstr "Nowe połączenie z WordPress" + +#. website = ThiefProperties.URL; +#: src/Widgets/About.vala:94 +msgid "Feedback" +msgstr "Informacja zwrotna" + +#. license_type = ThiefProperties.LICENSE_TYPE; +#: src/Widgets/About.vala:99 +msgid "This program comes with absolutely no warranty." +msgstr "Ten program nie jest objęty żadną gwarancją." + +#: src/Widgets/About.vala:100 +msgid "See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, version 3 or later</a> for details." +msgstr "Zobacz <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, wersja 3 lub późniejsza</a>, by uzyskać szczegółowe informacje." + +#: src/Widgets/Preferences.vala:279 +msgid "Connections" +msgstr "Połączenia" + +#: src/Widgets/Preferences.vala:340 +msgid "Remove " +msgstr "Usuń" + +#: src/Widgets/Preferences.vala:373 +msgid "Display" +msgstr "Wygląd" + +#: src/Widgets/Preferences.vala:377 +msgid "Display Options" +msgstr "Opcje wyglądu" + +#: src/Widgets/Preferences.vala:378 +msgid "Make ThiefMD feel like home." +msgstr "Dopasuj ThiefMD do siebie." + +#: src/Widgets/Preferences.vala:487 +msgid "Compiling Options" +msgstr "Opcje kompilacji" + +#: src/Widgets/Preferences.vala:488 +msgid "Adjust how Markdown files are compiled together." +msgstr "Dostosuj jak pliki Markdown są kompilowane ze sobą." + +#: src/Widgets/Preferences.vala:543 +msgid "Page Setup" +msgstr "Ustawienia strony" + +#: src/Widgets/Preferences.vala:544 +msgid "Configure PDF export options." +msgstr "Dostosuj opcje eksportu PDF." + +#: src/Widgets/Preferences.vala:641 +msgid "PDF CSS" +msgstr "CSS dla PDF" + +#: src/Widgets/Preferences.vala:642 +msgid "Choose CSS Style for PDF Export." +msgstr "Wybierz styl CSS dla eksportu PDF." + +#: src/Widgets/Preferences.vala:650 +msgid "ePub & HTML CSS" +msgstr "CSS dla ePUB i HTML" + +#: src/Widgets/Preferences.vala:651 +msgid "Choose CSS Style to use for ePub and HTML Export." +msgstr "Wybierz styl CSS dla eksportu ePUB i HTML." + +#: src/Widgets/Preferences.vala:684 +msgid "Editor Settings" +msgstr "Ustawienia edytora" + +#: src/Widgets/Preferences.vala:685 +msgid "Modify the ThiefMD environment." +msgstr "Zmodyfikuj środowisko ThiefMD." + +#: src/Widgets/Preferences.vala:779 +msgid "ThiefMD Settings" +msgstr "Ustawienia ThiefMD" + +#: src/Widgets/Preferences.vala:780 +msgid "Modify the ThiefMD appearance." +msgstr "Zmodyfikuj wygląd ThiefMD." + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Download" +msgstr "Pobierz " + +#: src/Widgets/ThemeSelector.vala:326 +msgid "more themes" +msgstr "więcej motywów" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Stored in" +msgstr "Przechowywane w " + +#: src/ThiefApp.vala:315 +msgid "Fountain" +msgstr "Fountain" + +#: src/Constants/ThiefProperties.vala:101 +msgid "Fountain Preview and Export" +msgstr "Podgląd i eksport Fountain" + +#: src/Exporters/ExportFountain.vala:57 +msgid "Fountain files" +msgstr "Pliki Fountain" + +#: src/Exporters/ExportFountain.vala:63 +msgid "Export Fountain" +msgstr "Eksport Fountain" + +#: src/Widgets/HeaderBar.vala:107 +msgid "Show Notes" +msgstr "Pokaż notatki" + +#: src/Widgets/Sheet.vala:289 +msgid "Copy File Path" +msgstr "Kopiuj ścieżkę pliku" + +#: src/Widgets/Editor.vala:1394 +msgid "Insert Citation" +msgstr "Wstaw cytat" + +#: src/Widgets/Library.vala:639 +msgid "Set Project Icon" +msgstr "Ustaw ikonkę projektu" + +#: src/Widgets/Library.vala:645 +msgid "Folder" +msgstr "Katalog" + +#: src/Widgets/Library.vala:648 +msgid "Reader" +msgstr "Czytelnik" + +#: src/Widgets/Library.vala:651 +msgid "Love" +msgstr "Miłość" + +#: src/Widgets/Library.vala:654 +msgid "Game" +msgstr "Gra" + +#: src/Widgets/Library.vala:657 +msgid "Art" +msgstr "Sztuka" + +#: src/Widgets/Library.vala:660 +msgid "Nature" +msgstr "Natura" + +#: src/Widgets/Library.vala:663 +msgid "Food" +msgstr "Jedzenie" + +#: src/Widgets/Library.vala:666 +msgid "Help" +msgstr "Pomoc" + +#: src/Widgets/Library.vala:669 +msgid "Cool" +msgstr "Cool" + +#: src/Widgets/Library.vala:672 +msgid "Angel" +msgstr "Anioł" + +#: src/Widgets/Library.vala:675 +msgid "Monkey" +msgstr "Małpa" + +#: src/Widgets/Library.vala:678 +msgid "WordPress" +msgstr "WordPress" + +#: src/Widgets/Library.vala:681 +msgid "Ghost" +msgstr "Ghost" + +#: src/Widgets/Library.vala:684 +msgid "Write Freely" +msgstr "WriteFreely" + +#: src/Widgets/Library.vala:687 +msgid "Trash" +msgstr "Śmietnik" + +#: src/Widgets/Preferences.vala:431 +msgid "Number of Lines to Preview in Sheets View" +msgstr "Liczba linii w podglądzie kartki" + +#: src/Widgets/Preferences.vala:765 +msgid "Disable application tips" +msgstr "Wyłącz podpowiedzi aplikacji" + +#: src/Widgets/Preferences.vala:766 +msgid "Start with new empty sheet on launch" +msgstr "Zacznij z pustą kartką przy starcie" + +#: src/Enrichments/Fountain.vala:32 +msgid "Characters" +msgstr "Litery" + +#: src/Enrichments/Markdown.vala:30 +msgid "Citations" +msgstr "Cytaty" + +#: src/Constants/ThiefProperties.vala:95 +msgid "Stolen Victory Font" +msgstr "Czcionka Stolen Victory" + +#: src/Constants/ThiefProperties.vala:108 +msgid "Grammar Check" +msgstr "Sprawdzanie gramatyki" + +#: src/Constants/ThiefProperties.vala:108 +msgid "the AbiSource Community" +msgstr "Społeczność AbiSource" + +#: src/Constants/ThiefProperties.vala:108 +msgid "GNU Lesser General Public License v2.1" +msgstr "GNU Lesser General Public License v2.1" + +#: src/Widgets/QuickPreferences.vala:71 +msgid "Check Grammar" +msgstr "Sprawdź gramatykę" + +#: src/Widgets/QuickPreferences.vala:74 +msgid "Toggle Grammar Checking" +msgstr "Przełącz sprawdzanie gramatyki" + +#: src/Widgets/QuickPreferences.vala:87 +msgid "Grammar check is not available for your language" +msgstr "Sprawdzanie gramatyki jest niedostępne dla twojego języka" + +#: src/Constants/ThiefProperties.vala:88 +msgid "Czech Translation Contributors" +msgstr "Tłumaczenie na język czeski" + +#: src/Constants/ThiefProperties.vala:107 +msgid "PDF Export" +msgstr "Eksport PDF" + +#: src/Constants/ThiefProperties.vala:107 +msgid "Simon Sapin and contributors" +msgstr "Simon Sapin i współtwórcy" + +#: src/Controllers/FileManager.vala:39 +msgid "Stealing file contents..." +msgstr "Kradnę zawartość pliku..." + +#: src/Controllers/FileManager.vala:40 +msgid "This isn't plagiarism, it's a remix!" +msgstr "To nie plagiat, to remiks!" + +#: src/Controllers/FileManager.vala:41 +msgid "NYT Best Seller, here we come!" +msgstr "Listo bestsellerów NYT, nadchodzimy!" + +#: src/Connections/WriteFreelyConnection.vala:233 +msgid "Taking your words, and letting them go... to the internet!" +msgstr "Biorę twoje słowa i pozwalam im odejść... do internetu!" + +#: src/Connections/WriteFreelyConnection.vala:234 +msgid "Mhm... I see and I ship." +msgstr "Mhm... widzę i wysyłam." + +#: src/Connections/WriteFreelyConnection.vala:235 +msgid "Is this a selfie, and you're happy to see me?" +msgstr "Czy to selfie i się cieszysz, że mnie widzisz?" + +#: src/Connections/GhostConnection.vala:192 +msgid "Your words are like Casper... Friendly!" +msgstr "Twoje słowa są jak Kacper... Przyjazne!" + +#: src/Connections/GhostConnection.vala:193 +msgid "I see your words, and I'm taking them to the internet!" +msgstr "Widzę twoje słowa i zabieram je do internetu!" + +#: src/Connections/GhostConnection.vala:194 +msgid "Booooooooooo! (That's Ghost speak for Great Work!)" +msgstr "Buuuuuuuuuu! (To \"dobra robota!\" po duchowemu)" + +#: src/Connections/WordpressConnection.vala:192 +msgid "Taking it to the internet!" +msgstr "Zabieram to do internetu!" + +#: src/Connections/WordpressConnection.vala:193 +msgid "Don't forget to share on reddit." +msgstr "Nie zapomnij udostępnić na Reddicie." + +#: src/Connections/WordpressConnection.vala:194 +msgid "Pressing words together..." +msgstr "Ściskam prasą słowa w całość..." + +#: src/Exporters/ExportPdf.vala:149 +msgid "Simply Shakespearean." +msgstr "Po prostu szekspirowskie." + +#: src/Exporters/ExportPdf.vala:150 +msgid "Hmm... that's interesting..." +msgstr "Hmm... to ciekawe..." + +#: src/Exporters/ExportPdf.vala:151 +msgid "Your writing is insightful." +msgstr "Twoja twórczość jest wnikliwa." + +#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 +#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 +#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 +msgid "Connection Error" +msgstr "Błąd połączenia" + +#: src/Widgets/Preferences.vala:159 +msgid " Medium" +msgstr " Medium" + +#: src/Widgets/Preferences.vala:193 +msgid " Forem" +msgstr " Forem" + +#: src/Widgets/Preferences.vala:227 +msgid " Hashnode" +msgstr " Hashnode" + +#: src/Constants/ThiefProperties.vala:92 +msgid "German Translation Contributors" +msgstr "Tłumaczenie na język niemiecki" + +#: src/Constants/ThiefProperties.vala:93 +msgid "Finnish Translation Contributors" +msgstr "Tłumaczenie na język fiński" + +#: src/Connections/WordpressConnection.vala:89 +msgid "Application Password" +msgstr "" + diff --git a/po/sk.po b/po/sk.po index 4987496c..3ab1386a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,303 +1,37 @@ msgid "" msgstr "" -"Project-Id-Version: ThiefMD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-26 11:34-0700\n" -"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: POEditor.com\n" +"Project-Id-Version: ThiefMD\n" +"Language: sk\n" -#: src/ThiefApp.vala:244 +#: src/ThiefApp.vala:309 msgid "HTML" msgstr "" -#: src/ThiefApp.vala:245 +#: src/ThiefApp.vala:310 msgid "PDF" msgstr "" -#: src/ThiefApp.vala:246 +#: src/ThiefApp.vala:311 msgid "MHTML" msgstr "" -#: src/ThiefApp.vala:247 +#: src/ThiefApp.vala:312 msgid "Markdown" msgstr "" -#: src/ThiefApp.vala:248 +#: src/ThiefApp.vala:313 msgid "LaTeX" msgstr "" -#: src/ThiefApp.vala:249 +#: src/ThiefApp.vala:314 msgid "DocX" msgstr "" -#: src/ThiefApp.vala:250 -msgid "Fountain" -msgstr "" - -#. Visual Settings -#. Arbitrary strings -#: src/Constants/AppSettings.vala:104 -#, c-format -msgid "" -"# Click on a sheet to get started\n" -"\n" -"First time here? Drag a folder into the library, or click on the Folder " -"icon to select a folder to add.\n" -"\n" -"## Thief Tip:\n" -"\n" -"%s" -msgstr "" - -#: src/Constants/ThiefProperties.vala:25 -msgid "The Markdown editor worth stealing" -msgstr "" - -#: src/Constants/ThiefProperties.vala:86 -msgid "Contributors who help make ThiefMD awesome" -msgstr "" - -#: src/Constants/ThiefProperties.vala:87 -msgid "Czech Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:88 -msgid "French Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:89 -msgid "Slovak Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:90 -msgid "Swedish Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:91 -msgid "German Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:92 -msgid "Finnish Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Original Code" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" -msgstr "Postavené na <a href='https://github.com/lainsce/quilter'>Quilter</a>" - -#: src/Constants/ThiefProperties.vala:93 src/Constants/ThiefProperties.vala:94 -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:101 -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -#: src/Constants/ThiefProperties.vala:105 -#: src/Constants/ThiefProperties.vala:106 -#: src/Constants/ThiefProperties.vala:107 -#: src/Constants/ThiefProperties.vala:108 -msgid "Copyright" -msgstr "" - -#: src/Constants/ThiefProperties.vala:93 -msgid "GNU General Public License v3.0" -msgstr "" - -#: src/Constants/ThiefProperties.vala:94 -msgid "Stolen Victory Font" -msgstr "" - -#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -msgid "SIL OPEN FONT LICENSE Version 1.1" -msgstr "" - -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -msgid "MIT License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Widgets/ThemeSelector.vala:50 -msgid "Font" -msgstr "Písmo" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Preview CSS" -msgstr "" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Mash up of Splendor and Modest" -msgstr "" - -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:108 -msgid "The MIT License (MIT)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:100 -msgid "Fountain Preview and Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:101 -msgid "Markdown Parsing" -msgstr "" - -#: src/Constants/ThiefProperties.vala:101 -msgid "BSD-style License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:102 -msgid "Syntax Highlighting" -msgstr "" - -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:106 -msgid "BSD-3-Clause License" -msgstr "" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Math Rendering" -msgstr "" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Khan Academy and other contributors." -msgstr "" - -#: src/Constants/ThiefProperties.vala:104 -msgid "XML Parsing" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "Pandoc Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "John MacFarlane and others" -msgstr "" - -#: src/Constants/ThiefProperties.vala:105 -msgid "GNU General Public License v2.0" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "PDF Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "Simon Sapin and contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "Grammar Check" -msgstr "Kontrola gramatiky" - -#: src/Constants/ThiefProperties.vala:107 -msgid "the AbiSource Community" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "GNU Lesser General Public License v2.1" -msgstr "" - -#: src/Constants/ThiefProperties.vala:108 -msgid "libwritegood-vala based on" -msgstr "" - -#: src/Constants/ThiefProperties.vala:108 -msgid "write-good: Naive linter for English prose" -msgstr "" - -#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME -#: src/Constants/ThiefProperties.vala:112 -msgid "A3 (11.7 x 16.5 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:113 -msgid "A4 (8 x 11 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:114 -msgid "A5 (5.8 x 8.3 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:115 -msgid "B5 (6.93 x 9.84 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:116 -msgid "Executive (7 x 10 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:117 -msgid "Legal (8.5 x 14 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:118 -msgid "Letter (8.5 x 11 inches)" -msgstr "" - -#: src/Constants/ThiefProperties.vala:121 -msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." -msgstr "Nepáči sa vám, čo vidíte? Stlačte `Ctrl+,` pre prístup ku voľbám" - -#: src/Constants/ThiefProperties.vala:122 -msgid "" -"No built in dark mode? Dark themes are available at https://themes.thiefmd." -"com. Add more in the Preferences (`Ctrl+,`)." -msgstr "" - -#: src/Constants/ThiefProperties.vala:123 -msgid "" -"Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and " -"click Export." -msgstr "" - -#: src/Constants/ThiefProperties.vala:124 -msgid "" -"Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." -msgstr "" - -#: src/Constants/ThiefProperties.vala:125 -msgid "" -"Ready to publish your great work? Right-click on the folder and choose " -"\"Export Preview\"" -msgstr "" - -#: src/Constants/ThiefProperties.vala:126 -msgid "Want to block out distractions? Full-screen is just an `F11` away." -msgstr "" - -#: src/Constants/ThiefProperties.vala:127 -msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." -msgstr "" - -#: src/Constants/ThiefProperties.vala:128 -msgid "" -"Working with a lot of links? Turn on Experimental Mode to make your markdown " -"more readable `Ctrl+Shift+M`." -msgstr "" - -#: src/Controllers/FileManager.vala:39 -msgid "Stealing file contents..." -msgstr "" - -#: src/Controllers/FileManager.vala:40 -msgid "This isn't plagiarism, it's a remix!" -msgstr "" - -#: src/Controllers/FileManager.vala:41 -msgid "NYT Best Seller, here we come!" -msgstr "" - +#. Supported import file extensions #: src/Controllers/FileManager.vala:43 msgid "Importing File" msgstr "Importovanie súboru" @@ -350,15 +84,6 @@ msgstr "MHTML súbory" msgid "LaTeX file" msgstr "Súbor LaTeX" -#: src/Controllers/Dialogs.vala:161 -msgid "Supported files" -msgstr "Podporované súbory" - -#: src/Controllers/Dialogs.vala:170 -#, c-format -msgid "%s files" -msgstr "%s súbor/y/ov" - #: src/Controllers/Dialogs.vala:177 msgid "All files" msgstr "Všetky súbory" @@ -387,16 +112,10 @@ msgstr "Ak ich neuložíte, zmeny budú navždy stratené." msgid "Close without saving" msgstr "Zavrieť bez uloženia" -#: src/Controllers/SheetManager.vala:157 src/Widgets/StatisticsBar.vala:93 +#: src/Controllers/SheetManager.vala:156 src/Widgets/StatisticsBar.vala:93 msgid "No file opened" msgstr "Žiadný súbor nieje otvorený" -#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 -#: src/Widgets/PublisherPreviewWindow.vala:295 -#: src/Widgets/ProjectStatistics.vala:71 -msgid "Close" -msgstr "Zavrieť" - #: src/Connections/WriteFreelyConnection.vala:103 #: src/Connections/WordpressConnection.vala:85 msgid "Username" @@ -404,7 +123,6 @@ msgstr "Užívateľské meno" #: src/Connections/WriteFreelyConnection.vala:107 #: src/Connections/GhostConnection.vala:86 -#: src/Connections/WordpressConnection.vala:89 msgid "Password" msgstr "Heslo" @@ -414,43 +132,21 @@ msgstr "Heslo" msgid "Endpoint" msgstr "" -#: src/Connections/WriteFreelyConnection.vala:127 -msgid "New WriteFreely Connection" -msgstr "Nové prepojenie ku WriteFreely" - #: src/Connections/WriteFreelyConnection.vala:130 #: src/Connections/GhostConnection.vala:109 #: src/Connections/WordpressConnection.vala:112 msgid "_Add Account" msgstr "_Pridať účet" -#: src/Connections/WriteFreelyConnection.vala:233 -msgid "Taking your words, and letting them go... to the internet!" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:234 -msgid "Mhm... I see and I ship." -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:235 -msgid "Is this a selfie, and you're happy to see me?" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:238 -#: src/Connections/GhostConnection.vala:197 -#: src/Connections/WordpressConnection.vala:198 -msgid "Uploading images" -msgstr "Nahrávanie obrázkov" - #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid " Published" msgstr " Zverejnené" #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid "Post Published" msgstr "Príspevok zverejnený" @@ -458,45 +154,11 @@ msgstr "Príspevok zverejnený" msgid "E-mail" msgstr "" -#: src/Connections/GhostConnection.vala:106 -msgid "New ghost Connection" -msgstr "Nové prepojenie pre Ghost" - -#: src/Connections/GhostConnection.vala:192 -msgid "Your words are like Casper... Friendly!" -msgstr "" - -#: src/Connections/GhostConnection.vala:193 -msgid "I see your words, and I'm taking them to the internet!" -msgstr "" - -#: src/Connections/GhostConnection.vala:194 -msgid "Booooooooooo! (That's Ghost speak for Great Work!)" -msgstr "" - -#: src/Connections/WordpressConnection.vala:109 -msgid "New Wordpress Connection" -msgstr "Nové prepojenie pre WordPress" - -#: src/Connections/WordpressConnection.vala:191 -msgid "Taking it to the internet!" -msgstr "" - -#: src/Connections/WordpressConnection.vala:192 -msgid "Don't forget to share on reddit." -msgstr "" - -#: src/Connections/WordpressConnection.vala:193 -msgid "Pressing words together..." -msgstr "" - -#: src/Enrichments/Fountain.vala:32 -msgid "Characters" -msgstr "Znaky" - -#: src/Enrichments/Markdown.vala:30 -msgid "Citations" -msgstr "Citácie" +#: src/Connections/WriteFreelyConnection.vala:238 +#: src/Connections/GhostConnection.vala:197 +#: src/Connections/WordpressConnection.vala:217 +msgid "Uploading images" +msgstr "Nahrávanie obrázkov" #: src/Exporters/ExportDocx.vala:60 msgid "Export DocX" @@ -518,14 +180,6 @@ msgstr "Exportovať LaTeX" msgid "Export Markdown" msgstr "Exportovať Markdown" -#: src/Exporters/ExportFountain.vala:57 -msgid "Fountain files" -msgstr "" - -#: src/Exporters/ExportFountain.vala:63 -msgid "Export Fountain" -msgstr "" - #: src/Exporters/ExportMhtml.vala:62 msgid "Export MHTML" msgstr "Exportovať MHTML" @@ -534,18 +188,6 @@ msgstr "Exportovať MHTML" msgid "Export PDF" msgstr "Exportovať PDF" -#: src/Exporters/ExportPdf.vala:149 -msgid "Simply Shakespearean." -msgstr "" - -#: src/Exporters/ExportPdf.vala:150 -msgid "Hmm... that's interesting..." -msgstr "" - -#: src/Exporters/ExportPdf.vala:151 -msgid "Your writing is insightful." -msgstr "" - #: src/Exporters/ExportPdf.vala:153 src/Exporters/ExportPdf.vala:183 msgid "Working PDF Magic" msgstr "" @@ -554,13 +196,17 @@ msgstr "" msgid "Making sure your hard work looks purrfect..." msgstr "" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:132 -#: src/Widgets/QuickPreferences.vala:216 src/Widgets/QuickPreferences.vala:295 +#: src/Exporters/ExportPdf.vala:107 +msgid "Print to File" +msgstr "Vytlačiť do súboru" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:146 +#: src/Widgets/QuickPreferences.vala:237 src/Widgets/QuickPreferences.vala:326 msgid "About ThiefMD" msgstr "O ThiefMD" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:130 -#: src/Widgets/QuickPreferences.vala:214 src/Widgets/QuickPreferences.vala:293 +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:144 +#: src/Widgets/QuickPreferences.vala:235 src/Widgets/QuickPreferences.vala:324 msgid "About" msgstr "O" @@ -568,42 +214,28 @@ msgstr "O" msgid "Credits" msgstr "Autori" -#. website = ThiefProperties.URL; -#: src/Widgets/About.vala:94 -msgid "Feedback" -msgstr "Odozva" - -#. license_type = ThiefProperties.LICENSE_TYPE; -#: src/Widgets/About.vala:99 -msgid "This program comes with absolutely no warranty." -msgstr "" - -#: src/Widgets/About.vala:100 -msgid "" -"See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General " -"Public License, version 3 or later</a> for details." -msgstr "" +#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 +#: src/Widgets/PublisherPreviewWindow.vala:295 +#: src/Widgets/ProjectStatistics.vala:71 +msgid "Close" +msgstr "Zavrieť" -#: src/Widgets/HeaderBar.vala:86 +#: src/Widgets/Sheets.vala:179 msgid "New Sheet" msgstr "Nový list" -#: src/Widgets/HeaderBar.vala:98 +#: src/Widgets/HeaderBar.vala:78 msgid "Change View" msgstr "Zmeniť zobrazenie" -#: src/Widgets/HeaderBar.vala:106 +#: src/ThiefApp.vala:186 msgid "Add Folder to Library" msgstr "Pridať zložku do knižnice" -#: src/Widgets/HeaderBar.vala:129 +#: src/Widgets/HeaderBar.vala:92 msgid "Settings" msgstr "Nastavenia" -#: src/Widgets/HeaderBar.vala:144 -msgid "Show Notes" -msgstr "Ukázať poznámky" - #: src/Widgets/Sheet.vala:215 msgid "Sort by" msgstr "Zoradiť podľa" @@ -632,30 +264,26 @@ msgstr "Zoradiť vzostupne dátumom" msgid "Sort by Date Descending" msgstr "Zoradiť zostupne dátumom" -#: src/Widgets/Sheet.vala:261 src/Widgets/QuickPreferences.vala:95 -#: src/Widgets/QuickPreferences.vala:179 src/Widgets/QuickPreferences.vala:258 +#: src/Widgets/Sheet.vala:273 src/Widgets/QuickPreferences.vala:95 +#: src/Widgets/QuickPreferences.vala:195 src/Widgets/QuickPreferences.vala:279 msgid "Preview" msgstr "Náhľad" -#: src/Widgets/Sheet.vala:269 src/Widgets/Preferences.vala:482 +#: src/Widgets/Sheet.vala:281 src/Widgets/Preferences.vala:482 #: src/Widgets/PublisherPreviewWindow.vala:155 #: src/Widgets/ProjectStatistics.vala:64 msgid "Export" msgstr "Exportovať" -#: src/Widgets/Sheet.vala:277 -msgid "Copy File Path" -msgstr "" - #. Gtk.MenuItem menu_rename = new Gtk.MenuItem.with_label (_("Rename File")); #. menu_rename.activate.connect (() => { #. }); #. menu.add (menu_rename); -#: src/Widgets/Sheet.vala:293 +#: src/Widgets/Sheet.vala:305 msgid "Danger Zone" msgstr "Nebezpečná oblasť" -#: src/Widgets/Sheet.vala:299 +#: src/Widgets/Sheet.vala:311 msgid "Move to Trash" msgstr "Presunúť do koša" @@ -667,128 +295,47 @@ msgstr "_Načítať z disku" msgid "_Keep what's in editor" msgstr "_Ponechať, čo je v editore" -#: src/Widgets/Editor.vala:1263 +#: src/Widgets/Editor.vala:1278 msgid "Insert Datetime" msgstr "Vložiť dátum a čas" -#: src/Widgets/Editor.vala:1281 +#: src/Widgets/Editor.vala:1296 msgid "Insert YAML Frontmatter" msgstr "" -#: src/Widgets/Editor.vala:1379 -msgid "Insert Citation" -msgstr "Vložiť citáciu" - -#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); -#: src/Widgets/Library.vala:73 -msgid "Library" -msgstr "Knižnica" - -#: src/Widgets/Library.vala:538 +#: src/Widgets/Library.vala:539 msgid "Export Preview" msgstr "Náhľad exportu" -#: src/Widgets/Library.vala:548 +#: src/Widgets/Library.vala:549 msgid "Writing Statistics" msgstr "Štatistiky písania" -#: src/Widgets/Library.vala:561 +#: src/Widgets/Library.vala:562 msgid "Search " msgstr "Hľadať " -#: src/Widgets/Library.vala:573 -msgid "Open in File Manager" -msgstr "Otvoriť v správcovi súborov" - -#: src/Widgets/Library.vala:585 +#: src/Widgets/Library.vala:586 msgid "Create Sub-Folder" msgstr "Vytvoriť podzložku" -#: src/Widgets/Library.vala:602 +#: src/Widgets/Library.vala:603 msgid "Hide from Library" msgstr "Skryť z knižnice" -#: src/Widgets/Library.vala:626 +#: src/Widgets/Library.vala:627 msgid "Show Hidden Items" msgstr "Ukázať skryté súbory" -#: src/Widgets/Library.vala:638 -msgid "Set Project Icon" -msgstr "" - -#: src/Widgets/Library.vala:641 src/Widgets/Preferences.vala:389 -msgid "None" -msgstr "Žiaden" - -#: src/Widgets/Library.vala:644 -msgid "Folder" -msgstr "Zložka" - -#: src/Widgets/Library.vala:647 -msgid "Reader" -msgstr "" - -#: src/Widgets/Library.vala:650 -msgid "Love" -msgstr "" - -#: src/Widgets/Library.vala:653 -msgid "Game" -msgstr "" - -#: src/Widgets/Library.vala:656 -msgid "Art" -msgstr "" - -#: src/Widgets/Library.vala:659 -msgid "Nature" -msgstr "" - -#: src/Widgets/Library.vala:662 -msgid "Food" -msgstr "" - -#: src/Widgets/Library.vala:665 -msgid "Help" -msgstr "" - -#: src/Widgets/Library.vala:668 -msgid "Cool" -msgstr "" - -#: src/Widgets/Library.vala:671 -msgid "Angel" -msgstr "" - -#: src/Widgets/Library.vala:674 -msgid "Monkey" -msgstr "" - -#: src/Widgets/Library.vala:677 -msgid "WordPress" -msgstr "" - -#: src/Widgets/Library.vala:680 -msgid "Ghost" -msgstr "" - -#: src/Widgets/Library.vala:683 -msgid "Write Freely" -msgstr "" - -#: src/Widgets/Library.vala:686 -msgid "Trash" -msgstr "Kôš" - -#: src/Widgets/Library.vala:696 +#: src/Widgets/Library.vala:697 msgid "Remove from Library" msgstr "Odstrániť z knižnice" -#: src/Widgets/Library.vala:933 +#: src/Widgets/Library.vala:934 msgid "Copy" msgstr "Kopírovať" -#: src/Widgets/Library.vala:935 +#: src/Widgets/Library.vala:936 msgid "Move" msgstr "Presunúť" @@ -808,10 +355,6 @@ msgstr "Názov listu" msgid "Create" msgstr "Vytvoriť" -#: src/Widgets/NewSheet.vala:41 -msgid "Import" -msgstr "Importovať" - #: src/Widgets/Preferences.vala:50 msgid "Current Connections" msgstr "Súčasné prepojenia" @@ -832,40 +375,10 @@ msgstr "Vyberte si svoj blogovací softvér" msgid " WriteFreely" msgstr "" -#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 -#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 -#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 -msgid "Connection Error" -msgstr "" - #: src/Widgets/Preferences.vala:91 msgid " ghost" msgstr "" -#: src/Widgets/Preferences.vala:125 -msgid " WordPress" -msgstr "" - -#: src/Widgets/Preferences.vala:159 -msgid " Medium" -msgstr "" - -#: src/Widgets/Preferences.vala:193 -msgid " Forem" -msgstr "" - -#: src/Widgets/Preferences.vala:227 -msgid " Hashnode" -msgstr "" - -#: src/Widgets/Preferences.vala:279 -msgid "Connections" -msgstr "Prepojenia" - -#: src/Widgets/Preferences.vala:340 -msgid "Remove " -msgstr "Odstrániť " - #: src/Widgets/Preferences.vala:343 msgid "_Remove" msgstr "_Odstrániť" @@ -874,22 +387,14 @@ msgstr "_Odstrániť" msgid "_Keep" msgstr "_Ponechať" -#: src/Widgets/Preferences.vala:373 -msgid "Display" -msgstr "Zobrazenie" - -#: src/Widgets/Preferences.vala:377 -msgid "Display Options" -msgstr "Možnosti zobrazenia" - -#: src/Widgets/Preferences.vala:378 -msgid "Make ThiefMD feel like home." -msgstr "Cíťte sa v ThiefMD ako doma." - #: src/Widgets/Preferences.vala:384 msgid "Focus" msgstr "Fókus" +#: src/Widgets/Library.vala:642 src/Widgets/Preferences.vala:389 +msgid "None" +msgstr "Žiaden" + #: src/Widgets/Preferences.vala:390 msgid "Paragraph" msgstr "Paragraf" @@ -902,30 +407,16 @@ msgstr "Veta" msgid "Word" msgstr "Slovo" -#: src/Widgets/Preferences.vala:431 -msgid "Number of Lines to Preview in Sheets View" -msgstr "Počet riadkov v náhľade, pri listovom zobrazení" - #: src/Widgets/Preferences.vala:440 msgid "Add New Theme" msgstr "Pridať novú tému" -#: src/Widgets/Preferences.vala:487 -msgid "Compiling Options" -msgstr "Možnosti kompilácie" - -#: src/Widgets/Preferences.vala:488 -msgid "Adjust how Markdown files are compiled together." -msgstr "Upraviť ako sú Markdown súbory kompilované dokopy" - #: src/Widgets/Preferences.vala:496 msgid "First Markdown File includes Author Metadata" msgstr "" #: src/Widgets/Preferences.vala:498 -msgid "" -"First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>Author metadata</a>" +msgid "First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Author metadata</a>" msgstr "" #: src/Widgets/Preferences.vala:514 @@ -944,14 +435,6 @@ msgstr "" msgid "Include YAML title as H1 Heading" msgstr "" -#: src/Widgets/Preferences.vala:543 -msgid "Page Setup" -msgstr "Nastavenie strany" - -#: src/Widgets/Preferences.vala:544 -msgid "Configure PDF export options." -msgstr "" - #: src/Widgets/Preferences.vala:552 msgid "Page Break between Folders" msgstr "" @@ -976,38 +459,10 @@ msgstr "" msgid "Top & Bottom margins in PDF in inches" msgstr "" -#: src/Widgets/Preferences.vala:641 -msgid "PDF CSS" -msgstr "" - -#: src/Widgets/Preferences.vala:642 -msgid "Choose CSS Style for PDF Export." -msgstr "" - -#: src/Widgets/Preferences.vala:650 -msgid "ePub & HTML CSS" -msgstr "" - -#: src/Widgets/Preferences.vala:651 -msgid "Choose CSS Style to use for ePub and HTML Export." -msgstr "" - #: src/Widgets/Preferences.vala:657 msgid "Add Export Style" msgstr "" -#: src/Widgets/Preferences.vala:680 -msgid "Editor" -msgstr "" - -#: src/Widgets/Preferences.vala:684 -msgid "Editor Settings" -msgstr "Nastavenia editora" - -#: src/Widgets/Preferences.vala:685 -msgid "Modify the ThiefMD environment." -msgstr "Upraviť prostredie ThiefMD." - #: src/Widgets/Preferences.vala:693 msgid "Enable spellcheck" msgstr "Povoliť kontrolu pravopisu" @@ -1040,22 +495,6 @@ msgstr "Zapnúť štatistiky písania" msgid "Show writing statistics" msgstr "Ukázať štatistiky písania" -#: src/Widgets/Preferences.vala:765 -msgid "Disable application tips" -msgstr "Vypnúť softvérovu nápovedu" - -#: src/Widgets/Preferences.vala:766 -msgid "Start with new empty sheet on launch" -msgstr "Pri spustení začínať s novým, prázdnym listom" - -#: src/Widgets/Preferences.vala:779 -msgid "ThiefMD Settings" -msgstr "Nastavenia ThiefMD" - -#: src/Widgets/Preferences.vala:780 -msgid "Modify the ThiefMD appearance." -msgstr "Upraviť vzhľad ThiefMD." - #: src/Widgets/Preferences.vala:790 msgid "Toggle interface theming" msgstr "Zapnúť témovanie prostredia" @@ -1088,18 +527,10 @@ msgstr "Zapnúť zoraďovanie knižnice" msgid "Keep library order" msgstr "Ponechať zoradenie knižnice" -#: src/Widgets/Preferences.vala:858 -msgid "Toggle experimental features" -msgstr "" - -#: src/Widgets/Preferences.vala:860 -msgid "Enable experimental features" -msgstr "" - #: src/Widgets/PublisherPreviewWindow.vala:67 #: src/Widgets/PublisherPreviewWindow.vala:209 -#: src/Widgets/QuickPreferences.vala:104 src/Widgets/QuickPreferences.vala:188 -#: src/Widgets/QuickPreferences.vala:267 +#: src/Widgets/QuickPreferences.vala:109 src/Widgets/QuickPreferences.vala:204 +#: src/Widgets/QuickPreferences.vala:293 msgid "Publishing Preview" msgstr "Náhľad publikácie" @@ -1124,9 +555,7 @@ msgid "words" msgstr "slová" #: src/Widgets/ProjectStatistics.vala:126 -#, c-format -msgid "" -"<b>Reading Time:</b>\n" +msgid "<b>Reading Time:</b>\n" "%d %s\n" "%d %s\n" "%d %s" @@ -1176,75 +605,40 @@ msgstr "Write Good (lepšie písanie)" msgid "Toggle Write Good" msgstr "Zapnúť Write Good (lepšie písanie)" -#: src/Widgets/QuickPreferences.vala:71 -msgid "Check Grammar" -msgstr "Kontrolovať gramatiku" - -#: src/Widgets/QuickPreferences.vala:74 -msgid "Toggle Grammar Checking" -msgstr "Zapnúť kontrolu gramatiky" - -#: src/Widgets/QuickPreferences.vala:87 -msgid "Grammar check is not available for your language" -msgstr "Kontrola gramatiky pre váš jazyk nieje dostupná" - -#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:181 -#: src/Widgets/QuickPreferences.vala:260 +#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:197 +#: src/Widgets/QuickPreferences.vala:281 msgid "Launch Preview" msgstr "Pozrieť náhľad" -#: src/Widgets/QuickPreferences.vala:106 src/Widgets/QuickPreferences.vala:190 -#: src/Widgets/QuickPreferences.vala:269 -msgid "Open Export Window" -msgstr "Otvoriť okno pre export" - -#: src/Widgets/QuickPreferences.vala:113 src/Widgets/QuickPreferences.vala:197 -#: src/Widgets/QuickPreferences.vala:276 -msgid "Search Library" -msgstr "Prehľadávanie knižnice" - -#: src/Widgets/QuickPreferences.vala:115 src/Widgets/QuickPreferences.vala:199 -#: src/Widgets/QuickPreferences.vala:278 -msgid "Open Search Window" -msgstr "Otvoriť vyhľadávacie okno" - -#: src/Widgets/QuickPreferences.vala:121 src/Widgets/QuickPreferences.vala:205 -#: src/Widgets/QuickPreferences.vala:284 +#: src/Widgets/QuickPreferences.vala:135 src/Widgets/QuickPreferences.vala:226 +#: src/Widgets/QuickPreferences.vala:315 msgid "Preferences" msgstr "Voľby" -#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:207 -#: src/Widgets/QuickPreferences.vala:286 +#: src/Widgets/QuickPreferences.vala:137 src/Widgets/QuickPreferences.vala:228 +#: src/Widgets/QuickPreferences.vala:317 msgid "Edit Preferences" msgstr "Upraviť predvoľby" -#: src/Widgets/ThemeSelector.vala:55 -msgid "Spacing" -msgstr "Rozloženie" +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Widgets/ThemeSelector.vala:50 +msgid "Font" +msgstr "Písmo" #: src/Widgets/ThemeSelector.vala:142 msgid "Font Selector" msgstr "Výber písma" -#: src/Widgets/ThemeSelector.vala:326 -msgid "Download" -msgstr "Stiahnúť" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "more themes" -msgstr "viac vzhľadov" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "Stored in" -msgstr "Uložené v" +#: src/Widgets/ThemeSelector.vala:320 +msgid "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" +"<small>Stored in <a href='file://" +msgstr "" #: src/Widgets/SearchBar.vala:110 -#, c-format msgid "(%d occurences)" msgstr "(%d nálezov)" #: src/Widgets/StatisticsBar.vala:100 -#, c-format msgid "%d %s %d %s and %d %s reading time." msgstr "" @@ -1269,7 +663,6 @@ msgid "seconds" msgstr "sekundy" #: src/Widgets/StatisticsBar.vala:106 -#, c-format msgid "%s : %d words." msgstr "%s : %d slov." @@ -1277,9 +670,9 @@ msgstr "%s : %d slov." msgid "Library Search" msgstr "Hľadanie v knižnici" -#: src/Widgets/SearchWindow.vala:421 -msgid "Search" -msgstr "Hľadať" +#: src/Widgets/SearchWindow.vala:422 +msgid " Search" +msgstr " Hľadanie" #: src/Widgets/SearchWindow.vala:445 msgid "Monitor for Library changes" @@ -1293,8 +686,605 @@ msgstr "" msgid "Heading" msgstr "Nadpis" -#~ msgid "Print to File" -#~ msgstr "Vytlačiť do súboru" +#. Font settings +#. Arbitrary strings +#: src/Constants/AppSettings.vala:104 +msgid "# Click on a sheet to get started\n" +"\n" +"First time here? Drag a folder into the library, or click on the Folder icon to select a folder to add.\n" +"\n" +"## Thief Tip:\n" +"\n" +"%s" +msgstr "" + +#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); +#: src/ThiefApp.vala:182 +msgid "Library" +msgstr "Knižnica" + +#: src/Widgets/Preferences.vala:680 +msgid "Editor" +msgstr "" + +#: src/Widgets/SearchWindow.vala:421 +msgid "Search" +msgstr "Hľadať" + +#: src/Widgets/QuickPreferences.vala:111 src/Widgets/QuickPreferences.vala:206 +#: src/Widgets/QuickPreferences.vala:295 +msgid "Open Export Window" +msgstr "Otvoriť okno pre export" + +#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:218 +#: src/Widgets/QuickPreferences.vala:307 +msgid "Search Library" +msgstr "Prehľadávanie knižnice" + +#: src/Widgets/QuickPreferences.vala:125 src/Widgets/QuickPreferences.vala:220 +#: src/Widgets/QuickPreferences.vala:309 +msgid "Open Search Window" +msgstr "Otvoriť vyhľadávacie okno" + +#: src/Widgets/ThemeSelector.vala:55 +msgid "Spacing" +msgstr "Rozloženie" + +#: src/Widgets/Preferences.vala:858 +msgid "Toggle experimental features" +msgstr "" + +#: src/Widgets/Preferences.vala:860 +msgid "Enable experimental features" +msgstr "" + +#: src/Controllers/Dialogs.vala:161 +msgid "Supported files" +msgstr "Podporované súbory" + +#: src/Controllers/Dialogs.vala:170 +msgid "%s files" +msgstr "%s súbor/y/ov" + +#: src/Widgets/Library.vala:574 +msgid "Open in File Manager" +msgstr "Otvoriť v správcovi súborov" + +#: src/Widgets/NewSheet.vala:41 +msgid "Import" +msgstr "Importovať" + +#: src/Widgets/Preferences.vala:125 +msgid " WordPress" +msgstr "" + +#: src/Constants/ThiefProperties.vala:25 +msgid "The Markdown editor worth stealing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:87 +msgid "Contributors who help make ThiefMD awesome" +msgstr "" + +#: src/Constants/ThiefProperties.vala:89 +msgid "French Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:90 +msgid "Slovak Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:91 +msgid "Swedish Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Original Code" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" +msgstr "Postavené na <a href='https://github.com/lainsce/quilter'>Quilter</a>" + +#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:95 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 +msgid "Copyright" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "GNU General Public License v3.0" +msgstr "" + +#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +msgid "SIL OPEN FONT LICENSE Version 1.1" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Preview CSS" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Mash up of Splendor and Modest" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:109 +msgid "The MIT License (MIT)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:102 +msgid "Markdown Parsing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:102 +msgid "BSD-style License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:103 +msgid "Syntax Highlighting" +msgstr "" + +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:107 +msgid "BSD-3-Clause License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Math Rendering" +msgstr "" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Khan Academy and other contributors." +msgstr "" + +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +msgid "MIT License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:105 +msgid "XML Parsing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "Pandoc Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "John MacFarlane and others" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "GNU General Public License v2.0" +msgstr "" + +#: src/Constants/ThiefProperties.vala:109 +msgid "libwritegood-vala based on" +msgstr "" + +#: src/Constants/ThiefProperties.vala:109 +msgid "write-good: Naive linter for English prose" +msgstr "" + +#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME +#: src/Constants/ThiefProperties.vala:113 +msgid "A3 (11.7 x 16.5 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:114 +msgid "A4 (8 x 11 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:115 +msgid "A5 (5.8 x 8.3 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:116 +msgid "B5 (6.93 x 9.84 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:117 +msgid "Executive (7 x 10 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:118 +msgid "Legal (8.5 x 14 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:119 +msgid "Letter (8.5 x 11 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:122 +msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." +msgstr "Nepáči sa vám, čo vidíte? Stlačte `Ctrl+,` pre prístup ku voľbám" + +#: src/Constants/ThiefProperties.vala:123 +msgid "No built in dark mode? Dark themes are available at https://themes.thiefmd.com. Add more in the Preferences (`Ctrl+,`)." +msgstr "" + +#: src/Constants/ThiefProperties.vala:124 +msgid "Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and click Export." +msgstr "" + +#: src/Constants/ThiefProperties.vala:125 +msgid "Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." +msgstr "" + +#: src/Constants/ThiefProperties.vala:126 +msgid "Ready to publish your great work? Right-click on the folder and choose \"Export Preview\"" +msgstr "" + +#: src/Constants/ThiefProperties.vala:127 +msgid "Want to block out distractions? Full-screen is just an `F11` away." +msgstr "" + +#: src/Constants/ThiefProperties.vala:128 +msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." +msgstr "" + +#: src/Constants/ThiefProperties.vala:129 +msgid "Working with a lot of links? Turn on Experimental Mode to make your markdown more readable `Ctrl+Shift+M`." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:127 +msgid "New WriteFreely Connection" +msgstr "Nové prepojenie ku WriteFreely" + +#: src/Connections/GhostConnection.vala:106 +msgid "New ghost Connection" +msgstr "Nové prepojenie pre Ghost" + +#: src/Connections/WordpressConnection.vala:109 +msgid "New Wordpress Connection" +msgstr "Nové prepojenie pre WordPress" + +#. website = ThiefProperties.URL; +#: src/Widgets/About.vala:94 +msgid "Feedback" +msgstr "Odozva" + +#. license_type = ThiefProperties.LICENSE_TYPE; +#: src/Widgets/About.vala:99 +msgid "This program comes with absolutely no warranty." +msgstr "" + +#: src/Widgets/About.vala:100 +msgid "See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, version 3 or later</a> for details." +msgstr "" + +#: src/Widgets/Preferences.vala:279 +msgid "Connections" +msgstr "Prepojenia" + +#: src/Widgets/Preferences.vala:340 +msgid "Remove " +msgstr "Odstrániť " + +#: src/Widgets/Preferences.vala:373 +msgid "Display" +msgstr "Zobrazenie" + +#: src/Widgets/Preferences.vala:377 +msgid "Display Options" +msgstr "Možnosti zobrazenia" + +#: src/Widgets/Preferences.vala:378 +msgid "Make ThiefMD feel like home." +msgstr "Cíťte sa v ThiefMD ako doma." + +#: src/Widgets/Preferences.vala:487 +msgid "Compiling Options" +msgstr "Možnosti kompilácie" + +#: src/Widgets/Preferences.vala:488 +msgid "Adjust how Markdown files are compiled together." +msgstr "Upraviť ako sú Markdown súbory kompilované dokopy" + +#: src/Widgets/Preferences.vala:543 +msgid "Page Setup" +msgstr "Nastavenie strany" + +#: src/Widgets/Preferences.vala:544 +msgid "Configure PDF export options." +msgstr "" + +#: src/Widgets/Preferences.vala:641 +msgid "PDF CSS" +msgstr "" + +#: src/Widgets/Preferences.vala:642 +msgid "Choose CSS Style for PDF Export." +msgstr "" + +#: src/Widgets/Preferences.vala:650 +msgid "ePub & HTML CSS" +msgstr "" + +#: src/Widgets/Preferences.vala:651 +msgid "Choose CSS Style to use for ePub and HTML Export." +msgstr "" + +#: src/Widgets/Preferences.vala:684 +msgid "Editor Settings" +msgstr "Nastavenia editora" + +#: src/Widgets/Preferences.vala:685 +msgid "Modify the ThiefMD environment." +msgstr "Upraviť prostredie ThiefMD." + +#: src/Widgets/Preferences.vala:779 +msgid "ThiefMD Settings" +msgstr "Nastavenia ThiefMD" + +#: src/Widgets/Preferences.vala:780 +msgid "Modify the ThiefMD appearance." +msgstr "Upraviť vzhľad ThiefMD." + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Download" +msgstr "Stiahnúť" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "more themes" +msgstr "viac vzhľadov" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Stored in" +msgstr "Uložené v" + +#: src/ThiefApp.vala:315 +msgid "Fountain" +msgstr "" + +#: src/Constants/ThiefProperties.vala:101 +msgid "Fountain Preview and Export" +msgstr "" + +#: src/Exporters/ExportFountain.vala:57 +msgid "Fountain files" +msgstr "" + +#: src/Exporters/ExportFountain.vala:63 +msgid "Export Fountain" +msgstr "" + +#: src/Widgets/HeaderBar.vala:107 +msgid "Show Notes" +msgstr "Ukázať poznámky" + +#: src/Widgets/Sheet.vala:289 +msgid "Copy File Path" +msgstr "Skopírovať cestu k súboru" + +#: src/Widgets/Editor.vala:1394 +msgid "Insert Citation" +msgstr "Vložiť citáciu" + +#: src/Widgets/Library.vala:639 +msgid "Set Project Icon" +msgstr "" + +#: src/Widgets/Library.vala:645 +msgid "Folder" +msgstr "Zložka" + +#: src/Widgets/Library.vala:648 +msgid "Reader" +msgstr "" + +#: src/Widgets/Library.vala:651 +msgid "Love" +msgstr "" + +#: src/Widgets/Library.vala:654 +msgid "Game" +msgstr "" + +#: src/Widgets/Library.vala:657 +msgid "Art" +msgstr "" + +#: src/Widgets/Library.vala:660 +msgid "Nature" +msgstr "" + +#: src/Widgets/Library.vala:663 +msgid "Food" +msgstr "" + +#: src/Widgets/Library.vala:666 +msgid "Help" +msgstr "" + +#: src/Widgets/Library.vala:669 +msgid "Cool" +msgstr "" + +#: src/Widgets/Library.vala:672 +msgid "Angel" +msgstr "" + +#: src/Widgets/Library.vala:675 +msgid "Monkey" +msgstr "" + +#: src/Widgets/Library.vala:678 +msgid "WordPress" +msgstr "" + +#: src/Widgets/Library.vala:681 +msgid "Ghost" +msgstr "" + +#: src/Widgets/Library.vala:684 +msgid "Write Freely" +msgstr "" + +#: src/Widgets/Library.vala:687 +msgid "Trash" +msgstr "Kôš" + +#: src/Widgets/Preferences.vala:431 +msgid "Number of Lines to Preview in Sheets View" +msgstr "Počet riadkov v náhľade, pri listovom zobrazení" + +#: src/Widgets/Preferences.vala:765 +msgid "Disable application tips" +msgstr "Vypnúť softvérovu nápovedu" + +#: src/Widgets/Preferences.vala:766 +msgid "Start with new empty sheet on launch" +msgstr "Pri spustení začínať s novým, prázdnym listom" + +#: src/Enrichments/Fountain.vala:32 +msgid "Characters" +msgstr "Znaky" + +#: src/Enrichments/Markdown.vala:30 +msgid "Citations" +msgstr "Citácie" + +#: src/Constants/ThiefProperties.vala:95 +msgid "Stolen Victory Font" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "Grammar Check" +msgstr "Kontrola gramatiky" + +#: src/Constants/ThiefProperties.vala:108 +msgid "the AbiSource Community" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "GNU Lesser General Public License v2.1" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:71 +msgid "Check Grammar" +msgstr "Kontrolovať gramatiku" + +#: src/Widgets/QuickPreferences.vala:74 +msgid "Toggle Grammar Checking" +msgstr "Zapnúť kontrolu gramatiky" + +#: src/Widgets/QuickPreferences.vala:87 +msgid "Grammar check is not available for your language" +msgstr "Kontrola gramatiky pre váš jazyk nieje dostupná" + +#: src/Constants/ThiefProperties.vala:88 +msgid "Czech Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "PDF Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "Simon Sapin and contributors" +msgstr "Simon Sapin a prispievatelia" + +#: src/Controllers/FileManager.vala:39 +msgid "Stealing file contents..." +msgstr "" + +#: src/Controllers/FileManager.vala:40 +msgid "This isn't plagiarism, it's a remix!" +msgstr "Toto nieje plagiarizmus, je to remix!" + +#: src/Controllers/FileManager.vala:41 +msgid "NYT Best Seller, here we come!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:233 +msgid "Taking your words, and letting them go... to the internet!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:234 +msgid "Mhm... I see and I ship." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:235 +msgid "Is this a selfie, and you're happy to see me?" +msgstr "" + +#: src/Connections/GhostConnection.vala:192 +msgid "Your words are like Casper... Friendly!" +msgstr "" + +#: src/Connections/GhostConnection.vala:193 +msgid "I see your words, and I'm taking them to the internet!" +msgstr "" + +#: src/Connections/GhostConnection.vala:194 +msgid "Booooooooooo! (That's Ghost speak for Great Work!)" +msgstr "" + +#: src/Connections/WordpressConnection.vala:192 +msgid "Taking it to the internet!" +msgstr "" + +#: src/Connections/WordpressConnection.vala:193 +msgid "Don't forget to share on reddit." +msgstr "Nezabudnite zdieľať na reddite." + +#: src/Connections/WordpressConnection.vala:194 +msgid "Pressing words together..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:149 +msgid "Simply Shakespearean." +msgstr "" + +#: src/Exporters/ExportPdf.vala:150 +msgid "Hmm... that's interesting..." +msgstr "Hmm... to je zaujímavé..." + +#: src/Exporters/ExportPdf.vala:151 +msgid "Your writing is insightful." +msgstr "" + +#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 +#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 +#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 +msgid "Connection Error" +msgstr "Chyba spojenia" + +#: src/Widgets/Preferences.vala:159 +msgid " Medium" +msgstr "" + +#: src/Widgets/Preferences.vala:193 +msgid " Forem" +msgstr "" + +#: src/Widgets/Preferences.vala:227 +msgid " Hashnode" +msgstr "" + +#: src/Constants/ThiefProperties.vala:92 +msgid "German Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:93 +msgid "Finnish Translation Contributors" +msgstr "" + +#: src/Connections/WordpressConnection.vala:89 +msgid "Application Password" +msgstr "" -#~ msgid " Search" -#~ msgstr " Hľadanie" diff --git a/po/sv.po b/po/sv.po index 1644492c..91538c13 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,323 +1,37 @@ msgid "" msgstr "" -"Project-Id-Version: ThiefMD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-06-26 11:34-0700\n" -"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: POEditor.com\n" +"Project-Id-Version: ThiefMD\n" +"Language: sv\n" -#: src/ThiefApp.vala:244 +#: src/ThiefApp.vala:309 msgid "HTML" msgstr "HTML" -#: src/ThiefApp.vala:245 +#: src/ThiefApp.vala:310 msgid "PDF" msgstr "PDF" -#: src/ThiefApp.vala:246 +#: src/ThiefApp.vala:311 msgid "MHTML" msgstr "MHTML" -#: src/ThiefApp.vala:247 +#: src/ThiefApp.vala:312 msgid "Markdown" msgstr "Markdown" -#: src/ThiefApp.vala:248 +#: src/ThiefApp.vala:313 msgid "LaTeX" msgstr "LaTeX" -#: src/ThiefApp.vala:249 +#: src/ThiefApp.vala:314 msgid "DocX" msgstr "DocX" -#: src/ThiefApp.vala:250 -msgid "Fountain" -msgstr "Fountain" - -#. Visual Settings -#. Arbitrary strings -#: src/Constants/AppSettings.vala:104 -#, c-format -msgid "" -"# Click on a sheet to get started\n" -"\n" -"First time here? Drag a folder into the library, or click on the Folder " -"icon to select a folder to add.\n" -"\n" -"## Thief Tip:\n" -"\n" -"%s" -msgstr "" -"Klicka på bladet för att komma igång\n" -"\n" -"Första gången här? Dra en mapp in till biblioteket, eller klicka på " -"mappikonen för att välja en mapp att lägga till.\n" -"\n" -"## Thief-tips:\n" -"\n" -"%s" - -#: src/Constants/ThiefProperties.vala:25 -msgid "The Markdown editor worth stealing" -msgstr "Markdown-redigerare värd att stjäla" - -#: src/Constants/ThiefProperties.vala:86 -msgid "Contributors who help make ThiefMD awesome" -msgstr "Bidragsgivare som hjälpt till att göra ThiefMD fantastisk" - -#: src/Constants/ThiefProperties.vala:87 -msgid "Czech Translation Contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:88 -msgid "French Translation Contributors" -msgstr "Fransk översättning" - -#: src/Constants/ThiefProperties.vala:89 -msgid "Slovak Translation Contributors" -msgstr "Slovakisk översättning" - -#: src/Constants/ThiefProperties.vala:90 -msgid "Swedish Translation Contributors" -msgstr "Svensk översättning" - -#: src/Constants/ThiefProperties.vala:91 -#, fuzzy -msgid "German Translation Contributors" -msgstr "Fransk översättning" - -#: src/Constants/ThiefProperties.vala:92 -#, fuzzy -msgid "Finnish Translation Contributors" -msgstr "Fransk översättning" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Original Code" -msgstr "Ursprunglig kod" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" -msgstr "Baserad på <a href='https://github.com/lainsce/quilter'>Quilter</a>" - -#: src/Constants/ThiefProperties.vala:93 src/Constants/ThiefProperties.vala:94 -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:101 -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -#: src/Constants/ThiefProperties.vala:105 -#: src/Constants/ThiefProperties.vala:106 -#: src/Constants/ThiefProperties.vala:107 -#: src/Constants/ThiefProperties.vala:108 -msgid "Copyright" -msgstr "Copyright" - -#: src/Constants/ThiefProperties.vala:93 -msgid "GNU General Public License v3.0" -msgstr "GNU General Public License v3.0" - -#: src/Constants/ThiefProperties.vala:94 -msgid "Stolen Victory Font" -msgstr "Stolen Victory Font" - -#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -msgid "SIL OPEN FONT LICENSE Version 1.1" -msgstr "SIL OPEN FONT LICENS Version 1.1" - -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -msgid "MIT License" -msgstr "MIT Licens" - -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Widgets/ThemeSelector.vala:50 -msgid "Font" -msgstr "Teckensnitt" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Preview CSS" -msgstr "Förhandsgranska CSS" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Mash up of Splendor and Modest" -msgstr "Mashup av Splendor and Modest" - -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:108 -msgid "The MIT License (MIT)" -msgstr "MIT Licens (MIT)" - -#: src/Constants/ThiefProperties.vala:100 -msgid "Fountain Preview and Export" -msgstr "Fountain förhandsgranskning och export" - -#: src/Constants/ThiefProperties.vala:101 -msgid "Markdown Parsing" -msgstr "Markdown-tolkning" - -#: src/Constants/ThiefProperties.vala:101 -msgid "BSD-style License" -msgstr "BSD-style Licens" - -#: src/Constants/ThiefProperties.vala:102 -msgid "Syntax Highlighting" -msgstr "Syntax-markering" - -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:106 -msgid "BSD-3-Clause License" -msgstr "BSD-3-Clause Licens" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Math Rendering" -msgstr "Matematikrendering" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Khan Academy and other contributors." -msgstr "Khan Academy och andra bidragsgivare." - -#: src/Constants/ThiefProperties.vala:104 -msgid "XML Parsing" -msgstr "XML-tolkning" - -#: src/Constants/ThiefProperties.vala:105 -msgid "Pandoc Export" -msgstr "Pandoc-export" - -#: src/Constants/ThiefProperties.vala:105 -msgid "John MacFarlane and others" -msgstr "John MacFarlane och andra" - -#: src/Constants/ThiefProperties.vala:105 -msgid "GNU General Public License v2.0" -msgstr "GNU General Public Licens v2.0" - -#: src/Constants/ThiefProperties.vala:106 -msgid "PDF Export" -msgstr "" - -#: src/Constants/ThiefProperties.vala:106 -msgid "Simon Sapin and contributors" -msgstr "" - -#: src/Constants/ThiefProperties.vala:107 -msgid "Grammar Check" -msgstr "Gramatikkontroll" - -#: src/Constants/ThiefProperties.vala:107 -msgid "the AbiSource Community" -msgstr "AbiSource-gemenskapen" - -#: src/Constants/ThiefProperties.vala:107 -msgid "GNU Lesser General Public License v2.1" -msgstr "GNU Lesser General Public License v2.1" - -#: src/Constants/ThiefProperties.vala:108 -msgid "libwritegood-vala based on" -msgstr "libwritegood-vala baserad på" - -#: src/Constants/ThiefProperties.vala:108 -msgid "write-good: Naive linter for English prose" -msgstr "skriv-bra: Naive linter för English prose" - -#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME -#: src/Constants/ThiefProperties.vala:112 -msgid "A3 (11.7 x 16.5 inches)" -msgstr "A3 (11.7 x 16.5 tum)" - -#: src/Constants/ThiefProperties.vala:113 -msgid "A4 (8 x 11 inches)" -msgstr "A4 (8 x 11 tum)" - -#: src/Constants/ThiefProperties.vala:114 -msgid "A5 (5.8 x 8.3 inches)" -msgstr "A5 (5.8 x 8.3 tum)" - -#: src/Constants/ThiefProperties.vala:115 -msgid "B5 (6.93 x 9.84 inches)" -msgstr "B5 (6.93 x 9.84 tum)" - -#: src/Constants/ThiefProperties.vala:116 -msgid "Executive (7 x 10 inches)" -msgstr "Executive (7 x 10 tum)" - -#: src/Constants/ThiefProperties.vala:117 -msgid "Legal (8.5 x 14 inches)" -msgstr "Legal (8.5 x 14 tum)" - -#: src/Constants/ThiefProperties.vala:118 -msgid "Letter (8.5 x 11 inches)" -msgstr "Letter (8.5 x 11 tum)" - -#: src/Constants/ThiefProperties.vala:121 -msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." -msgstr "" -"Gillar du inte vad du ser? Tryck \"Ctrl+,\" för att gå till inställningarna." - -#: src/Constants/ThiefProperties.vala:122 -msgid "" -"No built in dark mode? Dark themes are available at https://themes.thiefmd." -"com. Add more in the Preferences (`Ctrl+,`)." -msgstr "" -"Inget inbyggt mörkt läge? Mörka teman finns tillgängliga på https://themes." -"thiefmd.com. Lägg till fler i inställningarna (Ctrl+,)." - -#: src/Constants/ThiefProperties.vala:123 -msgid "" -"Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and " -"click Export." -msgstr "" -"Gillar du inte hur förhandsgranskningen ser ut? Tryck \"Ctrl+,\" för att " -"komma till inställningarna och tryck på Export." - -#: src/Constants/ThiefProperties.vala:124 -msgid "" -"Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." -msgstr "" -"Vill du importera en ePub HTML eller DocX? Importera från Nytt-blad-dialogen." - -#: src/Constants/ThiefProperties.vala:125 -msgid "" -"Ready to publish your great work? Right-click on the folder and choose " -"\"Export Preview\"" -msgstr "" -"Redo att publicera ditt arbete? Högerklicka på mappen och välj " -"\"Exportförhandsvisning\"" - -#: src/Constants/ThiefProperties.vala:126 -msgid "Want to block out distractions? Full-screen is just an `F11` away." -msgstr "Vill du ta bort distraktioner? Helskärmen är bara en F11 bort." - -#: src/Constants/ThiefProperties.vala:127 -msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." -msgstr "Växla visningslägen snabbt med Ctrl+1, Ctrl+2 och Ctrl+3." - -#: src/Constants/ThiefProperties.vala:128 -msgid "" -"Working with a lot of links? Turn on Experimental Mode to make your markdown " -"more readable `Ctrl+Shift+M`." -msgstr "" -"Arbetar du med många länkar? Slå på experimentellt läge för att göra din " -"markdown mer läsbar \"Ctrl+Shift+M\"" - -#: src/Controllers/FileManager.vala:39 -msgid "Stealing file contents..." -msgstr "" - -#: src/Controllers/FileManager.vala:40 -msgid "This isn't plagiarism, it's a remix!" -msgstr "" - -#: src/Controllers/FileManager.vala:41 -msgid "NYT Best Seller, here we come!" -msgstr "" - +#. Supported import file extensions #: src/Controllers/FileManager.vala:43 msgid "Importing File" msgstr "Importerar fil" @@ -370,15 +84,6 @@ msgstr "MHTML-filer" msgid "LaTeX file" msgstr "LaTeX-fil" -#: src/Controllers/Dialogs.vala:161 -msgid "Supported files" -msgstr "Filer som stöds" - -#: src/Controllers/Dialogs.vala:170 -#, c-format -msgid "%s files" -msgstr "%s filer" - #: src/Controllers/Dialogs.vala:177 msgid "All files" msgstr "Alla filer" @@ -407,16 +112,10 @@ msgstr "Om du inte sparar kommer ändringarna att förloras för alltid." msgid "Close without saving" msgstr "Stäng utan att spara" -#: src/Controllers/SheetManager.vala:157 src/Widgets/StatisticsBar.vala:93 +#: src/Controllers/SheetManager.vala:156 src/Widgets/StatisticsBar.vala:93 msgid "No file opened" msgstr "Ingen fil öppnad" -#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 -#: src/Widgets/PublisherPreviewWindow.vala:295 -#: src/Widgets/ProjectStatistics.vala:71 -msgid "Close" -msgstr "Stäng" - #: src/Connections/WriteFreelyConnection.vala:103 #: src/Connections/WordpressConnection.vala:85 msgid "Username" @@ -424,7 +123,6 @@ msgstr "Användarnamn" #: src/Connections/WriteFreelyConnection.vala:107 #: src/Connections/GhostConnection.vala:86 -#: src/Connections/WordpressConnection.vala:89 msgid "Password" msgstr "Lösenord" @@ -434,43 +132,21 @@ msgstr "Lösenord" msgid "Endpoint" msgstr "Slutpunkt" -#: src/Connections/WriteFreelyConnection.vala:127 -msgid "New WriteFreely Connection" -msgstr "Ny WriteFreely-anslutning" - #: src/Connections/WriteFreelyConnection.vala:130 #: src/Connections/GhostConnection.vala:109 #: src/Connections/WordpressConnection.vala:112 msgid "_Add Account" msgstr "_Lägg till konto" -#: src/Connections/WriteFreelyConnection.vala:233 -msgid "Taking your words, and letting them go... to the internet!" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:234 -msgid "Mhm... I see and I ship." -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:235 -msgid "Is this a selfie, and you're happy to see me?" -msgstr "" - -#: src/Connections/WriteFreelyConnection.vala:238 -#: src/Connections/GhostConnection.vala:197 -#: src/Connections/WordpressConnection.vala:198 -msgid "Uploading images" -msgstr "Laddar upp bilder" - #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid " Published" msgstr " Publicerat" #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid "Post Published" msgstr "Efter publicering" @@ -478,45 +154,11 @@ msgstr "Efter publicering" msgid "E-mail" msgstr "E-post" -#: src/Connections/GhostConnection.vala:106 -msgid "New ghost Connection" -msgstr "Ny ghost-anslutning" - -#: src/Connections/GhostConnection.vala:192 -msgid "Your words are like Casper... Friendly!" -msgstr "" - -#: src/Connections/GhostConnection.vala:193 -msgid "I see your words, and I'm taking them to the internet!" -msgstr "" - -#: src/Connections/GhostConnection.vala:194 -msgid "Booooooooooo! (That's Ghost speak for Great Work!)" -msgstr "" - -#: src/Connections/WordpressConnection.vala:109 -msgid "New Wordpress Connection" -msgstr "Ny Wordpress-anslutning" - -#: src/Connections/WordpressConnection.vala:191 -msgid "Taking it to the internet!" -msgstr "" - -#: src/Connections/WordpressConnection.vala:192 -msgid "Don't forget to share on reddit." -msgstr "" - -#: src/Connections/WordpressConnection.vala:193 -msgid "Pressing words together..." -msgstr "" - -#: src/Enrichments/Fountain.vala:32 -msgid "Characters" -msgstr "Tecken" - -#: src/Enrichments/Markdown.vala:30 -msgid "Citations" -msgstr "Citat" +#: src/Connections/WriteFreelyConnection.vala:238 +#: src/Connections/GhostConnection.vala:197 +#: src/Connections/WordpressConnection.vala:217 +msgid "Uploading images" +msgstr "Laddar upp bilder" #: src/Exporters/ExportDocx.vala:60 msgid "Export DocX" @@ -538,14 +180,6 @@ msgstr "Exportera LaTeX" msgid "Export Markdown" msgstr "Exportera Markdown" -#: src/Exporters/ExportFountain.vala:57 -msgid "Fountain files" -msgstr "Fountain-filer" - -#: src/Exporters/ExportFountain.vala:63 -msgid "Export Fountain" -msgstr "Exportera Fountain" - #: src/Exporters/ExportMhtml.vala:62 msgid "Export MHTML" msgstr "Exportera MHTML" @@ -554,18 +188,6 @@ msgstr "Exportera MHTML" msgid "Export PDF" msgstr "Exportera PDF" -#: src/Exporters/ExportPdf.vala:149 -msgid "Simply Shakespearean." -msgstr "" - -#: src/Exporters/ExportPdf.vala:150 -msgid "Hmm... that's interesting..." -msgstr "" - -#: src/Exporters/ExportPdf.vala:151 -msgid "Your writing is insightful." -msgstr "" - #: src/Exporters/ExportPdf.vala:153 src/Exporters/ExportPdf.vala:183 msgid "Working PDF Magic" msgstr "Fungerande PDF-magi" @@ -574,13 +196,17 @@ msgstr "Fungerande PDF-magi" msgid "Making sure your hard work looks purrfect..." msgstr "Tillser att ditt arbete ser perfekt ut..." -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:132 -#: src/Widgets/QuickPreferences.vala:216 src/Widgets/QuickPreferences.vala:295 +#: src/Exporters/ExportPdf.vala:107 +msgid "Print to File" +msgstr "Skriv ut som fil" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:146 +#: src/Widgets/QuickPreferences.vala:237 src/Widgets/QuickPreferences.vala:326 msgid "About ThiefMD" msgstr "Om ThiefMD" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:130 -#: src/Widgets/QuickPreferences.vala:214 src/Widgets/QuickPreferences.vala:293 +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:144 +#: src/Widgets/QuickPreferences.vala:235 src/Widgets/QuickPreferences.vala:324 msgid "About" msgstr "Om" @@ -588,44 +214,28 @@ msgstr "Om" msgid "Credits" msgstr "Erkännanden" -#. website = ThiefProperties.URL; -#: src/Widgets/About.vala:94 -msgid "Feedback" -msgstr "Återkoppling" - -#. license_type = ThiefProperties.LICENSE_TYPE; -#: src/Widgets/About.vala:99 -msgid "This program comes with absolutely no warranty." -msgstr "Detta program levereras helt utan garantier." - -#: src/Widgets/About.vala:100 -msgid "" -"See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General " -"Public License, version 3 or later</a> for details." -msgstr "" -"Se <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public " -"Licens, version 3 eller senare</a> för detaljerad info." +#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 +#: src/Widgets/PublisherPreviewWindow.vala:295 +#: src/Widgets/ProjectStatistics.vala:71 +msgid "Close" +msgstr "Stäng" -#: src/Widgets/HeaderBar.vala:86 +#: src/Widgets/Sheets.vala:179 msgid "New Sheet" msgstr "Nytt blad" -#: src/Widgets/HeaderBar.vala:98 +#: src/Widgets/HeaderBar.vala:78 msgid "Change View" msgstr "Ändra vyläge" -#: src/Widgets/HeaderBar.vala:106 +#: src/ThiefApp.vala:186 msgid "Add Folder to Library" msgstr "Lägg till mapp i biblioteket" -#: src/Widgets/HeaderBar.vala:129 +#: src/Widgets/HeaderBar.vala:92 msgid "Settings" msgstr "Inställningar" -#: src/Widgets/HeaderBar.vala:144 -msgid "Show Notes" -msgstr "Visa anteckningar" - #: src/Widgets/Sheet.vala:215 msgid "Sort by" msgstr "Sortera efter" @@ -654,30 +264,26 @@ msgstr "Sortera efter datum stigande" msgid "Sort by Date Descending" msgstr "Sortera efter datum fallande" -#: src/Widgets/Sheet.vala:261 src/Widgets/QuickPreferences.vala:95 -#: src/Widgets/QuickPreferences.vala:179 src/Widgets/QuickPreferences.vala:258 +#: src/Widgets/Sheet.vala:273 src/Widgets/QuickPreferences.vala:95 +#: src/Widgets/QuickPreferences.vala:195 src/Widgets/QuickPreferences.vala:279 msgid "Preview" msgstr "Förhandsgranska" -#: src/Widgets/Sheet.vala:269 src/Widgets/Preferences.vala:482 +#: src/Widgets/Sheet.vala:281 src/Widgets/Preferences.vala:482 #: src/Widgets/PublisherPreviewWindow.vala:155 #: src/Widgets/ProjectStatistics.vala:64 msgid "Export" msgstr "Exportera" -#: src/Widgets/Sheet.vala:277 -msgid "Copy File Path" -msgstr "Kopiera filsökväg" - #. Gtk.MenuItem menu_rename = new Gtk.MenuItem.with_label (_("Rename File")); #. menu_rename.activate.connect (() => { #. }); #. menu.add (menu_rename); -#: src/Widgets/Sheet.vala:293 +#: src/Widgets/Sheet.vala:305 msgid "Danger Zone" msgstr "Riskzon" -#: src/Widgets/Sheet.vala:299 +#: src/Widgets/Sheet.vala:311 msgid "Move to Trash" msgstr "Flytta till papperskorgen" @@ -689,128 +295,47 @@ msgstr "_Läs in från disk" msgid "_Keep what's in editor" msgstr "_Behåll vad som finns i redigeraren" -#: src/Widgets/Editor.vala:1263 +#: src/Widgets/Editor.vala:1278 msgid "Insert Datetime" msgstr "Infoga datumtid" -#: src/Widgets/Editor.vala:1281 +#: src/Widgets/Editor.vala:1296 msgid "Insert YAML Frontmatter" msgstr "Infoga YAML Frontmatter" -#: src/Widgets/Editor.vala:1379 -msgid "Insert Citation" -msgstr "Infoga citat" - -#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); -#: src/Widgets/Library.vala:73 -msgid "Library" -msgstr "Bibliotek" - -#: src/Widgets/Library.vala:538 +#: src/Widgets/Library.vala:539 msgid "Export Preview" msgstr "Exportförhandsvisning" -#: src/Widgets/Library.vala:548 +#: src/Widgets/Library.vala:549 msgid "Writing Statistics" msgstr "Skrivstatistik" -#: src/Widgets/Library.vala:561 +#: src/Widgets/Library.vala:562 msgid "Search " msgstr "Sök " -#: src/Widgets/Library.vala:573 -msgid "Open in File Manager" -msgstr "Öppna i filhanteraren" - -#: src/Widgets/Library.vala:585 +#: src/Widgets/Library.vala:586 msgid "Create Sub-Folder" msgstr "Skapa undermapp" -#: src/Widgets/Library.vala:602 +#: src/Widgets/Library.vala:603 msgid "Hide from Library" msgstr "Dölj från biblioteket" -#: src/Widgets/Library.vala:626 +#: src/Widgets/Library.vala:627 msgid "Show Hidden Items" msgstr "Visa dolda objekt" -#: src/Widgets/Library.vala:638 -msgid "Set Project Icon" -msgstr "Ange projektikon" - -#: src/Widgets/Library.vala:641 src/Widgets/Preferences.vala:389 -msgid "None" -msgstr "Inget" - -#: src/Widgets/Library.vala:644 -msgid "Folder" -msgstr "Mapp" - -#: src/Widgets/Library.vala:647 -msgid "Reader" -msgstr "Läsare" - -#: src/Widgets/Library.vala:650 -msgid "Love" -msgstr "Kärlek" - -#: src/Widgets/Library.vala:653 -msgid "Game" -msgstr "Spel" - -#: src/Widgets/Library.vala:656 -msgid "Art" -msgstr "Konst" - -#: src/Widgets/Library.vala:659 -msgid "Nature" -msgstr "Natur" - -#: src/Widgets/Library.vala:662 -msgid "Food" -msgstr "Mat" - -#: src/Widgets/Library.vala:665 -msgid "Help" -msgstr "Hjälp" - -#: src/Widgets/Library.vala:668 -msgid "Cool" -msgstr "Cool" - -#: src/Widgets/Library.vala:671 -msgid "Angel" -msgstr "Ängel" - -#: src/Widgets/Library.vala:674 -msgid "Monkey" -msgstr "Apa" - -#: src/Widgets/Library.vala:677 -msgid "WordPress" -msgstr "WordPress" - -#: src/Widgets/Library.vala:680 -msgid "Ghost" -msgstr "Gast" - -#: src/Widgets/Library.vala:683 -msgid "Write Freely" -msgstr "Skriv fritt" - -#: src/Widgets/Library.vala:686 -msgid "Trash" -msgstr "Skräp" - -#: src/Widgets/Library.vala:696 +#: src/Widgets/Library.vala:697 msgid "Remove from Library" msgstr "Ta bort från biblioteket" -#: src/Widgets/Library.vala:933 +#: src/Widgets/Library.vala:934 msgid "Copy" msgstr "Kopiera" -#: src/Widgets/Library.vala:935 +#: src/Widgets/Library.vala:936 msgid "Move" msgstr "Flytta" @@ -830,10 +355,6 @@ msgstr "Bladnamn" msgid "Create" msgstr "Skapa" -#: src/Widgets/NewSheet.vala:41 -msgid "Import" -msgstr "Importera" - #: src/Widgets/Preferences.vala:50 msgid "Current Connections" msgstr "Aktuella anslutningar" @@ -854,40 +375,10 @@ msgstr "Välj din bloggmjukvara." msgid " WriteFreely" msgstr " WriteFreely" -#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 -#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 -#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 -msgid "Connection Error" -msgstr "" - #: src/Widgets/Preferences.vala:91 msgid " ghost" msgstr " ghost" -#: src/Widgets/Preferences.vala:125 -msgid " WordPress" -msgstr " WordPress" - -#: src/Widgets/Preferences.vala:159 -msgid " Medium" -msgstr "" - -#: src/Widgets/Preferences.vala:193 -msgid " Forem" -msgstr "" - -#: src/Widgets/Preferences.vala:227 -msgid " Hashnode" -msgstr "" - -#: src/Widgets/Preferences.vala:279 -msgid "Connections" -msgstr "Anslutningar" - -#: src/Widgets/Preferences.vala:340 -msgid "Remove " -msgstr "Ta bort " - #: src/Widgets/Preferences.vala:343 msgid "_Remove" msgstr "_Ta bort" @@ -896,22 +387,14 @@ msgstr "_Ta bort" msgid "_Keep" msgstr "_Behåll" -#: src/Widgets/Preferences.vala:373 -msgid "Display" -msgstr "Visa" - -#: src/Widgets/Preferences.vala:377 -msgid "Display Options" -msgstr "Visningsalternativ" - -#: src/Widgets/Preferences.vala:378 -msgid "Make ThiefMD feel like home." -msgstr "Gör ThiefMD mer hemtam." - #: src/Widgets/Preferences.vala:384 msgid "Focus" msgstr "Fokus" +#: src/Widgets/Library.vala:642 src/Widgets/Preferences.vala:389 +msgid "None" +msgstr "Inget" + #: src/Widgets/Preferences.vala:390 msgid "Paragraph" msgstr "Stycke" @@ -924,33 +407,17 @@ msgstr "Mening" msgid "Word" msgstr "Ord" -#: src/Widgets/Preferences.vala:431 -msgid "Number of Lines to Preview in Sheets View" -msgstr "Antal rader att förhandsvisa i bladvy" - #: src/Widgets/Preferences.vala:440 msgid "Add New Theme" msgstr "Lägg till nytt tema" -#: src/Widgets/Preferences.vala:487 -msgid "Compiling Options" -msgstr "Kompileringsalternativ" - -#: src/Widgets/Preferences.vala:488 -msgid "Adjust how Markdown files are compiled together." -msgstr "Justera hur Markdown-filer kompileras." - #: src/Widgets/Preferences.vala:496 msgid "First Markdown File includes Author Metadata" msgstr "Första Markdown-filen inkluderar författares metadata" #: src/Widgets/Preferences.vala:498 -msgid "" -"First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>Author metadata</a>" -msgstr "" -"Första Markdown-filen inkluderar <a href='https://pandoc.org/MANUAL." -"html#epub-metadata'>författares metadata</a>" +msgid "First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Author metadata</a>" +msgstr "Första Markdown-filen inkluderar <a href='https://pandoc.org/MANUAL.html#epub-metadata'>författares metadata</a>" #: src/Widgets/Preferences.vala:514 msgid "Resolve full paths to resources" @@ -968,14 +435,6 @@ msgstr "Inkludera YAML-titel som rubrik" msgid "Include YAML title as H1 Heading" msgstr "Inkludera YAML-titel som H1-rubrik" -#: src/Widgets/Preferences.vala:543 -msgid "Page Setup" -msgstr "Sidinställning" - -#: src/Widgets/Preferences.vala:544 -msgid "Configure PDF export options." -msgstr "Konfigurera PDF-export." - #: src/Widgets/Preferences.vala:552 msgid "Page Break between Folders" msgstr "Sidbrytning mellan mappar" @@ -1000,41 +459,13 @@ msgstr "Sidmarginaler i PDF (i tum)" msgid "Top & Bottom margins in PDF in inches" msgstr "Över- och underkantsmarginaler i PDF (i tum)" -#: src/Widgets/Preferences.vala:641 -msgid "PDF CSS" -msgstr "PDF-CSS" +#: src/Widgets/Preferences.vala:657 +msgid "Add Export Style" +msgstr "Lägg till exportstil" -#: src/Widgets/Preferences.vala:642 -msgid "Choose CSS Style for PDF Export." -msgstr "Välj CSS-stil för PDF-export." - -#: src/Widgets/Preferences.vala:650 -msgid "ePub & HTML CSS" -msgstr "ePub- & HTML-CSS" - -#: src/Widgets/Preferences.vala:651 -msgid "Choose CSS Style to use for ePub and HTML Export." -msgstr "Välj CSS-stil för ePub- och HTML-export" - -#: src/Widgets/Preferences.vala:657 -msgid "Add Export Style" -msgstr "Lägg till exportstil" - -#: src/Widgets/Preferences.vala:680 -msgid "Editor" -msgstr "Redigerare" - -#: src/Widgets/Preferences.vala:684 -msgid "Editor Settings" -msgstr "Redigerarinställningar" - -#: src/Widgets/Preferences.vala:685 -msgid "Modify the ThiefMD environment." -msgstr "Ändra ThiefMD-miljön." - -#: src/Widgets/Preferences.vala:693 -msgid "Enable spellcheck" -msgstr "Aktivera stavningskontroll" +#: src/Widgets/Preferences.vala:693 +msgid "Enable spellcheck" +msgstr "Aktivera stavningskontroll" #: src/Widgets/Preferences.vala:695 msgid "Check document spelling" @@ -1064,22 +495,6 @@ msgstr "Skrivstatistik på/av" msgid "Show writing statistics" msgstr "Visa textstatistik" -#: src/Widgets/Preferences.vala:765 -msgid "Disable application tips" -msgstr "Avaktivera programtips" - -#: src/Widgets/Preferences.vala:766 -msgid "Start with new empty sheet on launch" -msgstr "Starta med nytt tomt blad vid uppstart" - -#: src/Widgets/Preferences.vala:779 -msgid "ThiefMD Settings" -msgstr "ThiefMD-inställningar" - -#: src/Widgets/Preferences.vala:780 -msgid "Modify the ThiefMD appearance." -msgstr "Ändra ThiefMD-utseendet." - #: src/Widgets/Preferences.vala:790 msgid "Toggle interface theming" msgstr "Växla gränssnittstema" @@ -1112,18 +527,10 @@ msgstr "Biblioteksordning på/av" msgid "Keep library order" msgstr "Bevara biblioteksordning" -#: src/Widgets/Preferences.vala:858 -msgid "Toggle experimental features" -msgstr "Experimentella funktioner på/av" - -#: src/Widgets/Preferences.vala:860 -msgid "Enable experimental features" -msgstr "Aktivera experimentella funktioner" - #: src/Widgets/PublisherPreviewWindow.vala:67 #: src/Widgets/PublisherPreviewWindow.vala:209 -#: src/Widgets/QuickPreferences.vala:104 src/Widgets/QuickPreferences.vala:188 -#: src/Widgets/QuickPreferences.vala:267 +#: src/Widgets/QuickPreferences.vala:109 src/Widgets/QuickPreferences.vala:204 +#: src/Widgets/QuickPreferences.vala:293 msgid "Publishing Preview" msgstr "Förhandsgranska publicering" @@ -1148,14 +555,11 @@ msgid "words" msgstr "ord" #: src/Widgets/ProjectStatistics.vala:126 -#, c-format -msgid "" -"<b>Reading Time:</b>\n" +msgid "<b>Reading Time:</b>\n" "%d %s\n" "%d %s\n" "%d %s" -msgstr "" -"<b>Lästid:</b>\n" +msgstr "<b>Lästid:</b>\n" "%d %s\n" "%d %s\n" "%d %s" @@ -1204,75 +608,41 @@ msgstr "Skriv-bra" msgid "Toggle Write Good" msgstr "Skriv-bra på/av" -#: src/Widgets/QuickPreferences.vala:71 -msgid "Check Grammar" -msgstr "Kontrollera grammatik " - -#: src/Widgets/QuickPreferences.vala:74 -msgid "Toggle Grammar Checking" -msgstr "Grammatikkontroll av/på" - -#: src/Widgets/QuickPreferences.vala:87 -msgid "Grammar check is not available for your language" -msgstr "Grammatikkontroll finns inte tillgängligt för ditt språk" - -#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:181 -#: src/Widgets/QuickPreferences.vala:260 +#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:197 +#: src/Widgets/QuickPreferences.vala:281 msgid "Launch Preview" msgstr "Starta förhandsgranskning" -#: src/Widgets/QuickPreferences.vala:106 src/Widgets/QuickPreferences.vala:190 -#: src/Widgets/QuickPreferences.vala:269 -msgid "Open Export Window" -msgstr "Öppna exportfönster" - -#: src/Widgets/QuickPreferences.vala:113 src/Widgets/QuickPreferences.vala:197 -#: src/Widgets/QuickPreferences.vala:276 -msgid "Search Library" -msgstr "Sök i biblioteket" - -#: src/Widgets/QuickPreferences.vala:115 src/Widgets/QuickPreferences.vala:199 -#: src/Widgets/QuickPreferences.vala:278 -msgid "Open Search Window" -msgstr "Öppna sökfönster" - -#: src/Widgets/QuickPreferences.vala:121 src/Widgets/QuickPreferences.vala:205 -#: src/Widgets/QuickPreferences.vala:284 +#: src/Widgets/QuickPreferences.vala:135 src/Widgets/QuickPreferences.vala:226 +#: src/Widgets/QuickPreferences.vala:315 msgid "Preferences" msgstr "Inställningar" -#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:207 -#: src/Widgets/QuickPreferences.vala:286 +#: src/Widgets/QuickPreferences.vala:137 src/Widgets/QuickPreferences.vala:228 +#: src/Widgets/QuickPreferences.vala:317 msgid "Edit Preferences" msgstr "Redigera inställningar" -#: src/Widgets/ThemeSelector.vala:55 -msgid "Spacing" -msgstr "Mellanslag" +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Widgets/ThemeSelector.vala:50 +msgid "Font" +msgstr "Teckensnitt" #: src/Widgets/ThemeSelector.vala:142 msgid "Font Selector" msgstr "Teckensnittsväljare" -#: src/Widgets/ThemeSelector.vala:326 -msgid "Download" -msgstr "Ladda ner" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "more themes" -msgstr "fler teman" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "Stored in" -msgstr "Lagrade i" +#: src/Widgets/ThemeSelector.vala:320 +msgid "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" +"<small>Stored in <a href='file://" +msgstr "Ladda ner <a href='https://themes.thiefmd.com/themes/'>fler teman</a>.\n" +"<small>Lagrade i <a href='file://" #: src/Widgets/SearchBar.vala:110 -#, c-format msgid "(%d occurences)" msgstr "(%d förekomster)" #: src/Widgets/StatisticsBar.vala:100 -#, c-format msgid "%d %s %d %s and %d %s reading time." msgstr "%d %s %d %s och %d %s lästid." @@ -1297,7 +667,6 @@ msgid "seconds" msgstr "sekunder" #: src/Widgets/StatisticsBar.vala:106 -#, c-format msgid "%s : %d words." msgstr "%s : %d ord." @@ -1305,8 +674,8 @@ msgstr "%s : %d ord." msgid "Library Search" msgstr "Bibliotekssök" -#: src/Widgets/SearchWindow.vala:421 -msgid "Search" +#: src/Widgets/SearchWindow.vala:422 +msgid " Search" msgstr "Sök" #: src/Widgets/SearchWindow.vala:445 @@ -1321,15 +690,611 @@ msgstr "<b>Stjäl filinnehåll...</b>" msgid "Heading" msgstr "Rubrik" -#~ msgid "Print to File" -#~ msgstr "Skriv ut som fil" +#. Font settings +#. Arbitrary strings +#: src/Constants/AppSettings.vala:104 +msgid "# Click on a sheet to get started\n" +"\n" +"First time here? Drag a folder into the library, or click on the Folder icon to select a folder to add.\n" +"\n" +"## Thief Tip:\n" +"\n" +"%s" +msgstr "Klicka på bladet för att komma igång\n" +"\n" +"Första gången här? Dra en mapp in till biblioteket, eller klicka på mappikonen för att välja en mapp att lägga till.\n" +"\n" +"## Thief-tips:\n" +"\n" +"%s" + +#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); +#: src/ThiefApp.vala:182 +msgid "Library" +msgstr "Bibliotek" + +#: src/Widgets/Preferences.vala:680 +msgid "Editor" +msgstr "Redigerare" + +#: src/Widgets/SearchWindow.vala:421 +msgid "Search" +msgstr "Sök" + +#: src/Widgets/QuickPreferences.vala:111 src/Widgets/QuickPreferences.vala:206 +#: src/Widgets/QuickPreferences.vala:295 +msgid "Open Export Window" +msgstr "Öppna exportfönster" + +#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:218 +#: src/Widgets/QuickPreferences.vala:307 +msgid "Search Library" +msgstr "Sök i biblioteket" + +#: src/Widgets/QuickPreferences.vala:125 src/Widgets/QuickPreferences.vala:220 +#: src/Widgets/QuickPreferences.vala:309 +msgid "Open Search Window" +msgstr "Öppna sökfönster" + +#: src/Widgets/ThemeSelector.vala:55 +msgid "Spacing" +msgstr "Mellanslag" + +#: src/Widgets/Preferences.vala:858 +msgid "Toggle experimental features" +msgstr "Experimentella funktioner på/av" + +#: src/Widgets/Preferences.vala:860 +msgid "Enable experimental features" +msgstr "Aktivera experimentella funktioner" + +#: src/Controllers/Dialogs.vala:161 +msgid "Supported files" +msgstr "Filer som stöds" + +#: src/Controllers/Dialogs.vala:170 +msgid "%s files" +msgstr "%s filer" + +#: src/Widgets/Library.vala:574 +msgid "Open in File Manager" +msgstr "Öppna i filhanteraren" + +#: src/Widgets/NewSheet.vala:41 +msgid "Import" +msgstr "Importera" + +#: src/Widgets/Preferences.vala:125 +msgid " WordPress" +msgstr " WordPress" + +#: src/Constants/ThiefProperties.vala:25 +msgid "The Markdown editor worth stealing" +msgstr "Markdown-redigerare värd att stjäla" + +#: src/Constants/ThiefProperties.vala:87 +msgid "Contributors who help make ThiefMD awesome" +msgstr "Bidragsgivare som hjälpt till att göra ThiefMD fantastisk" + +#: src/Constants/ThiefProperties.vala:89 +msgid "French Translation Contributors" +msgstr "Fransk översättning" + +#: src/Constants/ThiefProperties.vala:90 +msgid "Slovak Translation Contributors" +msgstr "Slovakisk översättning" + +#: src/Constants/ThiefProperties.vala:91 +msgid "Swedish Translation Contributors" +msgstr "Svensk översättning" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Original Code" +msgstr "Ursprunglig kod" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" +msgstr "Baserad på <a href='https://github.com/lainsce/quilter'>Quilter</a>" + +#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:95 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 +msgid "Copyright" +msgstr "Copyright" + +#: src/Constants/ThiefProperties.vala:94 +msgid "GNU General Public License v3.0" +msgstr "GNU General Public License v3.0" + +#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +msgid "SIL OPEN FONT LICENSE Version 1.1" +msgstr "SIL OPEN FONT LICENS Version 1.1" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Preview CSS" +msgstr "Förhandsgranska CSS" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Mash up of Splendor and Modest" +msgstr "Mashup av Splendor and Modest" + +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:109 +msgid "The MIT License (MIT)" +msgstr "MIT Licens (MIT)" + +#: src/Constants/ThiefProperties.vala:102 +msgid "Markdown Parsing" +msgstr "Markdown-tolkning" + +#: src/Constants/ThiefProperties.vala:102 +msgid "BSD-style License" +msgstr "BSD-style Licens" + +#: src/Constants/ThiefProperties.vala:103 +msgid "Syntax Highlighting" +msgstr "Syntax-markering" + +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:107 +msgid "BSD-3-Clause License" +msgstr "BSD-3-Clause Licens" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Math Rendering" +msgstr "Matematikrendering" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Khan Academy and other contributors." +msgstr "Khan Academy och andra bidragsgivare." + +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +msgid "MIT License" +msgstr "MIT Licens" + +#: src/Constants/ThiefProperties.vala:105 +msgid "XML Parsing" +msgstr "XML-tolkning" + +#: src/Constants/ThiefProperties.vala:106 +msgid "Pandoc Export" +msgstr "Pandoc-export" -#~ msgid "" -#~ "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" -#~ "<small>Stored in <a href='file://" -#~ msgstr "" -#~ "Ladda ner <a href='https://themes.thiefmd.com/themes/'>fler teman</a>.\n" -#~ "<small>Lagrade i <a href='file://" +#: src/Constants/ThiefProperties.vala:106 +msgid "John MacFarlane and others" +msgstr "John MacFarlane och andra" + +#: src/Constants/ThiefProperties.vala:106 +msgid "GNU General Public License v2.0" +msgstr "GNU General Public Licens v2.0" + +#: src/Constants/ThiefProperties.vala:109 +msgid "libwritegood-vala based on" +msgstr "libwritegood-vala baserad på" + +#: src/Constants/ThiefProperties.vala:109 +msgid "write-good: Naive linter for English prose" +msgstr "skriv-bra: Naive linter för English prose" + +#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME +#: src/Constants/ThiefProperties.vala:113 +msgid "A3 (11.7 x 16.5 inches)" +msgstr "A3 (11.7 x 16.5 tum)" + +#: src/Constants/ThiefProperties.vala:114 +msgid "A4 (8 x 11 inches)" +msgstr "A4 (8 x 11 tum)" + +#: src/Constants/ThiefProperties.vala:115 +msgid "A5 (5.8 x 8.3 inches)" +msgstr "A5 (5.8 x 8.3 tum)" + +#: src/Constants/ThiefProperties.vala:116 +msgid "B5 (6.93 x 9.84 inches)" +msgstr "B5 (6.93 x 9.84 tum)" + +#: src/Constants/ThiefProperties.vala:117 +msgid "Executive (7 x 10 inches)" +msgstr "Executive (7 x 10 tum)" + +#: src/Constants/ThiefProperties.vala:118 +msgid "Legal (8.5 x 14 inches)" +msgstr "Legal (8.5 x 14 tum)" + +#: src/Constants/ThiefProperties.vala:119 +msgid "Letter (8.5 x 11 inches)" +msgstr "Letter (8.5 x 11 tum)" + +#: src/Constants/ThiefProperties.vala:122 +msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." +msgstr "Gillar du inte vad du ser? Tryck \"Ctrl+,\" för att gå till inställningarna." + +#: src/Constants/ThiefProperties.vala:123 +msgid "No built in dark mode? Dark themes are available at https://themes.thiefmd.com. Add more in the Preferences (`Ctrl+,`)." +msgstr "Inget inbyggt mörkt läge? Mörka teman finns tillgängliga på https://themes.thiefmd.com. Lägg till fler i inställningarna (Ctrl+,)." + +#: src/Constants/ThiefProperties.vala:124 +msgid "Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and click Export." +msgstr "Gillar du inte hur förhandsgranskningen ser ut? Tryck \"Ctrl+,\" för att komma till inställningarna och tryck på Export." + +#: src/Constants/ThiefProperties.vala:125 +msgid "Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." +msgstr "Vill du importera en ePub HTML eller DocX? Importera från Nytt-blad-dialogen." + +#: src/Constants/ThiefProperties.vala:126 +msgid "Ready to publish your great work? Right-click on the folder and choose \"Export Preview\"" +msgstr "Redo att publicera ditt arbete? Högerklicka på mappen och välj \"Exportförhandsvisning\"" + +#: src/Constants/ThiefProperties.vala:127 +msgid "Want to block out distractions? Full-screen is just an `F11` away." +msgstr "Vill du ta bort distraktioner? Helskärmen är bara en F11 bort." + +#: src/Constants/ThiefProperties.vala:128 +msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." +msgstr "Växla visningslägen snabbt med Ctrl+1, Ctrl+2 och Ctrl+3." + +#: src/Constants/ThiefProperties.vala:129 +msgid "Working with a lot of links? Turn on Experimental Mode to make your markdown more readable `Ctrl+Shift+M`." +msgstr "Arbetar du med många länkar? Slå på experimentellt läge för att göra din markdown mer läsbar \"Ctrl+Shift+M\"" + +#: src/Connections/WriteFreelyConnection.vala:127 +msgid "New WriteFreely Connection" +msgstr "Ny WriteFreely-anslutning" + +#: src/Connections/GhostConnection.vala:106 +msgid "New ghost Connection" +msgstr "Ny ghost-anslutning" + +#: src/Connections/WordpressConnection.vala:109 +msgid "New Wordpress Connection" +msgstr "Ny Wordpress-anslutning" + +#. website = ThiefProperties.URL; +#: src/Widgets/About.vala:94 +msgid "Feedback" +msgstr "Återkoppling" + +#. license_type = ThiefProperties.LICENSE_TYPE; +#: src/Widgets/About.vala:99 +msgid "This program comes with absolutely no warranty." +msgstr "Detta program levereras helt utan garantier." + +#: src/Widgets/About.vala:100 +msgid "See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, version 3 or later</a> for details." +msgstr "Se <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public Licens, version 3 eller senare</a> för detaljerad info." + +#: src/Widgets/Preferences.vala:279 +msgid "Connections" +msgstr "Anslutningar" + +#: src/Widgets/Preferences.vala:340 +msgid "Remove " +msgstr "Ta bort " + +#: src/Widgets/Preferences.vala:373 +msgid "Display" +msgstr "Visa" + +#: src/Widgets/Preferences.vala:377 +msgid "Display Options" +msgstr "Visningsalternativ" + +#: src/Widgets/Preferences.vala:378 +msgid "Make ThiefMD feel like home." +msgstr "Gör ThiefMD mer hemtam." + +#: src/Widgets/Preferences.vala:487 +msgid "Compiling Options" +msgstr "Kompileringsalternativ" + +#: src/Widgets/Preferences.vala:488 +msgid "Adjust how Markdown files are compiled together." +msgstr "Justera hur Markdown-filer kompileras." + +#: src/Widgets/Preferences.vala:543 +msgid "Page Setup" +msgstr "Sidinställning" + +#: src/Widgets/Preferences.vala:544 +msgid "Configure PDF export options." +msgstr "Konfigurera PDF-export." + +#: src/Widgets/Preferences.vala:641 +msgid "PDF CSS" +msgstr "PDF-CSS" + +#: src/Widgets/Preferences.vala:642 +msgid "Choose CSS Style for PDF Export." +msgstr "Välj CSS-stil för PDF-export." + +#: src/Widgets/Preferences.vala:650 +msgid "ePub & HTML CSS" +msgstr "ePub- & HTML-CSS" + +#: src/Widgets/Preferences.vala:651 +msgid "Choose CSS Style to use for ePub and HTML Export." +msgstr "Välj CSS-stil för ePub- och HTML-export" + +#: src/Widgets/Preferences.vala:684 +msgid "Editor Settings" +msgstr "Redigerarinställningar" + +#: src/Widgets/Preferences.vala:685 +msgid "Modify the ThiefMD environment." +msgstr "Ändra ThiefMD-miljön." + +#: src/Widgets/Preferences.vala:779 +msgid "ThiefMD Settings" +msgstr "ThiefMD-inställningar" + +#: src/Widgets/Preferences.vala:780 +msgid "Modify the ThiefMD appearance." +msgstr "Ändra ThiefMD-utseendet." + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Download" +msgstr "Ladda ner" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "more themes" +msgstr "fler teman" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Stored in" +msgstr "Lagrade i" + +#: src/ThiefApp.vala:315 +msgid "Fountain" +msgstr "Fountain" + +#: src/Constants/ThiefProperties.vala:101 +msgid "Fountain Preview and Export" +msgstr "Fountain förhandsgranskning och export" + +#: src/Exporters/ExportFountain.vala:57 +msgid "Fountain files" +msgstr "Fountain-filer" + +#: src/Exporters/ExportFountain.vala:63 +msgid "Export Fountain" +msgstr "Exportera Fountain" + +#: src/Widgets/HeaderBar.vala:107 +msgid "Show Notes" +msgstr "Visa anteckningar" + +#: src/Widgets/Sheet.vala:289 +msgid "Copy File Path" +msgstr "Kopiera filsökväg" + +#: src/Widgets/Editor.vala:1394 +msgid "Insert Citation" +msgstr "Infoga citat" + +#: src/Widgets/Library.vala:639 +msgid "Set Project Icon" +msgstr "Ange projektikon" + +#: src/Widgets/Library.vala:645 +msgid "Folder" +msgstr "Mapp" + +#: src/Widgets/Library.vala:648 +msgid "Reader" +msgstr "Läsare" + +#: src/Widgets/Library.vala:651 +msgid "Love" +msgstr "Kärlek" + +#: src/Widgets/Library.vala:654 +msgid "Game" +msgstr "Spel" + +#: src/Widgets/Library.vala:657 +msgid "Art" +msgstr "Konst" + +#: src/Widgets/Library.vala:660 +msgid "Nature" +msgstr "Natur" + +#: src/Widgets/Library.vala:663 +msgid "Food" +msgstr "Mat" + +#: src/Widgets/Library.vala:666 +msgid "Help" +msgstr "Hjälp" + +#: src/Widgets/Library.vala:669 +msgid "Cool" +msgstr "Cool" + +#: src/Widgets/Library.vala:672 +msgid "Angel" +msgstr "Ängel" + +#: src/Widgets/Library.vala:675 +msgid "Monkey" +msgstr "Apa" + +#: src/Widgets/Library.vala:678 +msgid "WordPress" +msgstr "WordPress" + +#: src/Widgets/Library.vala:681 +msgid "Ghost" +msgstr "Gast" + +#: src/Widgets/Library.vala:684 +msgid "Write Freely" +msgstr "Skriv fritt" + +#: src/Widgets/Library.vala:687 +msgid "Trash" +msgstr "Skräp" + +#: src/Widgets/Preferences.vala:431 +msgid "Number of Lines to Preview in Sheets View" +msgstr "Antal rader att förhandsvisa i bladvy" + +#: src/Widgets/Preferences.vala:765 +msgid "Disable application tips" +msgstr "Avaktivera programtips" + +#: src/Widgets/Preferences.vala:766 +msgid "Start with new empty sheet on launch" +msgstr "Starta med nytt tomt blad vid uppstart" + +#: src/Enrichments/Fountain.vala:32 +msgid "Characters" +msgstr "Tecken" + +#: src/Enrichments/Markdown.vala:30 +msgid "Citations" +msgstr "Citat" + +#: src/Constants/ThiefProperties.vala:95 +msgid "Stolen Victory Font" +msgstr "Stolen Victory Font" + +#: src/Constants/ThiefProperties.vala:108 +msgid "Grammar Check" +msgstr "Gramatikkontroll" + +#: src/Constants/ThiefProperties.vala:108 +msgid "the AbiSource Community" +msgstr "AbiSource-gemenskapen" + +#: src/Constants/ThiefProperties.vala:108 +msgid "GNU Lesser General Public License v2.1" +msgstr "GNU Lesser General Public License v2.1" + +#: src/Widgets/QuickPreferences.vala:71 +msgid "Check Grammar" +msgstr "Kontrollera grammatik " + +#: src/Widgets/QuickPreferences.vala:74 +msgid "Toggle Grammar Checking" +msgstr "Grammatikkontroll av/på" + +#: src/Widgets/QuickPreferences.vala:87 +msgid "Grammar check is not available for your language" +msgstr "Grammatikkontroll finns inte tillgängligt för ditt språk" + +#: src/Constants/ThiefProperties.vala:88 +msgid "Czech Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "PDF Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "Simon Sapin and contributors" +msgstr "" + +#: src/Controllers/FileManager.vala:39 +msgid "Stealing file contents..." +msgstr "" + +#: src/Controllers/FileManager.vala:40 +msgid "This isn't plagiarism, it's a remix!" +msgstr "" + +#: src/Controllers/FileManager.vala:41 +msgid "NYT Best Seller, here we come!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:233 +msgid "Taking your words, and letting them go... to the internet!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:234 +msgid "Mhm... I see and I ship." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:235 +msgid "Is this a selfie, and you're happy to see me?" +msgstr "" + +#: src/Connections/GhostConnection.vala:192 +msgid "Your words are like Casper... Friendly!" +msgstr "" + +#: src/Connections/GhostConnection.vala:193 +msgid "I see your words, and I'm taking them to the internet!" +msgstr "" + +#: src/Connections/GhostConnection.vala:194 +msgid "Booooooooooo! (That's Ghost speak for Great Work!)" +msgstr "" + +#: src/Connections/WordpressConnection.vala:192 +msgid "Taking it to the internet!" +msgstr "" + +#: src/Connections/WordpressConnection.vala:193 +msgid "Don't forget to share on reddit." +msgstr "" + +#: src/Connections/WordpressConnection.vala:194 +msgid "Pressing words together..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:149 +msgid "Simply Shakespearean." +msgstr "" + +#: src/Exporters/ExportPdf.vala:150 +msgid "Hmm... that's interesting..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:151 +msgid "Your writing is insightful." +msgstr "" + +#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 +#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 +#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 +msgid "Connection Error" +msgstr "" + +#: src/Widgets/Preferences.vala:159 +msgid " Medium" +msgstr "" + +#: src/Widgets/Preferences.vala:193 +msgid " Forem" +msgstr "" + +#: src/Widgets/Preferences.vala:227 +msgid " Hashnode" +msgstr "" + +#: src/Constants/ThiefProperties.vala:92 +msgid "German Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:93 +msgid "Finnish Translation Contributors" +msgstr "" + +#: src/Connections/WordpressConnection.vala:89 +msgid "Application Password" +msgstr "" -#~ msgid " Search" -#~ msgstr "Sök" diff --git a/po/tr.po b/po/tr.po new file mode 100644 index 00000000..fdddc708 --- /dev/null +++ b/po/tr.po @@ -0,0 +1,1290 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: POEditor.com\n" +"Project-Id-Version: ThiefMD\n" +"Language: tr\n" + +#: src/ThiefApp.vala:309 +msgid "HTML" +msgstr "" + +#: src/ThiefApp.vala:310 +msgid "PDF" +msgstr "" + +#: src/ThiefApp.vala:311 +msgid "MHTML" +msgstr "" + +#: src/ThiefApp.vala:312 +msgid "Markdown" +msgstr "" + +#: src/ThiefApp.vala:313 +msgid "LaTeX" +msgstr "" + +#: src/ThiefApp.vala:314 +msgid "DocX" +msgstr "" + +#. Supported import file extensions +#: src/Controllers/FileManager.vala:43 +msgid "Importing File" +msgstr "" + +#: src/Controllers/Dialogs.vala:26 src/Controllers/Dialogs.vala:59 +msgid "_Save" +msgstr "" + +#: src/Controllers/Dialogs.vala:27 src/Controllers/Dialogs.vala:55 +#: src/Connections/WriteFreelyConnection.vala:132 +#: src/Connections/GhostConnection.vala:111 +#: src/Connections/WordpressConnection.vala:114 +msgid "_Cancel" +msgstr "" + +#: src/Controllers/Dialogs.vala:57 +msgid "_Open" +msgstr "" + +#: src/Controllers/Dialogs.vala:61 +msgid "_Add to Library" +msgstr "" + +#: src/Controllers/Dialogs.vala:70 src/Exporters/ExportPdf.vala:88 +msgid "PDF file" +msgstr "" + +#: src/Controllers/Dialogs.vala:76 src/Exporters/ExportEpub.vala:55 +msgid "ePUB file" +msgstr "" + +#: src/Controllers/Dialogs.vala:82 src/Exporters/ExportDocx.vala:55 +msgid "docx file" +msgstr "" + +#: src/Controllers/Dialogs.vala:88 src/Controllers/Dialogs.vala:153 +#: src/Exporters/ExportMarkdown.vala:55 +msgid "Markdown files" +msgstr "" + +#: src/Controllers/Dialogs.vala:95 src/Exporters/ExportHtml.vala:56 +msgid "HTML files" +msgstr "" + +#: src/Controllers/Dialogs.vala:102 src/Exporters/ExportMhtml.vala:56 +msgid "MHTML files" +msgstr "" + +#: src/Controllers/Dialogs.vala:109 src/Exporters/ExportLatex.vala:55 +msgid "LaTeX file" +msgstr "" + +#: src/Controllers/Dialogs.vala:177 +msgid "All files" +msgstr "" + +#: src/Controllers/Dialogs.vala:186 +msgid "Add to Library" +msgstr "" + +#: src/Controllers/Dialogs.vala:196 +msgid "Open file" +msgstr "" + +#: src/Controllers/Dialogs.vala:208 +msgid "Save file" +msgstr "" + +#: src/Controllers/Dialogs.vala:222 +msgid "There are unsaved changes to the file. Do you want to save?" +msgstr "" + +#: src/Controllers/Dialogs.vala:223 +msgid "If you don't save, changes will be lost forever." +msgstr "" + +#: src/Controllers/Dialogs.vala:228 +msgid "Close without saving" +msgstr "" + +#: src/Controllers/SheetManager.vala:156 src/Widgets/StatisticsBar.vala:93 +msgid "No file opened" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:103 +#: src/Connections/WordpressConnection.vala:85 +msgid "Username" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:107 +#: src/Connections/GhostConnection.vala:86 +msgid "Password" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:112 +#: src/Connections/GhostConnection.vala:91 +#: src/Connections/WordpressConnection.vala:94 +msgid "Endpoint" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:130 +#: src/Connections/GhostConnection.vala:109 +#: src/Connections/WordpressConnection.vala:112 +msgid "_Add Account" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:318 +#: src/Connections/GhostConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 +msgid " Published" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:318 +#: src/Connections/GhostConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 +msgid "Post Published" +msgstr "" + +#: src/Connections/GhostConnection.vala:82 +msgid "E-mail" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:238 +#: src/Connections/GhostConnection.vala:197 +#: src/Connections/WordpressConnection.vala:217 +msgid "Uploading images" +msgstr "" + +#: src/Exporters/ExportDocx.vala:60 +msgid "Export DocX" +msgstr "" + +#: src/Exporters/ExportEpub.vala:60 +msgid "Export ePUB" +msgstr "" + +#: src/Exporters/ExportHtml.vala:62 +msgid "Export HTML" +msgstr "" + +#: src/Exporters/ExportLatex.vala:60 +msgid "Export LaTeX" +msgstr "" + +#: src/Exporters/ExportMarkdown.vala:61 +msgid "Export Markdown" +msgstr "" + +#: src/Exporters/ExportMhtml.vala:62 +msgid "Export MHTML" +msgstr "" + +#: src/Exporters/ExportPdf.vala:93 +msgid "Export PDF" +msgstr "" + +#: src/Exporters/ExportPdf.vala:153 src/Exporters/ExportPdf.vala:183 +msgid "Working PDF Magic" +msgstr "" + +#: src/Exporters/ExportPdf.vala:184 +msgid "Making sure your hard work looks purrfect..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:107 +msgid "Print to File" +msgstr "" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:146 +#: src/Widgets/QuickPreferences.vala:237 src/Widgets/QuickPreferences.vala:326 +msgid "About ThiefMD" +msgstr "" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:144 +#: src/Widgets/QuickPreferences.vala:235 src/Widgets/QuickPreferences.vala:324 +msgid "About" +msgstr "" + +#: src/Widgets/About.vala:45 +msgid "Credits" +msgstr "" + +#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 +#: src/Widgets/PublisherPreviewWindow.vala:295 +#: src/Widgets/ProjectStatistics.vala:71 +msgid "Close" +msgstr "" + +#: src/Widgets/Sheets.vala:179 +msgid "New Sheet" +msgstr "" + +#: src/Widgets/HeaderBar.vala:78 +msgid "Change View" +msgstr "" + +#: src/ThiefApp.vala:186 +msgid "Add Folder to Library" +msgstr "" + +#: src/Widgets/HeaderBar.vala:92 +msgid "Settings" +msgstr "" + +#: src/Widgets/Sheet.vala:215 +msgid "Sort by" +msgstr "" + +#: src/Widgets/Sheet.vala:218 +msgid "Sort by Filename Ascending" +msgstr "" + +#: src/Widgets/Sheet.vala:224 +msgid "Sort by Filename Descending" +msgstr "" + +#: src/Widgets/Sheet.vala:231 +msgid "Sort by Title Ascending" +msgstr "" + +#: src/Widgets/Sheet.vala:237 +msgid "Sort by Title Descending" +msgstr "" + +#: src/Widgets/Sheet.vala:244 +msgid "Sort by Date Ascending" +msgstr "" + +#: src/Widgets/Sheet.vala:250 +msgid "Sort by Date Descending" +msgstr "" + +#: src/Widgets/Sheet.vala:273 src/Widgets/QuickPreferences.vala:95 +#: src/Widgets/QuickPreferences.vala:195 src/Widgets/QuickPreferences.vala:279 +msgid "Preview" +msgstr "" + +#: src/Widgets/Sheet.vala:281 src/Widgets/Preferences.vala:482 +#: src/Widgets/PublisherPreviewWindow.vala:155 +#: src/Widgets/ProjectStatistics.vala:64 +msgid "Export" +msgstr "" + +#. Gtk.MenuItem menu_rename = new Gtk.MenuItem.with_label (_("Rename File")); +#. menu_rename.activate.connect (() => { +#. }); +#. menu.add (menu_rename); +#: src/Widgets/Sheet.vala:305 +msgid "Danger Zone" +msgstr "" + +#: src/Widgets/Sheet.vala:311 +msgid "Move to Trash" +msgstr "" + +#: src/Widgets/Editor.vala:236 +msgid "_Load from disk" +msgstr "" + +#: src/Widgets/Editor.vala:238 +msgid "_Keep what's in editor" +msgstr "" + +#: src/Widgets/Editor.vala:1278 +msgid "Insert Datetime" +msgstr "" + +#: src/Widgets/Editor.vala:1296 +msgid "Insert YAML Frontmatter" +msgstr "" + +#: src/Widgets/Library.vala:539 +msgid "Export Preview" +msgstr "" + +#: src/Widgets/Library.vala:549 +msgid "Writing Statistics" +msgstr "" + +#: src/Widgets/Library.vala:562 +msgid "Search " +msgstr "" + +#: src/Widgets/Library.vala:586 +msgid "Create Sub-Folder" +msgstr "" + +#: src/Widgets/Library.vala:603 +msgid "Hide from Library" +msgstr "" + +#: src/Widgets/Library.vala:627 +msgid "Show Hidden Items" +msgstr "" + +#: src/Widgets/Library.vala:697 +msgid "Remove from Library" +msgstr "" + +#: src/Widgets/Library.vala:934 +msgid "Copy" +msgstr "" + +#: src/Widgets/Library.vala:936 +msgid "Move" +msgstr "" + +#: src/Widgets/NewFolder.vala:31 +msgid "Folder name" +msgstr "" + +#: src/Widgets/NewFolder.vala:34 +msgid "mkdir" +msgstr "" + +#: src/Widgets/NewSheet.vala:37 +msgid "Sheet name" +msgstr "" + +#: src/Widgets/NewSheet.vala:40 +msgid "Create" +msgstr "" + +#: src/Widgets/Preferences.vala:50 +msgid "Current Connections" +msgstr "" + +#: src/Widgets/Preferences.vala:51 +msgid "Click on a connection to remove." +msgstr "" + +#: src/Widgets/Preferences.vala:54 +msgid "Add Connection" +msgstr "" + +#: src/Widgets/Preferences.vala:55 +msgid "Choose your blogging software." +msgstr "" + +#: src/Widgets/Preferences.vala:57 +msgid " WriteFreely" +msgstr "" + +#: src/Widgets/Preferences.vala:91 +msgid " ghost" +msgstr "" + +#: src/Widgets/Preferences.vala:343 +msgid "_Remove" +msgstr "" + +#: src/Widgets/Preferences.vala:345 +msgid "_Keep" +msgstr "" + +#: src/Widgets/Preferences.vala:384 +msgid "Focus" +msgstr "" + +#: src/Widgets/Library.vala:642 src/Widgets/Preferences.vala:389 +msgid "None" +msgstr "" + +#: src/Widgets/Preferences.vala:390 +msgid "Paragraph" +msgstr "" + +#: src/Widgets/Preferences.vala:391 +msgid "Sentence" +msgstr "" + +#: src/Widgets/Preferences.vala:392 +msgid "Word" +msgstr "" + +#: src/Widgets/Preferences.vala:440 +msgid "Add New Theme" +msgstr "" + +#: src/Widgets/Preferences.vala:496 +msgid "First Markdown File includes Author Metadata" +msgstr "" + +#: src/Widgets/Preferences.vala:498 +msgid "First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Author metadata</a>" +msgstr "" + +#: src/Widgets/Preferences.vala:514 +msgid "Resolve full paths to resources" +msgstr "" + +#: src/Widgets/Preferences.vala:516 +msgid "Resolve full paths to resources on export" +msgstr "" + +#: src/Widgets/Preferences.vala:531 +msgid "Include YAML title as Heading" +msgstr "" + +#: src/Widgets/Preferences.vala:533 +msgid "Include YAML title as H1 Heading" +msgstr "" + +#: src/Widgets/Preferences.vala:552 +msgid "Page Break between Folders" +msgstr "" + +#: src/Widgets/Preferences.vala:554 +msgid "Insert a Page Break after each folder" +msgstr "" + +#: src/Widgets/Preferences.vala:569 +msgid "Page Break between Sheets" +msgstr "" + +#: src/Widgets/Preferences.vala:571 +msgid "Insert a Page Break after each sheet" +msgstr "" + +#: src/Widgets/Preferences.vala:611 +msgid "Side margins in PDF in inches" +msgstr "" + +#: src/Widgets/Preferences.vala:631 +msgid "Top & Bottom margins in PDF in inches" +msgstr "" + +#: src/Widgets/Preferences.vala:657 +msgid "Add Export Style" +msgstr "" + +#: src/Widgets/Preferences.vala:693 +msgid "Enable spellcheck" +msgstr "" + +#: src/Widgets/Preferences.vala:695 +msgid "Check document spelling" +msgstr "" + +#: src/Widgets/Preferences.vala:709 +msgid "Enable Write-Good" +msgstr "" + +#: src/Widgets/Preferences.vala:713 +msgid "Enable Write-Good: recommendations for sentence structure" +msgstr "" + +#: src/Widgets/Preferences.vala:728 +msgid "Toggle typewriter scrolling" +msgstr "" + +#: src/Widgets/Preferences.vala:729 +msgid "Enable typewriter focus mode" +msgstr "" + +#: src/Widgets/Preferences.vala:749 +msgid "Toggle writing statistics" +msgstr "" + +#: src/Widgets/Preferences.vala:750 +msgid "Show writing statistics" +msgstr "" + +#: src/Widgets/Preferences.vala:790 +msgid "Toggle interface theming" +msgstr "" + +#: src/Widgets/Preferences.vala:791 +msgid "Apply theme to interface" +msgstr "" + +#: src/Widgets/Preferences.vala:810 +msgid "Toggle auto-hide headerbar" +msgstr "" + +#: src/Widgets/Preferences.vala:812 +msgid "Automatically hide headerbar" +msgstr "" + +#: src/Widgets/Preferences.vala:826 +msgid "Hide title" +msgstr "" + +#: src/Widgets/Preferences.vala:828 +msgid "Remove ThiefMD branding" +msgstr "" + +#: src/Widgets/Preferences.vala:842 +msgid "Toggle library order" +msgstr "" + +#: src/Widgets/Preferences.vala:844 +msgid "Keep library order" +msgstr "" + +#: src/Widgets/PublisherPreviewWindow.vala:67 +#: src/Widgets/PublisherPreviewWindow.vala:209 +#: src/Widgets/QuickPreferences.vala:109 src/Widgets/QuickPreferences.vala:204 +#: src/Widgets/QuickPreferences.vala:293 +msgid "Publishing Preview" +msgstr "" + +#: src/Widgets/PublisherPreviewWindow.vala:157 +msgid "Export Item" +msgstr "" + +#: src/Widgets/PublisherPreviewWindow.vala:194 +msgid "File not Exported" +msgstr "" + +#: src/Widgets/PublisherPreviewWindow.vala:195 +msgid "ThiefMD could not export the file, please try again." +msgstr "" + +#: src/Widgets/ProjectStatistics.vala:83 +msgid "Refresh Statistics" +msgstr "" + +#: src/Widgets/ProjectStatistics.vala:125 +msgid "words" +msgstr "" + +#: src/Widgets/ProjectStatistics.vala:126 +msgid "<b>Reading Time:</b>\n" +"%d %s\n" +"%d %s\n" +"%d %s" +msgstr "" + +#: src/Widgets/ProjectStatistics.vala:127 +msgid "Hour" +msgstr "" + +#: src/Widgets/ProjectStatistics.vala:127 +msgid "Hours" +msgstr "" + +#: src/Widgets/ProjectStatistics.vala:128 +msgid "Minute" +msgstr "" + +#: src/Widgets/ProjectStatistics.vala:128 +msgid "Minutes" +msgstr "" + +#: src/Widgets/ProjectStatistics.vala:129 +msgid "Seconds" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:41 +msgid "Typewriter Scrolling" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:44 +msgid "Toggle Typewriter Scrolling" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:51 +msgid "Check Spelling" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:54 +msgid "Toggle Spellcheck" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:61 +msgid "Write Good" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:64 +msgid "Toggle Write Good" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:197 +#: src/Widgets/QuickPreferences.vala:281 +msgid "Launch Preview" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:135 src/Widgets/QuickPreferences.vala:226 +#: src/Widgets/QuickPreferences.vala:315 +msgid "Preferences" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:137 src/Widgets/QuickPreferences.vala:228 +#: src/Widgets/QuickPreferences.vala:317 +msgid "Edit Preferences" +msgstr "" + +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Widgets/ThemeSelector.vala:50 +msgid "Font" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:142 +msgid "Font Selector" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:320 +msgid "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" +"<small>Stored in <a href='file://" +msgstr "" + +#: src/Widgets/SearchBar.vala:110 +msgid "(%d occurences)" +msgstr "" + +#: src/Widgets/StatisticsBar.vala:100 +msgid "%d %s %d %s and %d %s reading time." +msgstr "" + +#: src/Widgets/StatisticsBar.vala:101 +msgid "hour" +msgstr "" + +#: src/Widgets/StatisticsBar.vala:101 +msgid "hours" +msgstr "" + +#: src/Widgets/StatisticsBar.vala:102 +msgid "minute" +msgstr "" + +#: src/Widgets/StatisticsBar.vala:102 +msgid "minutes" +msgstr "" + +#: src/Widgets/StatisticsBar.vala:103 +msgid "seconds" +msgstr "" + +#: src/Widgets/StatisticsBar.vala:106 +msgid "%s : %d words." +msgstr "" + +#: src/Widgets/SearchWindow.vala:419 +msgid "Library Search" +msgstr "" + +#: src/Widgets/SearchWindow.vala:422 +msgid " Search" +msgstr "" + +#: src/Widgets/SearchWindow.vala:445 +msgid "Monitor for Library changes" +msgstr "" + +#: src/Widgets/Thinking.vala:87 +msgid "<b>Stealing file contents...</b>" +msgstr "" + +#: src/Widgets/MarkdownCheatSheet.vala:52 +msgid "Heading" +msgstr "" + +#. Font settings +#. Arbitrary strings +#: src/Constants/AppSettings.vala:104 +msgid "# Click on a sheet to get started\n" +"\n" +"First time here? Drag a folder into the library, or click on the Folder icon to select a folder to add.\n" +"\n" +"## Thief Tip:\n" +"\n" +"%s" +msgstr "" + +#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); +#: src/ThiefApp.vala:182 +msgid "Library" +msgstr "" + +#: src/Widgets/Preferences.vala:680 +msgid "Editor" +msgstr "" + +#: src/Widgets/SearchWindow.vala:421 +msgid "Search" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:111 src/Widgets/QuickPreferences.vala:206 +#: src/Widgets/QuickPreferences.vala:295 +msgid "Open Export Window" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:218 +#: src/Widgets/QuickPreferences.vala:307 +msgid "Search Library" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:125 src/Widgets/QuickPreferences.vala:220 +#: src/Widgets/QuickPreferences.vala:309 +msgid "Open Search Window" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:55 +msgid "Spacing" +msgstr "" + +#: src/Widgets/Preferences.vala:858 +msgid "Toggle experimental features" +msgstr "" + +#: src/Widgets/Preferences.vala:860 +msgid "Enable experimental features" +msgstr "" + +#: src/Controllers/Dialogs.vala:161 +msgid "Supported files" +msgstr "" + +#: src/Controllers/Dialogs.vala:170 +msgid "%s files" +msgstr "" + +#: src/Widgets/Library.vala:574 +msgid "Open in File Manager" +msgstr "" + +#: src/Widgets/NewSheet.vala:41 +msgid "Import" +msgstr "" + +#: src/Widgets/Preferences.vala:125 +msgid " WordPress" +msgstr "" + +#: src/Constants/ThiefProperties.vala:25 +msgid "The Markdown editor worth stealing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:87 +msgid "Contributors who help make ThiefMD awesome" +msgstr "" + +#: src/Constants/ThiefProperties.vala:89 +msgid "French Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:90 +msgid "Slovak Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:91 +msgid "Swedish Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Original Code" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:95 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 +msgid "Copyright" +msgstr "" + +#: src/Constants/ThiefProperties.vala:94 +msgid "GNU General Public License v3.0" +msgstr "" + +#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +msgid "SIL OPEN FONT LICENSE Version 1.1" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Preview CSS" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Mash up of Splendor and Modest" +msgstr "" + +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:109 +msgid "The MIT License (MIT)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:102 +msgid "Markdown Parsing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:102 +msgid "BSD-style License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:103 +msgid "Syntax Highlighting" +msgstr "" + +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:107 +msgid "BSD-3-Clause License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Math Rendering" +msgstr "" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Khan Academy and other contributors." +msgstr "" + +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +msgid "MIT License" +msgstr "" + +#: src/Constants/ThiefProperties.vala:105 +msgid "XML Parsing" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "Pandoc Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "John MacFarlane and others" +msgstr "" + +#: src/Constants/ThiefProperties.vala:106 +msgid "GNU General Public License v2.0" +msgstr "" + +#: src/Constants/ThiefProperties.vala:109 +msgid "libwritegood-vala based on" +msgstr "" + +#: src/Constants/ThiefProperties.vala:109 +msgid "write-good: Naive linter for English prose" +msgstr "" + +#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME +#: src/Constants/ThiefProperties.vala:113 +msgid "A3 (11.7 x 16.5 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:114 +msgid "A4 (8 x 11 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:115 +msgid "A5 (5.8 x 8.3 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:116 +msgid "B5 (6.93 x 9.84 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:117 +msgid "Executive (7 x 10 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:118 +msgid "Legal (8.5 x 14 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:119 +msgid "Letter (8.5 x 11 inches)" +msgstr "" + +#: src/Constants/ThiefProperties.vala:122 +msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." +msgstr "" + +#: src/Constants/ThiefProperties.vala:123 +msgid "No built in dark mode? Dark themes are available at https://themes.thiefmd.com. Add more in the Preferences (`Ctrl+,`)." +msgstr "" + +#: src/Constants/ThiefProperties.vala:124 +msgid "Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and click Export." +msgstr "" + +#: src/Constants/ThiefProperties.vala:125 +msgid "Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." +msgstr "" + +#: src/Constants/ThiefProperties.vala:126 +msgid "Ready to publish your great work? Right-click on the folder and choose \"Export Preview\"" +msgstr "" + +#: src/Constants/ThiefProperties.vala:127 +msgid "Want to block out distractions? Full-screen is just an `F11` away." +msgstr "" + +#: src/Constants/ThiefProperties.vala:128 +msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." +msgstr "" + +#: src/Constants/ThiefProperties.vala:129 +msgid "Working with a lot of links? Turn on Experimental Mode to make your markdown more readable `Ctrl+Shift+M`." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:127 +msgid "New WriteFreely Connection" +msgstr "" + +#: src/Connections/GhostConnection.vala:106 +msgid "New ghost Connection" +msgstr "" + +#: src/Connections/WordpressConnection.vala:109 +msgid "New Wordpress Connection" +msgstr "" + +#. website = ThiefProperties.URL; +#: src/Widgets/About.vala:94 +msgid "Feedback" +msgstr "" + +#. license_type = ThiefProperties.LICENSE_TYPE; +#: src/Widgets/About.vala:99 +msgid "This program comes with absolutely no warranty." +msgstr "" + +#: src/Widgets/About.vala:100 +msgid "See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, version 3 or later</a> for details." +msgstr "" + +#: src/Widgets/Preferences.vala:279 +msgid "Connections" +msgstr "" + +#: src/Widgets/Preferences.vala:340 +msgid "Remove " +msgstr "" + +#: src/Widgets/Preferences.vala:373 +msgid "Display" +msgstr "" + +#: src/Widgets/Preferences.vala:377 +msgid "Display Options" +msgstr "" + +#: src/Widgets/Preferences.vala:378 +msgid "Make ThiefMD feel like home." +msgstr "" + +#: src/Widgets/Preferences.vala:487 +msgid "Compiling Options" +msgstr "" + +#: src/Widgets/Preferences.vala:488 +msgid "Adjust how Markdown files are compiled together." +msgstr "" + +#: src/Widgets/Preferences.vala:543 +msgid "Page Setup" +msgstr "" + +#: src/Widgets/Preferences.vala:544 +msgid "Configure PDF export options." +msgstr "" + +#: src/Widgets/Preferences.vala:641 +msgid "PDF CSS" +msgstr "" + +#: src/Widgets/Preferences.vala:642 +msgid "Choose CSS Style for PDF Export." +msgstr "" + +#: src/Widgets/Preferences.vala:650 +msgid "ePub & HTML CSS" +msgstr "" + +#: src/Widgets/Preferences.vala:651 +msgid "Choose CSS Style to use for ePub and HTML Export." +msgstr "" + +#: src/Widgets/Preferences.vala:684 +msgid "Editor Settings" +msgstr "" + +#: src/Widgets/Preferences.vala:685 +msgid "Modify the ThiefMD environment." +msgstr "" + +#: src/Widgets/Preferences.vala:779 +msgid "ThiefMD Settings" +msgstr "" + +#: src/Widgets/Preferences.vala:780 +msgid "Modify the ThiefMD appearance." +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Download" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "more themes" +msgstr "" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Stored in" +msgstr "" + +#: src/ThiefApp.vala:315 +msgid "Fountain" +msgstr "" + +#: src/Constants/ThiefProperties.vala:101 +msgid "Fountain Preview and Export" +msgstr "" + +#: src/Exporters/ExportFountain.vala:57 +msgid "Fountain files" +msgstr "" + +#: src/Exporters/ExportFountain.vala:63 +msgid "Export Fountain" +msgstr "" + +#: src/Widgets/HeaderBar.vala:107 +msgid "Show Notes" +msgstr "" + +#: src/Widgets/Sheet.vala:289 +msgid "Copy File Path" +msgstr "" + +#: src/Widgets/Editor.vala:1394 +msgid "Insert Citation" +msgstr "" + +#: src/Widgets/Library.vala:639 +msgid "Set Project Icon" +msgstr "" + +#: src/Widgets/Library.vala:645 +msgid "Folder" +msgstr "" + +#: src/Widgets/Library.vala:648 +msgid "Reader" +msgstr "" + +#: src/Widgets/Library.vala:651 +msgid "Love" +msgstr "" + +#: src/Widgets/Library.vala:654 +msgid "Game" +msgstr "" + +#: src/Widgets/Library.vala:657 +msgid "Art" +msgstr "" + +#: src/Widgets/Library.vala:660 +msgid "Nature" +msgstr "" + +#: src/Widgets/Library.vala:663 +msgid "Food" +msgstr "" + +#: src/Widgets/Library.vala:666 +msgid "Help" +msgstr "" + +#: src/Widgets/Library.vala:669 +msgid "Cool" +msgstr "" + +#: src/Widgets/Library.vala:672 +msgid "Angel" +msgstr "" + +#: src/Widgets/Library.vala:675 +msgid "Monkey" +msgstr "" + +#: src/Widgets/Library.vala:678 +msgid "WordPress" +msgstr "" + +#: src/Widgets/Library.vala:681 +msgid "Ghost" +msgstr "" + +#: src/Widgets/Library.vala:684 +msgid "Write Freely" +msgstr "" + +#: src/Widgets/Library.vala:687 +msgid "Trash" +msgstr "" + +#: src/Widgets/Preferences.vala:431 +msgid "Number of Lines to Preview in Sheets View" +msgstr "" + +#: src/Widgets/Preferences.vala:765 +msgid "Disable application tips" +msgstr "" + +#: src/Widgets/Preferences.vala:766 +msgid "Start with new empty sheet on launch" +msgstr "" + +#: src/Enrichments/Fountain.vala:32 +msgid "Characters" +msgstr "" + +#: src/Enrichments/Markdown.vala:30 +msgid "Citations" +msgstr "" + +#: src/Constants/ThiefProperties.vala:95 +msgid "Stolen Victory Font" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "Grammar Check" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "the AbiSource Community" +msgstr "" + +#: src/Constants/ThiefProperties.vala:108 +msgid "GNU Lesser General Public License v2.1" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:71 +msgid "Check Grammar" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:74 +msgid "Toggle Grammar Checking" +msgstr "" + +#: src/Widgets/QuickPreferences.vala:87 +msgid "Grammar check is not available for your language" +msgstr "" + +#: src/Constants/ThiefProperties.vala:88 +msgid "Czech Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "PDF Export" +msgstr "" + +#: src/Constants/ThiefProperties.vala:107 +msgid "Simon Sapin and contributors" +msgstr "" + +#: src/Controllers/FileManager.vala:39 +msgid "Stealing file contents..." +msgstr "" + +#: src/Controllers/FileManager.vala:40 +msgid "This isn't plagiarism, it's a remix!" +msgstr "" + +#: src/Controllers/FileManager.vala:41 +msgid "NYT Best Seller, here we come!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:233 +msgid "Taking your words, and letting them go... to the internet!" +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:234 +msgid "Mhm... I see and I ship." +msgstr "" + +#: src/Connections/WriteFreelyConnection.vala:235 +msgid "Is this a selfie, and you're happy to see me?" +msgstr "" + +#: src/Connections/GhostConnection.vala:192 +msgid "Your words are like Casper... Friendly!" +msgstr "" + +#: src/Connections/GhostConnection.vala:193 +msgid "I see your words, and I'm taking them to the internet!" +msgstr "" + +#: src/Connections/GhostConnection.vala:194 +msgid "Booooooooooo! (That's Ghost speak for Great Work!)" +msgstr "" + +#: src/Connections/WordpressConnection.vala:192 +msgid "Taking it to the internet!" +msgstr "" + +#: src/Connections/WordpressConnection.vala:193 +msgid "Don't forget to share on reddit." +msgstr "" + +#: src/Connections/WordpressConnection.vala:194 +msgid "Pressing words together..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:149 +msgid "Simply Shakespearean." +msgstr "" + +#: src/Exporters/ExportPdf.vala:150 +msgid "Hmm... that's interesting..." +msgstr "" + +#: src/Exporters/ExportPdf.vala:151 +msgid "Your writing is insightful." +msgstr "" + +#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 +#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 +#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 +msgid "Connection Error" +msgstr "" + +#: src/Widgets/Preferences.vala:159 +msgid " Medium" +msgstr "" + +#: src/Widgets/Preferences.vala:193 +msgid " Forem" +msgstr "" + +#: src/Widgets/Preferences.vala:227 +msgid " Hashnode" +msgstr "" + +#: src/Constants/ThiefProperties.vala:92 +msgid "German Translation Contributors" +msgstr "" + +#: src/Constants/ThiefProperties.vala:93 +msgid "Finnish Translation Contributors" +msgstr "" + +#: src/Connections/WordpressConnection.vala:89 +msgid "Application Password" +msgstr "" + diff --git a/src/Constants/ThiefProperties.vala b/src/Constants/ThiefProperties.vala index 85c788fb..e3ee7fb6 100644 --- a/src/Constants/ThiefProperties.vala +++ b/src/Constants/ThiefProperties.vala @@ -91,6 +91,7 @@ namespace ThiefMD { giants.add (_("Swedish Translation Contributors") + ":\n<a href='https://github.com/eson57'>Åke Engelbrektson</a>\n"); giants.add (_("German Translation Contributors") + ":\nHelix and Fish\n"); giants.add (_("Finnish Translation Contributors") + ":\nJiri Grönroos\n"); + giants.add (_("Polish Translation Contributors") + ":\nŁukasz Horodecki\n"); giants.add (_("Original Code") + ":\n" + _("Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>") + "\n" + _("Copyright") + " © 2017 Lains.\n<a href='https://github.com/lainsce/quilter/blob/master/LICENSE'>" + _("GNU General Public License v3.0") + "</a>" + "\n"); giants.add (_("Stolen Victory Font") + ":\nModified <a href='https://github.com/iaolo/iA-Fonts'>iA Writer Duospace</a>\n" + _("Copyright") + " © 2018 Information Architects Inc.\nwith Reserved Font Name \"iA Writer\"\n<a href='https://github.com/iaolo/iA-Fonts/blob/master/iA%20Writer%20Duospace/LICENSE.md'>" + _("SIL OPEN FONT LICENSE Version 1.1") + "</a>"); giants.add ("Modified <a href='https://rubjo.github.io/victor-mono/'>Victor Mono</a>\n" + _("Copyright") + " © 2019 Rune Bjørnerås\n<a href='https://github.com/rubjo/victor-mono/blob/master/LICENSE'>" + _("MIT License") + "</a>"); From d63950787302c1268e9cf6530641e50478c15ca1 Mon Sep 17 00:00:00 2001 From: kmwallio <mwallio@gmail.com> Date: Sat, 3 Jun 2023 14:07:58 -0700 Subject: [PATCH 34/34] Add more translations --- po/tr.po | 1438 +++++++++++++--------------- src/Constants/ThiefProperties.vala | 1 + 2 files changed, 691 insertions(+), 748 deletions(-) diff --git a/po/tr.po b/po/tr.po index 9f1bd19e..9137700a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,340 +1,37 @@ -# Turkish translation for com.github.kmwallio.thiefmd. -# Copyright (C) 2022 com.github.kmwallio.thiefmd's COPYRIGHT HOLDER -# This file is distributed under the same license as the com.github.kmwallio.thiefmd package. -# -# Sabri Ünal <libreajans@gmail.com>, 2022. -# msgid "" msgstr "" -"Project-Id-Version: com.github.kmwallio.thiefmd\n" -"Report-Msgid-Bugs-To: https://github.com/kmwallio/ThiefMD/issues\n" -"POT-Creation-Date: 2022-06-26 11:34-0700\n" -"PO-Revision-Date: 2022-12-14 14:11+0300\n" -"Last-Translator: Sabri Ünal <libreajans@gmail.com>\n" -"Language-Team: Turkish <gnome-turk@gnome.org>\n" -"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 3.1.1\n" -"X-Project-Style: gnome\n" +"X-Generator: POEditor.com\n" +"Project-Id-Version: ThiefMD\n" +"Language: tr\n" -#: src/ThiefApp.vala:244 +#: src/ThiefApp.vala:309 msgid "HTML" msgstr "HTML" -#: src/ThiefApp.vala:245 +#: src/ThiefApp.vala:310 msgid "PDF" msgstr "PDF" -#: src/ThiefApp.vala:246 +#: src/ThiefApp.vala:311 msgid "MHTML" msgstr "MHTML" -#: src/ThiefApp.vala:247 +#: src/ThiefApp.vala:312 msgid "Markdown" msgstr "Markdown" -#: src/ThiefApp.vala:248 +#: src/ThiefApp.vala:313 msgid "LaTeX" msgstr "LaTeX" -#: src/ThiefApp.vala:249 +#: src/ThiefApp.vala:314 msgid "DocX" msgstr "DocX" -# Bir Markdown dili: https://fountain.io/ -#: src/ThiefApp.vala:250 -msgid "Fountain" -msgstr "Fountain" - -#. Visual Settings -#. Arbitrary strings -#: src/Constants/AppSettings.vala:104 -#, c-format -msgid "" -"# Click on a sheet to get started\n" -"\n" -"First time here? Drag a folder into the library, or click on the Folder " -"icon to select a folder to add.\n" -"\n" -"## Thief Tip:\n" -"\n" -"%s" -msgstr "" -"# Başlamak için bir sayfaya tıklayın\n" -"\n" -"Burada yeni misiniz? Bir klasörü kitaplığa sürükleyin veya bir klasör " -"eklemek için Klasör simgesine tıklayın.\n" -"\n" -"## Thief İpucu:\n" -"\n" -"%s" - -#: src/Constants/ThiefProperties.vala:25 -msgid "The Markdown editor worth stealing" -msgstr "Çalmaya değer Markdown düzenleyici" - -#: src/Constants/ThiefProperties.vala:86 -msgid "Contributors who help make ThiefMD awesome" -msgstr "ThiefMD uygulamasının muhteşem olmasına katkı verenler" - -#: src/Constants/ThiefProperties.vala:87 -msgid "Czech Translation Contributors" -msgstr "Çekçe Çeviriye Katkıda Bulunanlar" - -#: src/Constants/ThiefProperties.vala:88 -msgid "French Translation Contributors" -msgstr "Fransızca Çeviriye Katkıda Bulunanlar" - -#: src/Constants/ThiefProperties.vala:89 -msgid "Slovak Translation Contributors" -msgstr "Slovakça Çeviriye Katkıda Bulunanlar" - -#: src/Constants/ThiefProperties.vala:90 -msgid "Swedish Translation Contributors" -msgstr "İsveççe Çeviriye Katkıda Bulunanlar" - -#: src/Constants/ThiefProperties.vala:91 -msgid "German Translation Contributors" -msgstr "Almanca Çeviriye Katkıda Bulunanlar" - -#: src/Constants/ThiefProperties.vala:92 -msgid "Finnish Translation Contributors" -msgstr "Fince Çeviriye Katkıda Bulunanlar" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Original Code" -msgstr "Özgün Kod" - -#: src/Constants/ThiefProperties.vala:93 -msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" -msgstr "<a href='https://github.com/lainsce/quilter'>Quilter</a> temellidir" - -#: src/Constants/ThiefProperties.vala:93 src/Constants/ThiefProperties.vala:94 -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:101 -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -#: src/Constants/ThiefProperties.vala:105 -#: src/Constants/ThiefProperties.vala:106 -#: src/Constants/ThiefProperties.vala:107 -#: src/Constants/ThiefProperties.vala:108 -msgid "Copyright" -msgstr "Telif Hakkı" - -#: src/Constants/ThiefProperties.vala:93 -msgid "GNU General Public License v3.0" -msgstr "GNU General Public License v3.0" - -# Stolen Victory Yazı tipinin adı -#: src/Constants/ThiefProperties.vala:94 -msgid "Stolen Victory Font" -msgstr "Stolen Victory Yazı Tipi" - -#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:96 -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -msgid "SIL OPEN FONT LICENSE Version 1.1" -msgstr "SIL OPEN FONT LICENSE Version 1.1" - -#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:100 -#: src/Constants/ThiefProperties.vala:103 -#: src/Constants/ThiefProperties.vala:104 -msgid "MIT License" -msgstr "MIT License" - -#: src/Constants/ThiefProperties.vala:97 src/Constants/ThiefProperties.vala:98 -#: src/Widgets/ThemeSelector.vala:50 -msgid "Font" -msgstr "Yazı tipi" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Preview CSS" -msgstr "CSS Önizle" - -#: src/Constants/ThiefProperties.vala:99 -msgid "Mash up of Splendor and Modest" -msgstr "İhtişam ve Tevazu Karması" - -#: src/Constants/ThiefProperties.vala:99 src/Constants/ThiefProperties.vala:108 -msgid "The MIT License (MIT)" -msgstr "MIT Lisansı (MIT)" - -#: src/Constants/ThiefProperties.vala:100 -msgid "Fountain Preview and Export" -msgstr "Fountain Önizle ve Dışa Aktar" - -#: src/Constants/ThiefProperties.vala:101 -msgid "Markdown Parsing" -msgstr "Markdown Ayrıştırma" - -#: src/Constants/ThiefProperties.vala:101 -msgid "BSD-style License" -msgstr "BSD-tarzı Lisans" - -#: src/Constants/ThiefProperties.vala:102 -msgid "Syntax Highlighting" -msgstr "Söz Dizimi Vurgulaması" - -#: src/Constants/ThiefProperties.vala:102 -#: src/Constants/ThiefProperties.vala:106 -msgid "BSD-3-Clause License" -msgstr "BSD-3-Clause License" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Math Rendering" -msgstr "Matematik İşleme" - -#: src/Constants/ThiefProperties.vala:103 -msgid "Khan Academy and other contributors." -msgstr "Khan Academy ve diğer katkıda bulunanlar" - -#: src/Constants/ThiefProperties.vala:104 -msgid "XML Parsing" -msgstr "XML Ayrıştırma" - -#: src/Constants/ThiefProperties.vala:105 -msgid "Pandoc Export" -msgstr "Pandoc Dışa Aktar" - -#: src/Constants/ThiefProperties.vala:105 -msgid "John MacFarlane and others" -msgstr "John MacFarlane ve diğerleri" - -#: src/Constants/ThiefProperties.vala:105 -msgid "GNU General Public License v2.0" -msgstr "GNU Genel Kamu Lisansı, Sürüm 2" - -#: src/Constants/ThiefProperties.vala:106 -msgid "PDF Export" -msgstr "PDF Dışa Aktar" - -#: src/Constants/ThiefProperties.vala:106 -msgid "Simon Sapin and contributors" -msgstr "Simon Sapin ve katkıda bulunanlar" - -#: src/Constants/ThiefProperties.vala:107 -msgid "Grammar Check" -msgstr "Dil Bilgisi Denetimi" - -#: src/Constants/ThiefProperties.vala:107 -msgid "the AbiSource Community" -msgstr "AbiSource Topluluğu" - -#: src/Constants/ThiefProperties.vala:107 -msgid "GNU Lesser General Public License v2.1" -msgstr "Kısıtlı GNU Genel Kamu Lisansı, sürüm 2.1" - -#: src/Constants/ThiefProperties.vala:108 -msgid "libwritegood-vala based on" -msgstr "libwritegood-vala temelli" - -#: src/Constants/ThiefProperties.vala:108 -msgid "write-good: Naive linter for English prose" -msgstr "write-good: İngilizce düz yazı için saf ayıklayıcı" - -#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME -#: src/Constants/ThiefProperties.vala:112 -msgid "A3 (11.7 x 16.5 inches)" -msgstr "A3 (11.7 x 16.5 inç)" - -#: src/Constants/ThiefProperties.vala:113 -msgid "A4 (8 x 11 inches)" -msgstr "A4 (8 x 11 inç)" - -#: src/Constants/ThiefProperties.vala:114 -msgid "A5 (5.8 x 8.3 inches)" -msgstr "A5 (5.8 x 8.3 inç)" - -#: src/Constants/ThiefProperties.vala:115 -msgid "B5 (6.93 x 9.84 inches)" -msgstr "B5 (6.93 x 9.84 inç)" - -#: src/Constants/ThiefProperties.vala:116 -msgid "Executive (7 x 10 inches)" -msgstr "Yönetici (7 x 10 inç)" - -#: src/Constants/ThiefProperties.vala:117 -msgid "Legal (8.5 x 14 inches)" -msgstr "Yasal (8.5 x 14 inç)" - -#: src/Constants/ThiefProperties.vala:118 -msgid "Letter (8.5 x 11 inches)" -msgstr "Mektup (8.5 x 11 inç)" - -#: src/Constants/ThiefProperties.vala:121 -msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." -msgstr "" -"Gördüklerini beğenmediniz mi? Tercihlere erişmek için `Ctrl+,` tuşlarına " -"basın." - -#: src/Constants/ThiefProperties.vala:122 -msgid "" -"No built in dark mode? Dark themes are available at https://themes.thiefmd." -"com. Add more in the Preferences (`Ctrl+,`)." -msgstr "" -"Yerleşik karanlık kip yok mu? Karanlık temalar https://themes.thiefmd.com " -"adresinde mevcuttur. Tercihlerden daha fazlasını ekleyin (`Ctrl+,`)." - -#: src/Constants/ThiefProperties.vala:123 -msgid "" -"Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and " -"click Export." -msgstr "" -"Ön izlemenin görünümünü beğenmediniz mi? Tercihlere erişmek için `Ctrl+,` " -"tuşlarına basın ve Dışa Aktar'a tıklayın." - -#: src/Constants/ThiefProperties.vala:124 -msgid "" -"Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." -msgstr "" -"Bir ePub, HTML veya DocX dosyasını içe aktarmak mı istiyorsunuz? Yeni Sayfa " -"isteminden İçe Aktar'a tıklayın." - -#: src/Constants/ThiefProperties.vala:125 -msgid "" -"Ready to publish your great work? Right-click on the folder and choose " -"\"Export Preview\"" -msgstr "" -"Harika çalışmanızı yayınlamaya hazır mısınız? Klasöre sağ tıklayın ve " -"\"Önizlemeyi Dışa Aktar\"ı seçin" - -#: src/Constants/ThiefProperties.vala:126 -msgid "Want to block out distractions? Full-screen is just an `F11` away." -msgstr "" -"Dikkat dağıtıcı şeyleri engellemek mi istiyorsunuz? Tam ekran sadece `F11` " -"uzaklığında." - -#: src/Constants/ThiefProperties.vala:127 -msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." -msgstr "" -"`Ctrl+1`, `Ctrl+2`, ve `Ctrl+3` ile görünüm kipleri arasında hızla geçiş " -"yapın." - -#: src/Constants/ThiefProperties.vala:128 -msgid "" -"Working with a lot of links? Turn on Experimental Mode to make your markdown " -"more readable `Ctrl+Shift+M`." -msgstr "" -"Çok sayıda bağlantıyla mı çalışıyorsunuz? Markdownınızı daha okunabilir hale " -"getirmek için Deneysel Kipi `Ctrl+Shift+M` kısayoluyla açabilirsiniz." - -#: src/Controllers/FileManager.vala:39 -msgid "Stealing file contents..." -msgstr "Dosya içerikleri çalınıyor..." - -#: src/Controllers/FileManager.vala:40 -msgid "This isn't plagiarism, it's a remix!" -msgstr "Bu intihal değil, bir remix!" - -#: src/Controllers/FileManager.vala:41 -msgid "NYT Best Seller, here we come!" -msgstr "NYT En Çok Satanları, biz geliyoruz!" - +#. Supported import file extensions #: src/Controllers/FileManager.vala:43 msgid "Importing File" msgstr "Dosya İçe Aktarılıyor" @@ -387,15 +84,6 @@ msgstr "MHTML dosyaları" msgid "LaTeX file" msgstr "LaTeX dosyası" -#: src/Controllers/Dialogs.vala:161 -msgid "Supported files" -msgstr "Desteklenen dosyalar" - -#: src/Controllers/Dialogs.vala:170 -#, c-format -msgid "%s files" -msgstr "%s dosyaları" - #: src/Controllers/Dialogs.vala:177 msgid "All files" msgstr "Tüm dosyalar" @@ -424,16 +112,10 @@ msgstr "Eğer kaydetmezseniz, yaptığınız değişiklikler yitecek." msgid "Close without saving" msgstr "Kaydetmeden kapat" -#: src/Controllers/SheetManager.vala:157 src/Widgets/StatisticsBar.vala:93 +#: src/Controllers/SheetManager.vala:156 src/Widgets/StatisticsBar.vala:93 msgid "No file opened" msgstr "Dosya açılmadı" -#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 -#: src/Widgets/PublisherPreviewWindow.vala:295 -#: src/Widgets/ProjectStatistics.vala:71 -msgid "Close" -msgstr "Kapat" - #: src/Connections/WriteFreelyConnection.vala:103 #: src/Connections/WordpressConnection.vala:85 msgid "Username" @@ -441,7 +123,6 @@ msgstr "Kullanıcı adı" #: src/Connections/WriteFreelyConnection.vala:107 #: src/Connections/GhostConnection.vala:86 -#: src/Connections/WordpressConnection.vala:89 msgid "Password" msgstr "Parola" @@ -451,43 +132,21 @@ msgstr "Parola" msgid "Endpoint" msgstr "Uç noktası" -#: src/Connections/WriteFreelyConnection.vala:127 -msgid "New WriteFreely Connection" -msgstr "Yeni WriteFreely Bağlantısı" - #: src/Connections/WriteFreelyConnection.vala:130 #: src/Connections/GhostConnection.vala:109 #: src/Connections/WordpressConnection.vala:112 msgid "_Add Account" msgstr "Hesap _Ekle" -#: src/Connections/WriteFreelyConnection.vala:233 -msgid "Taking your words, and letting them go... to the internet!" -msgstr "Sözlerinizi alınıyor ve internete gönderiliyor!" - -#: src/Connections/WriteFreelyConnection.vala:234 -msgid "Mhm... I see and I ship." -msgstr "Hımm... Görüyorum ve gönderiyorum." - -#: src/Connections/WriteFreelyConnection.vala:235 -msgid "Is this a selfie, and you're happy to see me?" -msgstr "Bu bir selfie mi ve beni gördüğüne sevindin mi?" - -#: src/Connections/WriteFreelyConnection.vala:238 -#: src/Connections/GhostConnection.vala:197 -#: src/Connections/WordpressConnection.vala:198 -msgid "Uploading images" -msgstr "Resimler karşıya yükleniyor" - #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid " Published" msgstr "Yayımlandı" #: src/Connections/WriteFreelyConnection.vala:318 #: src/Connections/GhostConnection.vala:288 -#: src/Connections/WordpressConnection.vala:288 +#: src/Connections/WordpressConnection.vala:297 msgid "Post Published" msgstr "Gönderi Yayımlandı" @@ -495,46 +154,11 @@ msgstr "Gönderi Yayımlandı" msgid "E-mail" msgstr "E-posta" -#: src/Connections/GhostConnection.vala:106 -msgid "New ghost Connection" -msgstr "Yeni Ghost Bağlantısı" - -#: src/Connections/GhostConnection.vala:192 -msgid "Your words are like Casper... Friendly!" -msgstr "Sözlerin Casper gibi... Dostça!" - -#: src/Connections/GhostConnection.vala:193 -msgid "I see your words, and I'm taking them to the internet!" -msgstr "Sözlerini görüyorum ve onları internete taşıyorum!" - -#: src/Connections/GhostConnection.vala:194 -msgid "Booooooooooo! (That's Ghost speak for Great Work!)" -msgstr "Öcüüüüüüü! (Bu Ghost, Great Work adına konuşuyor!)" - -#: src/Connections/WordpressConnection.vala:109 -msgid "New Wordpress Connection" -msgstr "Yeni Wordpress Bağlantısı" - -#: src/Connections/WordpressConnection.vala:191 -msgid "Taking it to the internet!" -msgstr "İnternete taşıyor!" - -#: src/Connections/WordpressConnection.vala:192 -msgid "Don't forget to share on reddit." -msgstr "Redditʼte paylaşmayı unutmayın." - -# Wordpress için bir kelime oyunu -#: src/Connections/WordpressConnection.vala:193 -msgid "Pressing words together..." -msgstr "Kelimeler birbirine basılıyor..." - -#: src/Enrichments/Fountain.vala:32 -msgid "Characters" -msgstr "Karakterler" - -#: src/Enrichments/Markdown.vala:30 -msgid "Citations" -msgstr "Alıntılar" +#: src/Connections/WriteFreelyConnection.vala:238 +#: src/Connections/GhostConnection.vala:197 +#: src/Connections/WordpressConnection.vala:217 +msgid "Uploading images" +msgstr "Resimler karşıya yükleniyor" #: src/Exporters/ExportDocx.vala:60 msgid "Export DocX" @@ -556,14 +180,6 @@ msgstr "LaTeX Dışa Aktar" msgid "Export Markdown" msgstr "Markdown Dışa Aktar" -#: src/Exporters/ExportFountain.vala:57 -msgid "Fountain files" -msgstr "Fountain dosyaları" - -#: src/Exporters/ExportFountain.vala:63 -msgid "Export Fountain" -msgstr "Fountain Dışa Aktar" - #: src/Exporters/ExportMhtml.vala:62 msgid "Export MHTML" msgstr "MHTML Dışa Aktar" @@ -572,19 +188,6 @@ msgstr "MHTML Dışa Aktar" msgid "Export PDF" msgstr "PDF Dışa Aktar" -#: src/Exporters/ExportPdf.vala:149 -msgid "Simply Shakespearean." -msgstr "Shakespeare Gibi." - -#: src/Exporters/ExportPdf.vala:150 -msgid "Hmm... that's interesting..." -msgstr "Hmm... Bu ilginç..." - -# Insightful yerine kasten İlham verici çevirisini kullandım. -#: src/Exporters/ExportPdf.vala:151 -msgid "Your writing is insightful." -msgstr "Yazınız ilham verici." - #: src/Exporters/ExportPdf.vala:153 src/Exporters/ExportPdf.vala:183 msgid "Working PDF Magic" msgstr "PDF Magic Çalışıyor" @@ -593,13 +196,17 @@ msgstr "PDF Magic Çalışıyor" msgid "Making sure your hard work looks purrfect..." msgstr "Sıkı çalışmanızın mükemmel göründüğünden emin olunuyor..." -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:132 -#: src/Widgets/QuickPreferences.vala:216 src/Widgets/QuickPreferences.vala:295 +#: src/Exporters/ExportPdf.vala:107 +msgid "Print to File" +msgstr "" + +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:146 +#: src/Widgets/QuickPreferences.vala:237 src/Widgets/QuickPreferences.vala:326 msgid "About ThiefMD" msgstr "ThiefMD Hakkında" -#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:130 -#: src/Widgets/QuickPreferences.vala:214 src/Widgets/QuickPreferences.vala:293 +#: src/Widgets/About.vala:44 src/Widgets/QuickPreferences.vala:144 +#: src/Widgets/QuickPreferences.vala:235 src/Widgets/QuickPreferences.vala:324 msgid "About" msgstr "Hakkında" @@ -607,44 +214,28 @@ msgstr "Hakkında" msgid "Credits" msgstr "Geliştirenler" -#. website = ThiefProperties.URL; -#: src/Widgets/About.vala:94 -msgid "Feedback" -msgstr "Geri Bildirim" - -#. license_type = ThiefProperties.LICENSE_TYPE; -#: src/Widgets/About.vala:99 -msgid "This program comes with absolutely no warranty." -msgstr "Bu program kesinlikle hiçbir garanti vermiyor." - -#: src/Widgets/About.vala:100 -msgid "" -"See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General " -"Public License, version 3 or later</a> for details." -msgstr "" -"Ayrıntılı bilgi için <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU " -"Genel Kamu Lisansı, sürüm 3 ya da sonrası</a> sayfasına bakınız." +#: src/Connections/ConnectionBase.vala:85 src/Widgets/About.vala:59 +#: src/Widgets/PublisherPreviewWindow.vala:295 +#: src/Widgets/ProjectStatistics.vala:71 +msgid "Close" +msgstr "Kapat" -#: src/Widgets/HeaderBar.vala:86 +#: src/Widgets/Sheets.vala:179 msgid "New Sheet" msgstr "Yeni Sayfa" -#: src/Widgets/HeaderBar.vala:98 +#: src/Widgets/HeaderBar.vala:78 msgid "Change View" msgstr "Görünümü Değişitir" -#: src/Widgets/HeaderBar.vala:106 +#: src/ThiefApp.vala:186 msgid "Add Folder to Library" msgstr "Kitaplığa Klasör Ekle" -#: src/Widgets/HeaderBar.vala:129 +#: src/Widgets/HeaderBar.vala:92 msgid "Settings" msgstr "Ayarlar" -#: src/Widgets/HeaderBar.vala:144 -msgid "Show Notes" -msgstr "Notları Göster" - #: src/Widgets/Sheet.vala:215 msgid "Sort by" msgstr "Şuna göre sırala" @@ -673,30 +264,26 @@ msgstr "Tarihe Göre Artan" msgid "Sort by Date Descending" msgstr "Tarihe Göre Azalan" -#: src/Widgets/Sheet.vala:261 src/Widgets/QuickPreferences.vala:95 -#: src/Widgets/QuickPreferences.vala:179 src/Widgets/QuickPreferences.vala:258 +#: src/Widgets/Sheet.vala:273 src/Widgets/QuickPreferences.vala:95 +#: src/Widgets/QuickPreferences.vala:195 src/Widgets/QuickPreferences.vala:279 msgid "Preview" msgstr "Ön izleme" -#: src/Widgets/Sheet.vala:269 src/Widgets/Preferences.vala:482 +#: src/Widgets/Sheet.vala:281 src/Widgets/Preferences.vala:482 #: src/Widgets/PublisherPreviewWindow.vala:155 #: src/Widgets/ProjectStatistics.vala:64 msgid "Export" msgstr "Dışa Aktar" -#: src/Widgets/Sheet.vala:277 -msgid "Copy File Path" -msgstr "Dosya Yolunu Kopyala" - #. Gtk.MenuItem menu_rename = new Gtk.MenuItem.with_label (_("Rename File")); #. menu_rename.activate.connect (() => { #. }); #. menu.add (menu_rename); -#: src/Widgets/Sheet.vala:293 +#: src/Widgets/Sheet.vala:305 msgid "Danger Zone" msgstr "Tehlikeli Bölge" -#: src/Widgets/Sheet.vala:299 +#: src/Widgets/Sheet.vala:311 msgid "Move to Trash" msgstr "Çöpe Taşı" @@ -708,128 +295,47 @@ msgstr "Diskten _yükle" msgid "_Keep what's in editor" msgstr "_Düzenleyicidekileri koru" -#: src/Widgets/Editor.vala:1263 +#: src/Widgets/Editor.vala:1278 msgid "Insert Datetime" msgstr "Tarih ve Saat Ekle" -#: src/Widgets/Editor.vala:1281 +#: src/Widgets/Editor.vala:1296 msgid "Insert YAML Frontmatter" msgstr "YAML Frontmatter Ekle" -#: src/Widgets/Editor.vala:1379 -msgid "Insert Citation" -msgstr "Alıntı Ekle" - -#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); -#: src/Widgets/Library.vala:73 -msgid "Library" -msgstr "Kitaplık" - -#: src/Widgets/Library.vala:538 +#: src/Widgets/Library.vala:539 msgid "Export Preview" msgstr "Dışa Aktarma Önizlemesi" -#: src/Widgets/Library.vala:548 +#: src/Widgets/Library.vala:549 msgid "Writing Statistics" msgstr "Yazım İstatistikleri" -#: src/Widgets/Library.vala:561 +#: src/Widgets/Library.vala:562 msgid "Search " msgstr "Ara" -#: src/Widgets/Library.vala:573 -msgid "Open in File Manager" -msgstr "Dosya Yöneticisiyle Aç" - -#: src/Widgets/Library.vala:585 +#: src/Widgets/Library.vala:586 msgid "Create Sub-Folder" msgstr "Alt Klasör Oluştur" -#: src/Widgets/Library.vala:602 +#: src/Widgets/Library.vala:603 msgid "Hide from Library" msgstr "Kitaplıktan gizle" -#: src/Widgets/Library.vala:626 +#: src/Widgets/Library.vala:627 msgid "Show Hidden Items" msgstr "Gizli Ogeleri Göster" -#: src/Widgets/Library.vala:638 -msgid "Set Project Icon" -msgstr "Proje Simgesi Ayarla" - -#: src/Widgets/Library.vala:641 src/Widgets/Preferences.vala:389 -msgid "None" -msgstr "Yok" - -#: src/Widgets/Library.vala:644 -msgid "Folder" -msgstr "Klasör" - -#: src/Widgets/Library.vala:647 -msgid "Reader" -msgstr "Seslendiren" - -#: src/Widgets/Library.vala:650 -msgid "Love" -msgstr "Aşk" - -#: src/Widgets/Library.vala:653 -msgid "Game" -msgstr "Oyun" - -#: src/Widgets/Library.vala:656 -msgid "Art" -msgstr "Art" - -#: src/Widgets/Library.vala:659 -msgid "Nature" -msgstr "Doğa" - -#: src/Widgets/Library.vala:662 -msgid "Food" -msgstr "Yiyecek" - -#: src/Widgets/Library.vala:665 -msgid "Help" -msgstr "Yardım" - -#: src/Widgets/Library.vala:668 -msgid "Cool" -msgstr "Havalı" - -#: src/Widgets/Library.vala:671 -msgid "Angel" -msgstr "Melek" - -#: src/Widgets/Library.vala:674 -msgid "Monkey" -msgstr "Maymun" - -#: src/Widgets/Library.vala:677 -msgid "WordPress" -msgstr "WordPress" - -#: src/Widgets/Library.vala:680 -msgid "Ghost" -msgstr "Ghost" - -#: src/Widgets/Library.vala:683 -msgid "Write Freely" -msgstr "Write Freely" - -#: src/Widgets/Library.vala:686 -msgid "Trash" -msgstr "Çöp" - -#: src/Widgets/Library.vala:696 +#: src/Widgets/Library.vala:697 msgid "Remove from Library" msgstr "Kitaplıktan kaldır" -#: src/Widgets/Library.vala:933 +#: src/Widgets/Library.vala:934 msgid "Copy" msgstr "Kopyala" -#: src/Widgets/Library.vala:935 +#: src/Widgets/Library.vala:936 msgid "Move" msgstr "Taşı" @@ -849,10 +355,6 @@ msgstr "Dosya adı" msgid "Create" msgstr "Oluştur" -#: src/Widgets/NewSheet.vala:41 -msgid "Import" -msgstr "İçe Aktar" - #: src/Widgets/Preferences.vala:50 msgid "Current Connections" msgstr "Geçerli Bağlantı" @@ -873,41 +375,10 @@ msgstr "Blog yazılımınızı seçin." msgid " WriteFreely" msgstr " WriteFreely" -#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 -#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 -#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 -msgid "Connection Error" -msgstr "Bağlantı Hatası" - #: src/Widgets/Preferences.vala:91 msgid " ghost" msgstr " ghost" -#: src/Widgets/Preferences.vala:125 -msgid " WordPress" -msgstr " WordPress" - -# Web sitesi: https://medium.com/ -#: src/Widgets/Preferences.vala:159 -msgid " Medium" -msgstr " Medium" - -#: src/Widgets/Preferences.vala:193 -msgid " Forem" -msgstr " Forem" - -#: src/Widgets/Preferences.vala:227 -msgid " Hashnode" -msgstr " Hashnode" - -#: src/Widgets/Preferences.vala:279 -msgid "Connections" -msgstr "Bağlantılar" - -#: src/Widgets/Preferences.vala:340 -msgid "Remove " -msgstr "Kaldır" - #: src/Widgets/Preferences.vala:343 msgid "_Remove" msgstr "_Kaldır" @@ -916,22 +387,14 @@ msgstr "_Kaldır" msgid "_Keep" msgstr "_Koru" -#: src/Widgets/Preferences.vala:373 -msgid "Display" -msgstr "Görünüm" - -#: src/Widgets/Preferences.vala:377 -msgid "Display Options" -msgstr "Görüntü Seçenekleri" - -#: src/Widgets/Preferences.vala:378 -msgid "Make ThiefMD feel like home." -msgstr "ThiefMDʼyi eviniz gibi hissettirin." - #: src/Widgets/Preferences.vala:384 msgid "Focus" msgstr "Odaklama" +#: src/Widgets/Library.vala:642 src/Widgets/Preferences.vala:389 +msgid "None" +msgstr "Yok" + #: src/Widgets/Preferences.vala:390 msgid "Paragraph" msgstr "Paragraf" @@ -944,33 +407,17 @@ msgstr "Tümce" msgid "Word" msgstr "Sözcük" -#: src/Widgets/Preferences.vala:431 -msgid "Number of Lines to Preview in Sheets View" -msgstr "Sayfa Görünümünde Önizlenecek Satır Sayısı" - #: src/Widgets/Preferences.vala:440 msgid "Add New Theme" msgstr "Yeni Tema Ekle" -#: src/Widgets/Preferences.vala:487 -msgid "Compiling Options" -msgstr "Derleme Seçenekleri" - -#: src/Widgets/Preferences.vala:488 -msgid "Adjust how Markdown files are compiled together." -msgstr "Markdown dosyalarının birlikte nasıl derlendiğini ayarlayın." - #: src/Widgets/Preferences.vala:496 msgid "First Markdown File includes Author Metadata" msgstr "İlk Markdown Dosyası, Yazar Üst Verilerini içerir" #: src/Widgets/Preferences.vala:498 -msgid "" -"First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>Author metadata</a>" -msgstr "" -"İlk Mark Dosyası <a href='https://pandoc.org/MANUAL.html#epub-" -"metadata'>Yazar üst verilerini</a> içerir" +msgid "First Markdown file includes <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Author metadata</a>" +msgstr "İlk Mark Dosyası <a href='https://pandoc.org/MANUAL.html#epub-metadata'>Yazar üst verilerini</a> içerir" #: src/Widgets/Preferences.vala:514 msgid "Resolve full paths to resources" @@ -988,14 +435,6 @@ msgstr "YAML başlığını Başlık olarak içer" msgid "Include YAML title as H1 Heading" msgstr "YAML başlıklarını H1 Başlık olarak içer" -#: src/Widgets/Preferences.vala:543 -msgid "Page Setup" -msgstr "Sayfa Ayarları" - -#: src/Widgets/Preferences.vala:544 -msgid "Configure PDF export options." -msgstr "PDF dışa aktarma seçeneklerini yapılandır." - #: src/Widgets/Preferences.vala:552 msgid "Page Break between Folders" msgstr "Klasörler arasında Sayfa Sonu" @@ -1020,41 +459,13 @@ msgstr "PDF yan kenar boşlukları (inç olarak)" msgid "Top & Bottom margins in PDF in inches" msgstr "PDF üst kenar boşlukları (inç olarak)" -#: src/Widgets/Preferences.vala:641 -msgid "PDF CSS" -msgstr "PDF CSS" +#: src/Widgets/Preferences.vala:657 +msgid "Add Export Style" +msgstr "Dışa Aktarma Biçemi Ekle" -#: src/Widgets/Preferences.vala:642 -msgid "Choose CSS Style for PDF Export." -msgstr "PDF Dışa Aktarma için CSS Biçemi seç." - -#: src/Widgets/Preferences.vala:650 -msgid "ePub & HTML CSS" -msgstr "ePub ve HTML CSS" - -#: src/Widgets/Preferences.vala:651 -msgid "Choose CSS Style to use for ePub and HTML Export." -msgstr "ePub ve HTML Dışa Aktarma için kullanılacak CSS Biçemini seç." - -#: src/Widgets/Preferences.vala:657 -msgid "Add Export Style" -msgstr "Dışa Aktarma Biçemi Ekle" - -#: src/Widgets/Preferences.vala:680 -msgid "Editor" -msgstr "Düzenleyici" - -#: src/Widgets/Preferences.vala:684 -msgid "Editor Settings" -msgstr "Düzenleyici Ayarları" - -#: src/Widgets/Preferences.vala:685 -msgid "Modify the ThiefMD environment." -msgstr "ThiefMD ortamını düzenle." - -#: src/Widgets/Preferences.vala:693 -msgid "Enable spellcheck" -msgstr "Yazım denetimini etkinleştir" +#: src/Widgets/Preferences.vala:693 +msgid "Enable spellcheck" +msgstr "Yazım denetimini etkinleştir" #: src/Widgets/Preferences.vala:695 msgid "Check document spelling" @@ -1084,23 +495,6 @@ msgstr "Yazım istatistiklerini aç/kapat" msgid "Show writing statistics" msgstr "Yazım istatistiklerini göster" -#: src/Widgets/Preferences.vala:765 -msgid "Disable application tips" -msgstr "Uygulama ipuçlarını devre dışı bırak" - -#: src/Widgets/Preferences.vala:766 -msgid "Start with new empty sheet on launch" -msgstr "Başlangıçta yeni boş sayfa ile başla" - -#: src/Widgets/Preferences.vala:779 -msgid "ThiefMD Settings" -msgstr "ThiefMD Ayarları" - -#: src/Widgets/Preferences.vala:780 -msgid "Modify the ThiefMD appearance." -msgstr "ThiefMD görünümünü değiştir." - -# Normalde Toogle için Aç/Kapat diyoruz fakat burada değiştir daha uygun duruyor. #: src/Widgets/Preferences.vala:790 msgid "Toggle interface theming" msgstr "Arayüz temasını değiştir" @@ -1133,18 +527,10 @@ msgstr "Kitaplık sırasını değiştir" msgid "Keep library order" msgstr "Kitaplık sırasını koru" -#: src/Widgets/Preferences.vala:858 -msgid "Toggle experimental features" -msgstr "Deneysel özellikleri aç/kapat" - -#: src/Widgets/Preferences.vala:860 -msgid "Enable experimental features" -msgstr "Deneysel özellikleri etkinleştir" - #: src/Widgets/PublisherPreviewWindow.vala:67 #: src/Widgets/PublisherPreviewWindow.vala:209 -#: src/Widgets/QuickPreferences.vala:104 src/Widgets/QuickPreferences.vala:188 -#: src/Widgets/QuickPreferences.vala:267 +#: src/Widgets/QuickPreferences.vala:109 src/Widgets/QuickPreferences.vala:204 +#: src/Widgets/QuickPreferences.vala:293 msgid "Publishing Preview" msgstr "Yayımlama Önizlemesi" @@ -1169,14 +555,11 @@ msgid "words" msgstr "sözcükler" #: src/Widgets/ProjectStatistics.vala:126 -#, c-format -msgid "" -"<b>Reading Time:</b>\n" +msgid "<b>Reading Time:</b>\n" "%d %s\n" "%d %s\n" "%d %s" -msgstr "" -"<b>Okuma Süresi:</b>\n" +msgstr "<b>Okuma Süresi:</b>\n" "%d %s\n" "%d %s\n" "%d %s" @@ -1225,77 +608,40 @@ msgstr "Write Good" msgid "Toggle Write Good" msgstr "Write Good Aç/Kapat" -#: src/Widgets/QuickPreferences.vala:71 -msgid "Check Grammar" -msgstr "Dil Bilgisi Denetimi" - -#: src/Widgets/QuickPreferences.vala:74 -msgid "Toggle Grammar Checking" -msgstr "Dil Bilgisi Denetimini Aç/Kapat" - -#: src/Widgets/QuickPreferences.vala:87 -msgid "Grammar check is not available for your language" -msgstr "Dil bilgisi denetimi dilinizde kullanılamıyor" - -#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:181 -#: src/Widgets/QuickPreferences.vala:260 +#: src/Widgets/QuickPreferences.vala:97 src/Widgets/QuickPreferences.vala:197 +#: src/Widgets/QuickPreferences.vala:281 msgid "Launch Preview" msgstr "Önizlemeyi Başlat" -#: src/Widgets/QuickPreferences.vala:106 src/Widgets/QuickPreferences.vala:190 -#: src/Widgets/QuickPreferences.vala:269 -msgid "Open Export Window" -msgstr "Dışa Aktarma Penceresini Aç" - -#: src/Widgets/QuickPreferences.vala:113 src/Widgets/QuickPreferences.vala:197 -#: src/Widgets/QuickPreferences.vala:276 -msgid "Search Library" -msgstr "Kitaplıkta Ara" - -#: src/Widgets/QuickPreferences.vala:115 src/Widgets/QuickPreferences.vala:199 -#: src/Widgets/QuickPreferences.vala:278 -msgid "Open Search Window" -msgstr "Arama Penceresini Aç" - -#: src/Widgets/QuickPreferences.vala:121 src/Widgets/QuickPreferences.vala:205 -#: src/Widgets/QuickPreferences.vala:284 +#: src/Widgets/QuickPreferences.vala:135 src/Widgets/QuickPreferences.vala:226 +#: src/Widgets/QuickPreferences.vala:315 msgid "Preferences" msgstr "Tercihler" -#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:207 -#: src/Widgets/QuickPreferences.vala:286 +#: src/Widgets/QuickPreferences.vala:137 src/Widgets/QuickPreferences.vala:228 +#: src/Widgets/QuickPreferences.vala:317 msgid "Edit Preferences" msgstr "Tercihleri Düzenle" -#: src/Widgets/ThemeSelector.vala:55 -msgid "Spacing" -msgstr "Boşluk" +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Widgets/ThemeSelector.vala:50 +msgid "Font" +msgstr "Yazı tipi" #: src/Widgets/ThemeSelector.vala:142 msgid "Font Selector" msgstr "Yazı Tipi Seçici" -# Split Sentence -# Aslında Download More themes ama bölündüğü ve link olduğu için ortalık karışmış. Hata raporlanacak. -#: src/Widgets/ThemeSelector.vala:326 -msgid "Download" -msgstr "İndir: " - -#: src/Widgets/ThemeSelector.vala:326 -msgid "more themes" -msgstr "daha fazla tema" - -#: src/Widgets/ThemeSelector.vala:326 -msgid "Stored in" -msgstr "Saklanma konumu: " +#: src/Widgets/ThemeSelector.vala:320 +msgid "Download <a href='https://themes.thiefmd.com/themes/'>more themes</a>.\n" +"<small>Stored in <a href='file://" +msgstr "" #: src/Widgets/SearchBar.vala:110 -#, c-format msgid "(%d occurences)" msgstr "(%d oluşum)" #: src/Widgets/StatisticsBar.vala:100 -#, c-format msgid "%d %s %d %s and %d %s reading time." msgstr "%d %s %d %s ve %d %s okuma süresi." @@ -1320,7 +666,6 @@ msgid "seconds" msgstr "saniye" #: src/Widgets/StatisticsBar.vala:106 -#, c-format msgid "%s : %d words." msgstr "%s : %d sözcük" @@ -1328,9 +673,9 @@ msgstr "%s : %d sözcük" msgid "Library Search" msgstr "Kitaplıkta Ara" -#: src/Widgets/SearchWindow.vala:421 -msgid "Search" -msgstr "Ara" +#: src/Widgets/SearchWindow.vala:422 +msgid " Search" +msgstr "" #: src/Widgets/SearchWindow.vala:445 msgid "Monitor for Library changes" @@ -1344,14 +689,611 @@ msgstr "<b>Dosya içerikleri çalınıyor...</b>" msgid "Heading" msgstr "Başlık" -#: src/Widgets/Notes.vala:58 -msgid "Sheet Notes" -msgstr "Sayfa Notları" +#. Font settings +#. Arbitrary strings +#: src/Constants/AppSettings.vala:104 +msgid "# Click on a sheet to get started\n" +"\n" +"First time here? Drag a folder into the library, or click on the Folder icon to select a folder to add.\n" +"\n" +"## Thief Tip:\n" +"\n" +"%s" +msgstr "# Başlamak için bir sayfaya tıklayın\n" +"\n" +"Burada yeni misiniz? Bir klasörü kitaplığa sürükleyin veya bir klasör eklemek için Klasör simgesine tıklayın.\n" +"\n" +"## Thief İpucu:\n" +"\n" +"%s" + +#. insert_column_with_attributes (-1, _("Library"), new CellRendererText (), "text", 0, null); +#: src/ThiefApp.vala:182 +msgid "Library" +msgstr "Kitaplık" + +#: src/Widgets/Preferences.vala:680 +msgid "Editor" +msgstr "Düzenleyici" + +#: src/Widgets/SearchWindow.vala:421 +msgid "Search" +msgstr "Ara" + +#: src/Widgets/QuickPreferences.vala:111 src/Widgets/QuickPreferences.vala:206 +#: src/Widgets/QuickPreferences.vala:295 +msgid "Open Export Window" +msgstr "Dışa Aktarma Penceresini Aç" + +#: src/Widgets/QuickPreferences.vala:123 src/Widgets/QuickPreferences.vala:218 +#: src/Widgets/QuickPreferences.vala:307 +msgid "Search Library" +msgstr "Kitaplıkta Ara" + +#: src/Widgets/QuickPreferences.vala:125 src/Widgets/QuickPreferences.vala:220 +#: src/Widgets/QuickPreferences.vala:309 +msgid "Open Search Window" +msgstr "Arama Penceresini Aç" + +#: src/Widgets/ThemeSelector.vala:55 +msgid "Spacing" +msgstr "Boşluk" + +#: src/Widgets/Preferences.vala:858 +msgid "Toggle experimental features" +msgstr "Deneysel özellikleri aç/kapat" + +#: src/Widgets/Preferences.vala:860 +msgid "Enable experimental features" +msgstr "Deneysel özellikleri etkinleştir" + +#: src/Controllers/Dialogs.vala:161 +msgid "Supported files" +msgstr "Desteklenen dosyalar" + +#: src/Controllers/Dialogs.vala:170 +msgid "%s files" +msgstr "%s dosyaları" + +#: src/Widgets/Library.vala:574 +msgid "Open in File Manager" +msgstr "Dosya Yöneticisiyle Aç" + +#: src/Widgets/NewSheet.vala:41 +msgid "Import" +msgstr "İçe Aktar" + +#: src/Widgets/Preferences.vala:125 +msgid " WordPress" +msgstr " WordPress" + +#: src/Constants/ThiefProperties.vala:25 +msgid "The Markdown editor worth stealing" +msgstr "Çalmaya değer Markdown düzenleyici" + +#: src/Constants/ThiefProperties.vala:87 +msgid "Contributors who help make ThiefMD awesome" +msgstr "ThiefMD uygulamasının muhteşem olmasına katkı verenler" + +#: src/Constants/ThiefProperties.vala:89 +msgid "French Translation Contributors" +msgstr "Fransızca Çeviriye Katkıda Bulunanlar" + +#: src/Constants/ThiefProperties.vala:90 +msgid "Slovak Translation Contributors" +msgstr "Slovakça Çeviriye Katkıda Bulunanlar" + +#: src/Constants/ThiefProperties.vala:91 +msgid "Swedish Translation Contributors" +msgstr "İsveççe Çeviriye Katkıda Bulunanlar" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Original Code" +msgstr "Özgün Kod" + +#: src/Constants/ThiefProperties.vala:94 +msgid "Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>" +msgstr "<a href='https://github.com/lainsce/quilter'>Quilter</a> temellidir" + +#: src/Constants/ThiefProperties.vala:94 src/Constants/ThiefProperties.vala:95 +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:102 +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +#: src/Constants/ThiefProperties.vala:106 +#: src/Constants/ThiefProperties.vala:107 +#: src/Constants/ThiefProperties.vala:108 +#: src/Constants/ThiefProperties.vala:109 +msgid "Copyright" +msgstr "Telif Hakkı" + +#: src/Constants/ThiefProperties.vala:94 +msgid "GNU General Public License v3.0" +msgstr "GNU General Public License v3.0" + +#: src/Constants/ThiefProperties.vala:95 src/Constants/ThiefProperties.vala:97 +#: src/Constants/ThiefProperties.vala:98 src/Constants/ThiefProperties.vala:99 +msgid "SIL OPEN FONT LICENSE Version 1.1" +msgstr "SIL OPEN FONT LICENSE Version 1.1" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Preview CSS" +msgstr "CSS Önizle" + +#: src/Constants/ThiefProperties.vala:100 +msgid "Mash up of Splendor and Modest" +msgstr "İhtişam ve Tevazu Karması" + +#: src/Constants/ThiefProperties.vala:100 +#: src/Constants/ThiefProperties.vala:109 +msgid "The MIT License (MIT)" +msgstr "MIT Lisansı (MIT)" + +#: src/Constants/ThiefProperties.vala:102 +msgid "Markdown Parsing" +msgstr "Markdown Ayrıştırma" + +#: src/Constants/ThiefProperties.vala:102 +msgid "BSD-style License" +msgstr "BSD-tarzı Lisans" + +#: src/Constants/ThiefProperties.vala:103 +msgid "Syntax Highlighting" +msgstr "Söz Dizimi Vurgulaması" + +#: src/Constants/ThiefProperties.vala:103 +#: src/Constants/ThiefProperties.vala:107 +msgid "BSD-3-Clause License" +msgstr "BSD-3-Clause License" + +#: src/Constants/ThiefProperties.vala:104 +msgid "Math Rendering" +msgstr "Matematik İşleme" -#: src/Widgets/Notes.vala:58 -msgid "Project Notes" -msgstr "Proje Notları" +#: src/Constants/ThiefProperties.vala:104 +msgid "Khan Academy and other contributors." +msgstr "Khan Academy ve diğer katkıda bulunanlar" + +#: src/Constants/ThiefProperties.vala:96 src/Constants/ThiefProperties.vala:101 +#: src/Constants/ThiefProperties.vala:104 +#: src/Constants/ThiefProperties.vala:105 +msgid "MIT License" +msgstr "MIT License" + +#: src/Constants/ThiefProperties.vala:105 +msgid "XML Parsing" +msgstr "XML Ayrıştırma" + +#: src/Constants/ThiefProperties.vala:106 +msgid "Pandoc Export" +msgstr "Pandoc Dışa Aktar" + +#: src/Constants/ThiefProperties.vala:106 +msgid "John MacFarlane and others" +msgstr "John MacFarlane ve diğerleri" + +#: src/Constants/ThiefProperties.vala:106 +msgid "GNU General Public License v2.0" +msgstr "GNU Genel Kamu Lisansı, Sürüm 2" + +#: src/Constants/ThiefProperties.vala:109 +msgid "libwritegood-vala based on" +msgstr "libwritegood-vala temelli" + +#: src/Constants/ThiefProperties.vala:109 +msgid "write-good: Naive linter for English prose" +msgstr "write-good: İngilizce düz yazı için saf ayıklayıcı" + +#. Needs to be kept in sync with PAPER_SIZES_GTK_NAME +#: src/Constants/ThiefProperties.vala:113 +msgid "A3 (11.7 x 16.5 inches)" +msgstr "A3 (11.7 x 16.5 inç)" + +#: src/Constants/ThiefProperties.vala:114 +msgid "A4 (8 x 11 inches)" +msgstr "A4 (8 x 11 inç)" + +#: src/Constants/ThiefProperties.vala:115 +msgid "A5 (5.8 x 8.3 inches)" +msgstr "A5 (5.8 x 8.3 inç)" + +#: src/Constants/ThiefProperties.vala:116 +msgid "B5 (6.93 x 9.84 inches)" +msgstr "B5 (6.93 x 9.84 inç)" + +#: src/Constants/ThiefProperties.vala:117 +msgid "Executive (7 x 10 inches)" +msgstr "Yönetici (7 x 10 inç)" + +#: src/Constants/ThiefProperties.vala:118 +msgid "Legal (8.5 x 14 inches)" +msgstr "Yasal (8.5 x 14 inç)" + +#: src/Constants/ThiefProperties.vala:119 +msgid "Letter (8.5 x 11 inches)" +msgstr "Mektup (8.5 x 11 inç)" + +#: src/Constants/ThiefProperties.vala:122 +msgid "Don't like what you see? Hit `Ctrl+,` to access the preferences." +msgstr "Gördüklerini beğenmediniz mi? Tercihlere erişmek için `Ctrl+,` tuşlarına basın." + +#: src/Constants/ThiefProperties.vala:123 +msgid "No built in dark mode? Dark themes are available at https://themes.thiefmd.com. Add more in the Preferences (`Ctrl+,`)." +msgstr "Yerleşik karanlık kip yok mu? Karanlık temalar https://themes.thiefmd.com adresinde mevcuttur. Tercihlerden daha fazlasını ekleyin (`Ctrl+,`)." + +#: src/Constants/ThiefProperties.vala:124 +msgid "Don't like how the preview looks? Hit `Ctrl+,` to access the preferences and click Export." +msgstr "Ön izlemenin görünümünü beğenmediniz mi? Tercihlere erişmek için `Ctrl+,` tuşlarına basın ve Dışa Aktar'a tıklayın." + +#: src/Constants/ThiefProperties.vala:125 +msgid "Want to import a ePub, HTML, or DocX? Click Import from the New Sheet prompt." +msgstr "Bir ePub, HTML veya DocX dosyasını içe aktarmak mı istiyorsunuz? Yeni Sayfa isteminden İçe Aktar'a tıklayın." + +#: src/Constants/ThiefProperties.vala:126 +msgid "Ready to publish your great work? Right-click on the folder and choose \"Export Preview\"" +msgstr "Harika çalışmanızı yayınlamaya hazır mısınız? Klasöre sağ tıklayın ve \"Önizlemeyi Dışa Aktar\"ı seçin" + +#: src/Constants/ThiefProperties.vala:127 +msgid "Want to block out distractions? Full-screen is just an `F11` away." +msgstr "Dikkat dağıtıcı şeyleri engellemek mi istiyorsunuz? Tam ekran sadece `F11` uzaklığında." + +#: src/Constants/ThiefProperties.vala:128 +msgid "Quickly switch view modes with `Ctrl+1`, `Ctrl+2`, and `Ctrl+3`." +msgstr "`Ctrl+1`, `Ctrl+2`, ve `Ctrl+3` ile görünüm kipleri arasında hızla geçiş yapın." + +#: src/Constants/ThiefProperties.vala:129 +msgid "Working with a lot of links? Turn on Experimental Mode to make your markdown more readable `Ctrl+Shift+M`." +msgstr "Çok sayıda bağlantıyla mı çalışıyorsunuz? Markdownınızı daha okunabilir hale getirmek için Deneysel Kipi `Ctrl+Shift+M` kısayoluyla açabilirsiniz." + +#: src/Connections/WriteFreelyConnection.vala:127 +msgid "New WriteFreely Connection" +msgstr "Yeni WriteFreely Bağlantısı" + +#: src/Connections/GhostConnection.vala:106 +msgid "New ghost Connection" +msgstr "Yeni Ghost Bağlantısı" + +#: src/Connections/WordpressConnection.vala:109 +msgid "New Wordpress Connection" +msgstr "Yeni Wordpress Bağlantısı" + +#. website = ThiefProperties.URL; +#: src/Widgets/About.vala:94 +msgid "Feedback" +msgstr "Geri Bildirim" + +#. license_type = ThiefProperties.LICENSE_TYPE; +#: src/Widgets/About.vala:99 +msgid "This program comes with absolutely no warranty." +msgstr "Bu program kesinlikle hiçbir garanti vermiyor." + +#: src/Widgets/About.vala:100 +msgid "See the <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU General Public License, version 3 or later</a> for details." +msgstr "Ayrıntılı bilgi için <a href='https://www.gnu.org/licenses/gpl-3.0.html'>GNU Genel Kamu Lisansı, sürüm 3 ya da sonrası</a> sayfasına bakınız." + +#: src/Widgets/Preferences.vala:279 +msgid "Connections" +msgstr "Bağlantılar" + +#: src/Widgets/Preferences.vala:340 +msgid "Remove " +msgstr "Kaldır" + +#: src/Widgets/Preferences.vala:373 +msgid "Display" +msgstr "Görünüm" + +#: src/Widgets/Preferences.vala:377 +msgid "Display Options" +msgstr "Görüntü Seçenekleri" + +#: src/Widgets/Preferences.vala:378 +msgid "Make ThiefMD feel like home." +msgstr "ThiefMDʼyi eviniz gibi hissettirin." + +#: src/Widgets/Preferences.vala:487 +msgid "Compiling Options" +msgstr "Derleme Seçenekleri" + +#: src/Widgets/Preferences.vala:488 +msgid "Adjust how Markdown files are compiled together." +msgstr "Markdown dosyalarının birlikte nasıl derlendiğini ayarlayın." + +#: src/Widgets/Preferences.vala:543 +msgid "Page Setup" +msgstr "Sayfa Ayarları" + +#: src/Widgets/Preferences.vala:544 +msgid "Configure PDF export options." +msgstr "PDF dışa aktarma seçeneklerini yapılandır." + +#: src/Widgets/Preferences.vala:641 +msgid "PDF CSS" +msgstr "PDF CSS" + +#: src/Widgets/Preferences.vala:642 +msgid "Choose CSS Style for PDF Export." +msgstr "PDF Dışa Aktarma için CSS Biçemi seç." + +#: src/Widgets/Preferences.vala:650 +msgid "ePub & HTML CSS" +msgstr "ePub ve HTML CSS" + +#: src/Widgets/Preferences.vala:651 +msgid "Choose CSS Style to use for ePub and HTML Export." +msgstr "ePub ve HTML Dışa Aktarma için kullanılacak CSS Biçemini seç." + +#: src/Widgets/Preferences.vala:684 +msgid "Editor Settings" +msgstr "Düzenleyici Ayarları" + +#: src/Widgets/Preferences.vala:685 +msgid "Modify the ThiefMD environment." +msgstr "ThiefMD ortamını düzenle." + +#: src/Widgets/Preferences.vala:779 +msgid "ThiefMD Settings" +msgstr "ThiefMD Ayarları" + +#: src/Widgets/Preferences.vala:780 +msgid "Modify the ThiefMD appearance." +msgstr "ThiefMD görünümünü değiştir." + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Download" +msgstr "İndir: " + +#: src/Widgets/ThemeSelector.vala:326 +msgid "more themes" +msgstr "daha fazla tema" + +#: src/Widgets/ThemeSelector.vala:326 +msgid "Stored in" +msgstr "Saklanma konumu: " + +#: src/ThiefApp.vala:315 +msgid "Fountain" +msgstr "Fountain" + +#: src/Constants/ThiefProperties.vala:101 +msgid "Fountain Preview and Export" +msgstr "Fountain Önizle ve Dışa Aktar" + +#: src/Exporters/ExportFountain.vala:57 +msgid "Fountain files" +msgstr "Fountain dosyaları" + +#: src/Exporters/ExportFountain.vala:63 +msgid "Export Fountain" +msgstr "Fountain Dışa Aktar" + +#: src/Widgets/HeaderBar.vala:107 +msgid "Show Notes" +msgstr "Notları Göster" + +#: src/Widgets/Sheet.vala:289 +msgid "Copy File Path" +msgstr "Dosya Yolunu Kopyala" + +#: src/Widgets/Editor.vala:1394 +msgid "Insert Citation" +msgstr "Alıntı Ekle" + +#: src/Widgets/Library.vala:639 +msgid "Set Project Icon" +msgstr "Proje Simgesi Ayarla" + +#: src/Widgets/Library.vala:645 +msgid "Folder" +msgstr "Klasör" + +#: src/Widgets/Library.vala:648 +msgid "Reader" +msgstr "Seslendiren" + +#: src/Widgets/Library.vala:651 +msgid "Love" +msgstr "Aşk" + +#: src/Widgets/Library.vala:654 +msgid "Game" +msgstr "Oyun" + +#: src/Widgets/Library.vala:657 +msgid "Art" +msgstr "Art" + +#: src/Widgets/Library.vala:660 +msgid "Nature" +msgstr "Doğa" + +#: src/Widgets/Library.vala:663 +msgid "Food" +msgstr "Yiyecek" + +#: src/Widgets/Library.vala:666 +msgid "Help" +msgstr "Yardım" + +#: src/Widgets/Library.vala:669 +msgid "Cool" +msgstr "Havalı" + +#: src/Widgets/Library.vala:672 +msgid "Angel" +msgstr "Melek" + +#: src/Widgets/Library.vala:675 +msgid "Monkey" +msgstr "Maymun" + +#: src/Widgets/Library.vala:678 +msgid "WordPress" +msgstr "WordPress" + +#: src/Widgets/Library.vala:681 +msgid "Ghost" +msgstr "Ghost" + +#: src/Widgets/Library.vala:684 +msgid "Write Freely" +msgstr "Write Freely" + +#: src/Widgets/Library.vala:687 +msgid "Trash" +msgstr "Çöp" + +#: src/Widgets/Preferences.vala:431 +msgid "Number of Lines to Preview in Sheets View" +msgstr "Sayfa Görünümünde Önizlenecek Satır Sayısı" + +#: src/Widgets/Preferences.vala:765 +msgid "Disable application tips" +msgstr "Uygulama ipuçlarını devre dışı bırak" + +#: src/Widgets/Preferences.vala:766 +msgid "Start with new empty sheet on launch" +msgstr "Başlangıçta yeni boş sayfa ile başla" + +#: src/Enrichments/Fountain.vala:32 +msgid "Characters" +msgstr "Karakterler" + +#: src/Enrichments/Markdown.vala:30 +msgid "Citations" +msgstr "Alıntılar" + +#: src/Constants/ThiefProperties.vala:95 +msgid "Stolen Victory Font" +msgstr "Stolen Victory Yazı Tipi" + +#: src/Constants/ThiefProperties.vala:108 +msgid "Grammar Check" +msgstr "Dil Bilgisi Denetimi" + +#: src/Constants/ThiefProperties.vala:108 +msgid "the AbiSource Community" +msgstr "AbiSource Topluluğu" + +#: src/Constants/ThiefProperties.vala:108 +msgid "GNU Lesser General Public License v2.1" +msgstr "Kısıtlı GNU Genel Kamu Lisansı, sürüm 2.1" + +#: src/Widgets/QuickPreferences.vala:71 +msgid "Check Grammar" +msgstr "Dil Bilgisi Denetimi" + +#: src/Widgets/QuickPreferences.vala:74 +msgid "Toggle Grammar Checking" +msgstr "Dil Bilgisi Denetimini Aç/Kapat" + +#: src/Widgets/QuickPreferences.vala:87 +msgid "Grammar check is not available for your language" +msgstr "Dil bilgisi denetimi dilinizde kullanılamıyor" + +#: src/Constants/ThiefProperties.vala:88 +msgid "Czech Translation Contributors" +msgstr "Çekçe Çeviriye Katkıda Bulunanlar" + +#: src/Constants/ThiefProperties.vala:107 +msgid "PDF Export" +msgstr "PDF Dışa Aktar" + +#: src/Constants/ThiefProperties.vala:107 +msgid "Simon Sapin and contributors" +msgstr "Simon Sapin ve katkıda bulunanlar" + +#: src/Controllers/FileManager.vala:39 +msgid "Stealing file contents..." +msgstr "Dosya içerikleri çalınıyor..." + +#: src/Controllers/FileManager.vala:40 +msgid "This isn't plagiarism, it's a remix!" +msgstr "Bu intihal değil, bir remix!" + +#: src/Controllers/FileManager.vala:41 +msgid "NYT Best Seller, here we come!" +msgstr "NYT En Çok Satanları, biz geliyoruz!" + +#: src/Connections/WriteFreelyConnection.vala:233 +msgid "Taking your words, and letting them go... to the internet!" +msgstr "Sözlerinizi alınıyor ve internete gönderiliyor!" + +#: src/Connections/WriteFreelyConnection.vala:234 +msgid "Mhm... I see and I ship." +msgstr "Hımm... Görüyorum ve gönderiyorum." + +#: src/Connections/WriteFreelyConnection.vala:235 +msgid "Is this a selfie, and you're happy to see me?" +msgstr "Bu bir selfie mi ve beni gördüğüne sevindin mi?" + +#: src/Connections/GhostConnection.vala:192 +msgid "Your words are like Casper... Friendly!" +msgstr "Sözlerin Casper gibi... Dostça!" + +#: src/Connections/GhostConnection.vala:193 +msgid "I see your words, and I'm taking them to the internet!" +msgstr "Sözlerini görüyorum ve onları internete taşıyorum!" + +#: src/Connections/GhostConnection.vala:194 +msgid "Booooooooooo! (That's Ghost speak for Great Work!)" +msgstr "Öcüüüüüüü! (Bu Ghost, Great Work adına konuşuyor!)" + +#: src/Connections/WordpressConnection.vala:192 +msgid "Taking it to the internet!" +msgstr "İnternete taşıyor!" + +#: src/Connections/WordpressConnection.vala:193 +msgid "Don't forget to share on reddit." +msgstr "Redditʼte paylaşmayı unutmayın." + +#: src/Connections/WordpressConnection.vala:194 +msgid "Pressing words together..." +msgstr "Kelimeler birbirine basılıyor..." + +#: src/Exporters/ExportPdf.vala:149 +msgid "Simply Shakespearean." +msgstr "Shakespeare Gibi." + +#: src/Exporters/ExportPdf.vala:150 +msgid "Hmm... that's interesting..." +msgstr "Hmm... Bu ilginç..." + +#: src/Exporters/ExportPdf.vala:151 +msgid "Your writing is insightful." +msgstr "Yazınız ilham verici." + +#: src/Widgets/Preferences.vala:83 src/Widgets/Preferences.vala:117 +#: src/Widgets/Preferences.vala:151 src/Widgets/Preferences.vala:185 +#: src/Widgets/Preferences.vala:219 src/Widgets/Preferences.vala:264 +msgid "Connection Error" +msgstr "Bağlantı Hatası" + +#: src/Widgets/Preferences.vala:159 +msgid " Medium" +msgstr " Medium" + +#: src/Widgets/Preferences.vala:193 +msgid " Forem" +msgstr " Forem" + +#: src/Widgets/Preferences.vala:227 +msgid " Hashnode" +msgstr " Hashnode" + +#: src/Constants/ThiefProperties.vala:92 +msgid "German Translation Contributors" +msgstr "Almanca Çeviriye Katkıda Bulunanlar" + +#: src/Constants/ThiefProperties.vala:93 +msgid "Finnish Translation Contributors" +msgstr "Fince Çeviriye Katkıda Bulunanlar" + +#: src/Connections/WordpressConnection.vala:89 +msgid "Application Password" +msgstr "" -#: src/Widgets/Notes.vala:58 -msgid "Select an item from the Library to open or create a new Sheet." -msgstr "Yeni Sayfa açmak veya oluşturmak için Kitaplıktan bir öge seçin." diff --git a/src/Constants/ThiefProperties.vala b/src/Constants/ThiefProperties.vala index e3ee7fb6..8a4f9b24 100644 --- a/src/Constants/ThiefProperties.vala +++ b/src/Constants/ThiefProperties.vala @@ -92,6 +92,7 @@ namespace ThiefMD { giants.add (_("German Translation Contributors") + ":\nHelix and Fish\n"); giants.add (_("Finnish Translation Contributors") + ":\nJiri Grönroos\n"); giants.add (_("Polish Translation Contributors") + ":\nŁukasz Horodecki\n"); + giants.add (_("Turkish Translation Contributors") + ":\nSabri Ünal\n"); giants.add (_("Original Code") + ":\n" + _("Based on <a href='https://github.com/lainsce/quilter'>Quilter</a>") + "\n" + _("Copyright") + " © 2017 Lains.\n<a href='https://github.com/lainsce/quilter/blob/master/LICENSE'>" + _("GNU General Public License v3.0") + "</a>" + "\n"); giants.add (_("Stolen Victory Font") + ":\nModified <a href='https://github.com/iaolo/iA-Fonts'>iA Writer Duospace</a>\n" + _("Copyright") + " © 2018 Information Architects Inc.\nwith Reserved Font Name \"iA Writer\"\n<a href='https://github.com/iaolo/iA-Fonts/blob/master/iA%20Writer%20Duospace/LICENSE.md'>" + _("SIL OPEN FONT LICENSE Version 1.1") + "</a>"); giants.add ("Modified <a href='https://rubjo.github.io/victor-mono/'>Victor Mono</a>\n" + _("Copyright") + " © 2019 Rune Bjørnerås\n<a href='https://github.com/rubjo/victor-mono/blob/master/LICENSE'>" + _("MIT License") + "</a>");