From 871d6d543c8e1f5426e1a2622f5a00451e95d143 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sat, 20 Sep 2025 15:33:33 +0200 Subject: [PATCH 01/38] Use enum instead of magic string --- po/POTFILES | 1 + src/Application.vala | 2 +- src/Objects/NoteData.vala | 15 +++--- src/Objects/Themes.vala | 18 ++++++- src/Services/Constants.vala | 2 +- src/Services/NoteManager.vala | 2 +- src/Services/Utils.vala | 8 +-- src/Views/PopoverView.vala | 9 +--- src/Widgets/ColorBox.vala | 82 +++++++++++++++++++------------ src/Widgets/ColorPill.vala | 16 ++++-- src/Windows/StickyNoteWindow.vala | 32 ++++++------ 11 files changed, 113 insertions(+), 74 deletions(-) diff --git a/po/POTFILES b/po/POTFILES index c7763b75..d8cb6b10 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -4,6 +4,7 @@ src/Views/PopoverView.vala src/Widgets/ColorBox.vala src/Widgets/MonospaceBox.vala src/Widgets/ZoomBox.vala +src/Objects/Themes.vala src/Views/PreferencesView.vala src/Windows/StickyNoteWindow.vala src/Windows/PreferenceWindow.vala diff --git a/src/Application.vala b/src/Application.vala index 78e0f8b0..9f3e7565 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -101,7 +101,7 @@ public class Jorts.Application : Gtk.Application { var granite_settings = Granite.Settings.get_default (); var gtk_settings = Gtk.Settings.get_default (); gtk_settings.gtk_icon_theme_name = "elementary"; - gtk_settings.gtk_theme_name = "io.elementary.stylesheet." + Jorts.Constants.DEFAULT_THEME.ascii_down(); + gtk_settings.gtk_theme_name = "io.elementary.stylesheet." + Jorts.Constants.DEFAULT_THEME.to_string ().ascii_down (); // Also follow dark if system is dark lIke mY sOul. gtk_settings.gtk_application_prefer_dark_theme = ( diff --git a/src/Objects/NoteData.vala b/src/Objects/NoteData.vala index a0166d38..43af2b46 100644 --- a/src/Objects/NoteData.vala +++ b/src/Objects/NoteData.vala @@ -13,12 +13,12 @@ public class Jorts.NoteData : Object { // Will determine properties (or lack thereof) for any new note - public static string? latest_theme = Jorts.Constants.DEFAULT_THEME; + public static Jorts.Themes latest_theme = Jorts.Constants.DEFAULT_THEME; public static int? latest_zoom = Jorts.Constants.DEFAULT_ZOOM; public static bool latest_mono = Jorts.Constants.DEFAULT_MONO; public string title; - public string theme; + public Jorts.Themes theme; public string content; public bool monospace; public int zoom; @@ -29,7 +29,7 @@ public class Jorts.NoteData : Object { /** * Convert into a Json.Object() */ - public NoteData (string? title = null, string? theme = null, string? content = null, + public NoteData (string? title = null, Jorts.Themes? theme = null, string? content = null, bool? monospace = null, int? zoom = null, int? width = null, int? height = null) { // We assign defaults in case theres args missing @@ -47,8 +47,11 @@ public class Jorts.NoteData : Object { * Parse a node to create an associated NoteData object */ public NoteData.from_json (Json.Object node) { + + print ("\nload json"); title = node.get_string_member_with_default ("title",(_("Forgot title!"))); - theme = node.get_string_member_with_default ("theme",Jorts.Utils.random_theme (null)); + var themestring = node.get_string_member_with_default ("theme",Jorts.Utils.random_theme (null).to_string ()); + theme = Jorts.Themes.from_string (themestring); content = node.get_string_member_with_default ("content",""); monospace = node.get_boolean_member_with_default ("monospace",Jorts.Constants.DEFAULT_MONO); zoom = (int)node.get_int_member_with_default ("zoom",Jorts.Constants.DEFAULT_ZOOM); @@ -68,7 +71,7 @@ public class Jorts.NoteData : Object { */ public NoteData.from_random () { title = title ?? Jorts.Utils.random_title (); - theme = theme ?? Jorts.Utils.random_theme (latest_theme); + theme = Jorts.Utils.random_theme (latest_theme); content = content ?? ""; monospace = latest_mono; zoom = latest_zoom; @@ -88,7 +91,7 @@ public class Jorts.NoteData : Object { builder.set_member_name ("title"); builder.add_string_value (title); builder.set_member_name ("theme"); - builder.add_string_value (theme); + builder.add_string_value (theme.to_string ()); builder.set_member_name ("content"); builder.add_string_value (content); builder.set_member_name ("monospace"); diff --git a/src/Objects/Themes.vala b/src/Objects/Themes.vala index 5e5b9c01..c740e9e0 100644 --- a/src/Objects/Themes.vala +++ b/src/Objects/Themes.vala @@ -37,7 +37,23 @@ public enum Jorts.Themes { } } - public Themes from_string (string wtf_is_this) { + public string to_nicename () { + switch (this) { + case BLUEBERRY: return _("Blueberry"); + case MINT: return _("Mint"); + case LIME: return _("Lime"); + case BANANA: return _("Banana"); + case ORANGE: return _("Orange"); + case STRAWBERRY: return _("Strawberry"); + case BUBBLEGUM: return _("Slate"); + case GRAPE: return _("Grape"); + case COCOA: return _("Cocoa"); + case SLATE: return _("Slate"); + default: assert_not_reached (); + } + } + + public static Themes from_string (string wtf_is_this) { switch (wtf_is_this.ascii_up ()) { case "BLUEBERRY": return BLUEBERRY; case "MINT": return MINT; diff --git a/src/Services/Constants.vala b/src/Services/Constants.vala index b47c1a07..01d5059b 100644 --- a/src/Services/Constants.vala +++ b/src/Services/Constants.vala @@ -18,7 +18,7 @@ namespace Jorts.Constants { const string DONATE_LINK = "https://ko-fi.com/teamcons"; // signature theme - const string DEFAULT_THEME = "BLUEBERRY"; + const Jorts.Themes DEFAULT_THEME = Jorts.Themes.BLUEBERRY; const int DAYS_BETWEEN_BACKUPS = 30; diff --git a/src/Services/NoteManager.vala b/src/Services/NoteManager.vala index 308c9cd4..20a735e6 100644 --- a/src/Services/NoteManager.vala +++ b/src/Services/NoteManager.vala @@ -37,7 +37,7 @@ public class Jorts.NoteManager : Object { if (loaded_data.get_length () == 0) { var note_data = new NoteData.from_random (); - note_data.theme = "BLUEBERRY"; + note_data.theme = Constants.DEFAULT_THEME; create_note (note_data); } else { diff --git a/src/Services/Utils.vala b/src/Services/Utils.vala index 750d536a..872fb690 100644 --- a/src/Services/Utils.vala +++ b/src/Services/Utils.vala @@ -67,9 +67,9 @@ namespace Jorts.Utils { // Spits out a random theme for a new note // If there is the name of a string to skip, just skip it. // Having an gee.arraylist defined from the start only causes issues - public string random_theme (string? skip_theme = null) { - Gee.ArrayList themes = new Gee.ArrayList (); - themes.add_all_array (Jorts.Themes.all_string ()); + public Jorts.Themes random_theme (Jorts.Themes? skip_theme = null) { + Gee.ArrayList themes = new Gee.ArrayList (); + themes.add_all_array (Jorts.Themes.all ()); if (skip_theme != null) { themes.remove(skip_theme); @@ -177,7 +177,7 @@ Nobody will believe you hehehe ;) I hope my little app brings you a lot of joy Have a great day!🎇 """); - blank_slate.theme = "BANANA"; + blank_slate.theme = Jorts.Themes.BANANA; } return blank_slate; diff --git a/src/Views/PopoverView.vala b/src/Views/PopoverView.vala index 6dbb4da6..e73de3bd 100644 --- a/src/Views/PopoverView.vala +++ b/src/Views/PopoverView.vala @@ -12,13 +12,11 @@ public Jorts.MonospaceBox monospace_box; public Jorts.ZoomBox font_size_box; - public string theme; + public Jorts.Themes theme; public int zoom; /* THEME SELECTION */ - public string selected; - - public signal void theme_changed (string selected); + public signal void theme_changed (Jorts.Themes selected); public signal void zoom_changed (Jorts.Zoomkind zoomkind); public signal void monospace_changed (bool if_monospace); @@ -32,10 +30,7 @@ }; color_button_box = new Jorts.ColorBox (); - - monospace_box = new Jorts.MonospaceBox (); - font_size_box = new Jorts.ZoomBox (); /* APPENDS */ diff --git a/src/Widgets/ColorBox.vala b/src/Widgets/ColorBox.vala index 96e180f6..66aa91eb 100644 --- a/src/Widgets/ColorBox.vala +++ b/src/Widgets/ColorBox.vala @@ -12,8 +12,13 @@ I just dont wanna rewrite the same button over and over public class Jorts.ColorBox : Gtk.Box { - public signal void theme_changed (string selected); - public string theme; + private Themes _color = Constants.DEFAULT_THEME; + public Jorts.Themes color { + get {return _color;} + set {set_all_toggles (value);} + } + public signal void theme_changed (Themes selected); + private Jorts.ColorPill color_button_blueberry; private Jorts.ColorPill color_button_lime; @@ -35,16 +40,16 @@ public class Jorts.ColorBox : Gtk.Box { margin_end = 12; //TRANSLATORS: Shown as a tooltip when people hover a color theme - color_button_blueberry = new ColorPill (_("Blueberry"), "blueberry"); - color_button_lime = new ColorPill (_("Lime"), "lime"); - color_button_mint = new ColorPill (_("Mint"), "mint"); - color_button_banana = new ColorPill (_("Banana"), "banana"); - color_button_strawberry = new ColorPill (_("Strawberry"), "strawberry"); - color_button_orange = new ColorPill (_("Orange"), "orange"); - color_button_bubblegum = new ColorPill (_("Bubblegum"), "bubblegum"); - color_button_grape = new ColorPill (_("Grape"),"grape"); - color_button_cocoa = new ColorPill (_("Cocoa"), "cocoa"); - color_button_slate = new ColorPill (_("Slate"),"slate"); + color_button_blueberry = new ColorPill (Jorts.Themes.BLUEBERRY); + color_button_lime = new ColorPill (Jorts.Themes.LIME); + color_button_mint = new ColorPill (Jorts.Themes.MINT); + color_button_banana = new ColorPill (Jorts.Themes.BANANA); + color_button_strawberry = new ColorPill (Jorts.Themes.STRAWBERRY); + color_button_orange = new ColorPill (Jorts.Themes.ORANGE); + color_button_bubblegum = new ColorPill (Jorts.Themes.BUBBLEGUM); + color_button_grape = new ColorPill (Jorts.Themes.GRAPE); + color_button_cocoa = new ColorPill (Jorts.Themes.COCOA); + color_button_slate = new ColorPill (Jorts.Themes.SLATE); color_button_lime.set_group (color_button_blueberry); color_button_mint.set_group (color_button_blueberry); @@ -57,16 +62,16 @@ public class Jorts.ColorBox : Gtk.Box { color_button_slate.set_group (color_button_blueberry); // Emit a signal when a button is toggled - color_button_blueberry.toggled.connect (() => {theme_changed ("BLUEBERRY");}); - color_button_orange.toggled.connect (() => {theme_changed ("ORANGE");}); - color_button_mint.toggled.connect (() => {theme_changed ("MINT");}); - color_button_banana.toggled.connect (() => {theme_changed ("BANANA");}); - color_button_lime.toggled.connect (() => {theme_changed ("LIME");}); - color_button_strawberry.toggled.connect (() => {theme_changed ("STRAWBERRY");}); - color_button_bubblegum.toggled.connect (() => {theme_changed ("BUBBLEGUM");}); - color_button_grape.toggled.connect (() => {theme_changed ("GRAPE");}); - color_button_cocoa.toggled.connect (() => {theme_changed ("COCOA");}); - color_button_slate.toggled.connect (() => {theme_changed ("SLATE");}); + color_button_blueberry.selected.connect (on_selected); + color_button_orange.selected.connect (on_selected); + color_button_mint.selected.connect (on_selected); + color_button_banana.selected.connect (on_selected); + color_button_lime.selected.connect (on_selected); + color_button_strawberry.selected.connect (on_selected); + color_button_bubblegum.selected.connect (on_selected); + color_button_grape.selected.connect (on_selected); + color_button_cocoa.selected.connect (on_selected); + color_button_slate.selected.connect (on_selected); append (color_button_blueberry); append (color_button_mint); @@ -81,15 +86,28 @@ public class Jorts.ColorBox : Gtk.Box { } public void set_toggles (string theme) { - color_button_blueberry.set_active ((theme == "BLUEBERRY")); - color_button_lime.set_active ((theme == "LIME")); - color_button_mint.set_active ((theme == "MINT")); - color_button_banana.set_active ((theme == "BANANA")); - color_button_strawberry.set_active ((theme == "STRAWBERRY")); - color_button_orange.set_active ((theme == "ORANGE")); - color_button_bubblegum.set_active ((theme == "BUBBLEGUM")); - color_button_grape.set_active ((theme == "GRAPE")); - color_button_cocoa.set_active ((theme == "COCOA")); - color_button_slate.set_active ((theme == "SLATE")); + + } + + + + private void on_selected (Jorts.Themes color) { + _color = color; + theme_changed (color); } + + private void set_all_toggles (Jorts.Themes color) { + _color = color; + color_button_blueberry.set_active ((color == color_button_blueberry.color)); + color_button_lime.set_active ((color == color_button_blueberry.color)); + color_button_mint.set_active ((color == color_button_blueberry.color)); + color_button_banana.set_active ((color == color_button_blueberry.color)); + color_button_strawberry.set_active ((color == color_button_blueberry.color)); + color_button_orange.set_active ((color == color_button_blueberry.color)); + color_button_bubblegum.set_active ((color == color_button_blueberry.color)); + color_button_grape.set_active ((color == color_button_blueberry.color)); + color_button_cocoa.set_active ((color == color_button_blueberry.color)); + color_button_slate.set_active ((color == color_button_blueberry.color)); + } + } diff --git a/src/Widgets/ColorPill.vala b/src/Widgets/ColorPill.vala index 4b49bd43..63b42504 100644 --- a/src/Widgets/ColorPill.vala +++ b/src/Widgets/ColorPill.vala @@ -10,17 +10,27 @@ I just dont wanna rewrite the same button over and over */ public class Jorts.ColorPill : Gtk.CheckButton { - public ColorPill (string tooltip, string colorclass) { + public Jorts.Themes color; + public signal void selected (Jorts.Themes color); + + public ColorPill (Jorts.Themes? theme = (null)) { + this.color = theme; add_css_class ("colorpill"); - add_css_class (colorclass); + add_css_class (theme.to_string ().ascii_down ()); set_size_request (24, 24); - set_tooltip_text (tooltip); + set_tooltip_text (theme.to_nicename ()); add_css_class (Granite.STYLE_CLASS_COLOR_BUTTON); margin_top = 0; margin_bottom = 0; margin_start = 0; margin_end = 0; + + this.toggled.connect (on_connect); + } + + public void on_connect () { + selected (color); } } diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 299fd612..8be5de52 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -33,9 +33,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { private PopoverView popover; public TextView textview; - private string _theme; - - public string theme { + private Jorts.Themes _theme; + public Jorts.Themes theme { get { return _theme;} set {on_theme_changed (value);} } @@ -81,7 +80,6 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { public StickyNoteWindow (Gtk.Application app, NoteData data) { Intl.setlocale (); debug ("[STICKY NOTE] New StickyNoteWindow instance!"); - application = app; var actions = new SimpleActionGroup (); @@ -122,6 +120,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { view.delete_item.action_name = ACTION_PREFIX + ACTION_DELETE; textview = view.textview; + print ("\npopover"); + popover = new Jorts.PopoverView (); view.menu_button.popover = popover; @@ -139,14 +139,14 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { title = editableheader.text + _(" - Jorts"); view.textview.buffer.text = data.content; - - popover.color_button_box.set_toggles (data.theme); + popover.color_button_box.color = data.theme; this.zoom = data.zoom; this.monospace = data.monospace; this.theme = data.theme; + /***************************************************/ /* CONNECTS AND BINDS */ /***************************************************/ @@ -157,13 +157,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { editableheader.changed.connect (on_editable_changed); view.textview.buffer.changed.connect (debounce_save); - // The settings popover tells us a new theme has been chosen! popover.theme_changed.connect (on_theme_changed); - - // The settings popover tells us a new zoom has been chosen! popover.monospace_changed.connect (on_monospace_changed); - - // The settings popover tells us a new zoom has been chosen! popover.zoom_changed.connect (on_zoom_changed); // Use the color theme of this sticky note when focused @@ -221,7 +216,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { debug ("Focus changed!"); if (this.is_active) { - var stylesheet = "io.elementary.stylesheet." + this.theme.ascii_down (); + var stylesheet = "io.elementary.stylesheet." + this.theme.to_string ().ascii_down (); gtk_settings.gtk_theme_name = stylesheet; } @@ -261,18 +256,19 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { // Switches stylesheet // First use appropriate stylesheet, Then switch the theme classes - private void on_theme_changed (string new_theme) { - debug ("Updating theme to %s".printf (new_theme)); + private void on_theme_changed (Jorts.Themes new_theme) { + debug ("Updating theme to %s".printf (new_theme.to_string ())); - var stylesheet = "io.elementary.stylesheet." + new_theme.ascii_down (); + var stylesheet = "io.elementary.stylesheet." + new_theme.to_string ().ascii_down (); this.gtk_settings.gtk_theme_name = stylesheet; - if (_theme in css_classes) { - remove_css_class (_theme); + var _theme_str = _theme.to_string (); + if (_theme_str in css_classes) { + remove_css_class (_theme_str); } _theme = new_theme; - add_css_class (new_theme); + add_css_class (new_theme.to_string ()); NoteData.latest_theme = new_theme; changed (); } From 553a35a541b00051fd570dabf1f8a9231faf224e Mon Sep 17 00:00:00 2001 From: teamcons Date: Sat, 20 Sep 2025 19:22:19 +0200 Subject: [PATCH 02/38] Introduce a Zoom enum to replace magic numbers --- src/Objects/Zoom.vala | 128 ++++++++++++++++++++++++++++++++++++++ src/Objects/Zoomkind.vala | 4 ++ 2 files changed, 132 insertions(+) create mode 100644 src/Objects/Zoom.vala diff --git a/src/Objects/Zoom.vala b/src/Objects/Zoom.vala new file mode 100644 index 00000000..de7c661f --- /dev/null +++ b/src/Objects/Zoom.vala @@ -0,0 +1,128 @@ +/* + * SPDX-License-Identifier: GPL-3.0-or-later + * SPDX-FileCopyrightText: 2017-2024 Lains + * 2025 Stella & Charlie (teamcons.carrd.co) + * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) + */ + +/*************************************************/ +/** +* A register of all possible zoom values we have +*/ +public enum Jorts.Zoom { + ANTSIZED, + MUCHSMALLER, + SMALLER, + SMALL, + NORMAL, + BIG, + BIGGER, + MUCHBIGGER, + MUCHMUCHBIGGER, + HUGE, + SUPERHUGE, + MEGAHUGE, + ULTRAHUGE, + MASSIVE + URMOM; + + /*************************************************/ + /** + * Returns an Int representation we can use to display and store the value + */ + public int to_int () { + switch (this) { + case ANTSIZED: return 20; + case MUCHSMALLER: return 40; + case SMALLER: return 60; + case SMALL: return 80; + case NORMAL: return 100; + case BIG: return 120; + case BIGGER: return 140; + case MUCHBIGGER: return 160; + case MUCHMUCHBIGGER: return 180; + case HUGE: return 200; + case SUPERHUGE: return 220; + case MEGAHUGE: return 240; + case ULTRAHUGE: return 260; + case MASSIVE: return 280; + case URMOM: return 300; + default: return 100; + } + } + + /*************************************************/ + /** + * We cannot save Enums in JSON, so this recovers the enum from stored int + */ + public static Zoom from_int (int wtf_is_this) { + switch (wtf_is_this) { + case 20: return ANTSIZED; + case 40: return MUCHSMALLER; + case 60: return SMALLER; + case 80: return SMALL; + case 100: return NORMAL; + case 120: return BIG; + case 140: return BIGGER; + case 160: return MUCHBIGGER; + case 180: return MUCHMUCHBIGGER; + case 200: return HUGE; + case 220: return SUPERHUGE; + case 240: return MEGAHUGE; + case 260: return ULTRAHUGE; + case 280: return MASSIVE; + case 300: return URMOM; + default: return NORMAL; + } + } + + /*************************************************/ + /** + * We cannot use numbers in CSS, so we have to translate a number into a string + */ + public string to_class () { + switch (this) { + case ANTSIZED: return "antsized"; + case MUCHSMALLER: return "muchsmaller"; + case SMALLER: return "smaller"; + case SMALL: return "small"; + case NORMAL: return "normal_zoom"; + case BIG: return "big"; + case BIGGER: return "bigger"; + case MUCHBIGGER: return "muchbigger"; + case MUCHMUCHBIGGER: return "muchmuchbigger"; + case HUGE: return "huge"; + case SUPERHUGE: return "superhuge"; + case MEGAHUGE: return "megahuge"; + case ULTRAHUGE: return "ultrahuge"; + case MASSIVE: return "massive"; + case URMOM: return "urmom"; + default: return "normal_zoom"; + } + } + + /*************************************************/ + /** + * We have to scale some UI elements according to zoom + */ + public int to_size () { + switch (this) { + case ANTSIZED: return 24; + case MUCHSMALLER: return 26; + case SMALLER: return 28; + case SMALL: return 30; + case NORMAL: return 32; + case BIG: return 34; + case BIGGER: return 38; + case MUCHBIGGER: return 40; + case MUCHMUCHBIGGER: return 44; + case HUGE: return 48; + case SUPERHUGE: return 52; + case MEGAHUGE: return 54; + case ULTRAHUGE: return 56; + case MASSIVE: return 60; + case URMOM: return 64; + default: return 32; + } + } +} \ No newline at end of file diff --git a/src/Objects/Zoomkind.vala b/src/Objects/Zoomkind.vala index 26c8904f..b8f90911 100644 --- a/src/Objects/Zoomkind.vala +++ b/src/Objects/Zoomkind.vala @@ -5,6 +5,10 @@ * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) */ + /*************************************************/ +/** +* Used in a signal to tell windows in which way to change zoom +*/ public enum Jorts.Zoomkind { ZOOM_OUT, DEFAULT_ZOOM, From b73b07f06ee9dc849acb4511805fc8d8506b8edd Mon Sep 17 00:00:00 2001 From: teamcons Date: Sat, 20 Sep 2025 20:00:36 +0200 Subject: [PATCH 03/38] Some more documentation --- src/Objects/Themes.vala | 32 +++++++++++++++++++++++++++++-- src/Services/Utils.vala | 24 ++++++++++++++--------- src/Views/PopoverView.vala | 3 +-- src/Widgets/ColorPill.vala | 7 ++++--- src/Widgets/MonospaceBox.vala | 4 ++++ src/Windows/StickyNoteWindow.vala | 9 +++------ 6 files changed, 57 insertions(+), 22 deletions(-) diff --git a/src/Objects/Themes.vala b/src/Objects/Themes.vala index c740e9e0..bc8aaa9b 100644 --- a/src/Objects/Themes.vala +++ b/src/Objects/Themes.vala @@ -21,6 +21,10 @@ public enum Jorts.Themes { COCOA, SLATE; + /*************************************************/ + /** + * for use in CSS. Ex: @BLUEBERRY_500 + */ public string to_string () { switch (this) { case BLUEBERRY: return "BLUEBERRY"; @@ -33,10 +37,22 @@ public enum Jorts.Themes { case GRAPE: return "GRAPE"; case COCOA: return "COCOA"; case SLATE: return "SLATE"; - default: assert_not_reached (); + default: return "BLUEBERRY"; } } + /*************************************************/ + /** + * for use to pinpoint to the correct elementary stylesheet + */ + public string to_css_class () { + return this.to_string ().ascii_down (); + } + + /*************************************************/ + /** + * for the UI, as translated, proper name + */ public string to_nicename () { switch (this) { case BLUEBERRY: return _("Blueberry"); @@ -49,10 +65,14 @@ public enum Jorts.Themes { case GRAPE: return _("Grape"); case COCOA: return _("Cocoa"); case SLATE: return _("Slate"); - default: assert_not_reached (); + default: return _("Blueberry"); } } + /*************************************************/ + /** + * recover Enum from a stored string, using when loading from storage + */ public static Themes from_string (string wtf_is_this) { switch (wtf_is_this.ascii_up ()) { case "BLUEBERRY": return BLUEBERRY; @@ -69,10 +89,18 @@ public enum Jorts.Themes { } } + /*************************************************/ + /** + * convenient list of all supported themes + */ public static Themes[] all () { return {BLUEBERRY, MINT, LIME, BANANA, ORANGE, STRAWBERRY, BUBBLEGUM, GRAPE, COCOA, SLATE}; } + /*************************************************/ + /** + * convenient list of all supported themes + */ public static string[] all_string () { return {"BLUEBERRY", "MINT", "LIME", "BANANA", "ORANGE", "STRAWBERRY", "BUBBLEGUM", "GRAPE", "COCOA", "SLATE"}; } diff --git a/src/Services/Utils.vala b/src/Services/Utils.vala index 872fb690..b36c0850 100644 --- a/src/Services/Utils.vala +++ b/src/Services/Utils.vala @@ -64,9 +64,10 @@ namespace Jorts.Utils { } /*************************************************/ - // Spits out a random theme for a new note - // If there is the name of a string to skip, just skip it. - // Having an gee.arraylist defined from the start only causes issues + /** + * Used for new notes without data. Optionally allows to skip one + * This avoids generating notes "randomly" with the same themes, which would be boring + */ public Jorts.Themes random_theme (Jorts.Themes? skip_theme = null) { Gee.ArrayList themes = new Gee.ArrayList (); themes.add_all_array (Jorts.Themes.all ()); @@ -79,9 +80,10 @@ namespace Jorts.Utils { return themes[random_in_range]; } - /*************************************************/ - // Spits out a cute or funny random title for a new sticky note + /** + * Placeholders for titles + */ ///TRANSLATORS: It does not need to match source 1:1 - avoid anything that could be rude or cold sounding public string random_title () { string[] alltitles = { @@ -142,9 +144,11 @@ namespace Jorts.Utils { } /*************************************************/ - // Spits out a cute or funny random title for a new sticky note + /** + * Generates emotes for the emote menu button + * Optionally, skips one (typically the one to change from) + */ public string random_emote (string? skip_emote = null) { - Gee.ArrayList allemotes = new Gee.ArrayList (); allemotes.add_all_array (Jorts.Constants.EMOTES); @@ -157,8 +161,10 @@ namespace Jorts.Utils { } /*************************************************/ - // Hey! Looking in the source code is cheating! - + /** + * Hey! Looking in the source code is cheating! + * Only for new notes which are not the first one + */ public NoteData golden_sticky (NoteData blank_slate) { var random_in_range = Random.int_range (0, 1000); diff --git a/src/Views/PopoverView.vala b/src/Views/PopoverView.vala index e73de3bd..32019f47 100644 --- a/src/Views/PopoverView.vala +++ b/src/Views/PopoverView.vala @@ -5,8 +5,7 @@ * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) */ - - public class Jorts.PopoverView : Gtk.Popover { +public class Jorts.PopoverView : Gtk.Popover { public Jorts.ColorBox color_button_box; public Jorts.MonospaceBox monospace_box; diff --git a/src/Widgets/ColorPill.vala b/src/Widgets/ColorPill.vala index 63b42504..2982088d 100644 --- a/src/Widgets/ColorPill.vala +++ b/src/Widgets/ColorPill.vala @@ -6,9 +6,10 @@ */ /* -I just dont wanna rewrite the same button over and over -*/ +/** +* I just dont wanna rewrite the same button over and over +*/ public class Jorts.ColorPill : Gtk.CheckButton { public Jorts.Themes color; public signal void selected (Jorts.Themes color); @@ -17,7 +18,7 @@ public class Jorts.ColorPill : Gtk.CheckButton { this.color = theme; add_css_class ("colorpill"); - add_css_class (theme.to_string ().ascii_down ()); + add_css_class (theme.to_css_class ()); set_size_request (24, 24); set_tooltip_text (theme.to_nicename ()); add_css_class (Granite.STYLE_CLASS_COLOR_BUTTON); diff --git a/src/Widgets/MonospaceBox.vala b/src/Widgets/MonospaceBox.vala index 07be5653..684772e7 100644 --- a/src/Widgets/MonospaceBox.vala +++ b/src/Widgets/MonospaceBox.vala @@ -5,6 +5,10 @@ * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) */ +/** +* Small horizontal box with two toggles +* Allows user to switch between normal and monospace font +*/ public class Jorts.MonospaceBox : Gtk.Box { private Gtk.ToggleButton mono_monospace_toggle; diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 8be5de52..37ff9e61 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -120,8 +120,6 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { view.delete_item.action_name = ACTION_PREFIX + ACTION_DELETE; textview = view.textview; - print ("\npopover"); - popover = new Jorts.PopoverView (); view.menu_button.popover = popover; @@ -259,12 +257,11 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { private void on_theme_changed (Jorts.Themes new_theme) { debug ("Updating theme to %s".printf (new_theme.to_string ())); - var stylesheet = "io.elementary.stylesheet." + new_theme.to_string ().ascii_down (); + var stylesheet = "io.elementary.stylesheet." + new_theme.to_css_class (); this.gtk_settings.gtk_theme_name = stylesheet; - var _theme_str = _theme.to_string (); - if (_theme_str in css_classes) { - remove_css_class (_theme_str); + if (_theme.to_string () in css_classes) { + remove_css_class (_theme.to_string ()); } _theme = new_theme; From 0a46a3c4678970ca6561f0d3b5f0a0e8e65a4b49 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 21 Sep 2025 01:50:19 +0200 Subject: [PATCH 04/38] Animate actionbar showing up --- src/Views/NoteView.vala | 3 ++- src/Windows/StickyNoteWindow.vala | 29 +++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/src/Views/NoteView.vala b/src/Views/NoteView.vala index 4fc4411b..68bf2370 100644 --- a/src/Views/NoteView.vala +++ b/src/Views/NoteView.vala @@ -85,6 +85,7 @@ actionbar = new Gtk.ActionBar () { hexpand = true }; + actionbar.revealed = false; actionbar.pack_start (new_item); actionbar.pack_start (delete_item); actionbar.pack_end (menu_button); @@ -113,7 +114,7 @@ }); //The application tells us the show/hide bar state has changed! - Application.gsettings.bind ("hide-bar", actionbar, "revealed", SettingsBindFlags.INVERT_BOOLEAN); + //Application.gsettings.bind ("hide-bar", actionbar, "revealed", SettingsBindFlags.INVERT_BOOLEAN); } diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 37ff9e61..aff69448 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -165,6 +165,21 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { //The application tells us the squiffly state has changed! Application.gsettings.changed["scribbly-mode-active"].connect (on_scribbly_changed); + // Respect animation settings for showing ui elements + if (Gtk.Settings.get_default ().gtk_enable_animations && (!Application.gsettings.get_boolean ("hide-bar"))) { + show.connect_after (delayed_show); + + } else { + Application.gsettings.bind ( + "hide-bar", + view.actionbar, + "revealed", + SettingsBindFlags.INVERT_BOOLEAN); + } + + + + } // END OF MAIN CONSTRUCT @@ -172,6 +187,20 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { /* METHODS */ /********************************************/ + /** + * Show UI elements shorty after the window is shown + */ + private void delayed_show () { + Timeout.add_once (750, () => { + Application.gsettings.bind ( + "hide-bar", + view.actionbar, + "revealed", + SettingsBindFlags.INVERT_BOOLEAN); + }); + show.disconnect (delayed_show); + } + // Add a debounce so we aren't writing the entire buffer every character input private void debounce_save () { debug ("Changed! Timer: %s".printf (debounce_timer_id.to_string ())); From 9dace9f170525e0b1e13b848a80ac54cbf6292ab Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 21 Sep 2025 01:52:45 +0200 Subject: [PATCH 05/38] metainfo --- data/jorts.metainfo.xml.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/jorts.metainfo.xml.in b/data/jorts.metainfo.xml.in index efb5d503..1a822f3f 100644 --- a/data/jorts.metainfo.xml.in +++ b/data/jorts.metainfo.xml.in @@ -103,7 +103,7 @@
  • Added a reset-settings commandline option. Could be handy.
  • Ctrl+L to focus note title
  • Ctrl+M to open note settings now
  • -
  • New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs
  • +
  • Some UI elements show up after being shown, for a sleek vibe
  • New note setting: Monospace. Could be for accessibility, could be for ascii doodles
  • Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs
  • Better commented text and code, for translators and eventual contributors
  • From 19dc8176794cb8c7a9e72ccbe6db30dcd9b024f5 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 21 Sep 2025 18:09:57 +0200 Subject: [PATCH 06/38] use getter/setters to manage color, zoom, and mono --- src/Views/PopoverView.vala | 33 ++++++++++++------- src/Widgets/ColorBox.vala | 24 ++++++-------- src/Windows/StickyNoteWindow.vala | 53 ++++++++++++++++--------------- 3 files changed, 59 insertions(+), 51 deletions(-) diff --git a/src/Views/PopoverView.vala b/src/Views/PopoverView.vala index 32019f47..5df2673c 100644 --- a/src/Views/PopoverView.vala +++ b/src/Views/PopoverView.vala @@ -5,20 +5,36 @@ * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) */ +/** +* The popover menu to tweak individual notes +* Contains a setting for color, one for monospace font, one for zoom +*/ public class Jorts.PopoverView : Gtk.Popover { - public Jorts.ColorBox color_button_box; - public Jorts.MonospaceBox monospace_box; - public Jorts.ZoomBox font_size_box; + private Jorts.ColorBox color_button_box; + private Jorts.MonospaceBox monospace_box; + private Jorts.ZoomBox font_size_box; - public Jorts.Themes theme; - public int zoom; + public Themes color { + get {return color_button_box.color;} + set {color_button_box.color = value;} + } + + public bool monospace { + get {return monospace_box.monospace;} + set {monospace_box.monospace = value;} + } + + public int zoom { + get {return font_size_box.zoom;} + set {font_size_box.zoom = value;} + } - /* THEME SELECTION */ public signal void theme_changed (Jorts.Themes selected); public signal void zoom_changed (Jorts.Zoomkind zoomkind); public signal void monospace_changed (bool if_monospace); + /****************/ construct { position = Gtk.PositionType.TOP; halign = Gtk.Align.END; @@ -33,7 +49,6 @@ public class Jorts.PopoverView : Gtk.Popover { font_size_box = new Jorts.ZoomBox (); /* APPENDS */ - view.append (color_button_box); view.append (monospace_box); //view.append (new Gtk.Separator (Gtk.Orientation.HORIZONTAL)); @@ -41,10 +56,6 @@ public class Jorts.PopoverView : Gtk.Popover { child = view; - /***************************************************/ - /* CONNECTS AND BINDS */ - /***************************************************/ - color_button_box.theme_changed.connect ((selected) => {theme_changed (selected);}); monospace_box.monospace_changed.connect ((monospace) => {monospace_changed (monospace);}); font_size_box.zoom_changed.connect ((zoomkind) => {zoom_changed (zoomkind);}); diff --git a/src/Widgets/ColorBox.vala b/src/Widgets/ColorBox.vala index 66aa91eb..add06a26 100644 --- a/src/Widgets/ColorBox.vala +++ b/src/Widgets/ColorBox.vala @@ -85,12 +85,6 @@ public class Jorts.ColorBox : Gtk.Box { append (color_button_slate); } - public void set_toggles (string theme) { - - } - - - private void on_selected (Jorts.Themes color) { _color = color; theme_changed (color); @@ -99,15 +93,15 @@ public class Jorts.ColorBox : Gtk.Box { private void set_all_toggles (Jorts.Themes color) { _color = color; color_button_blueberry.set_active ((color == color_button_blueberry.color)); - color_button_lime.set_active ((color == color_button_blueberry.color)); - color_button_mint.set_active ((color == color_button_blueberry.color)); - color_button_banana.set_active ((color == color_button_blueberry.color)); - color_button_strawberry.set_active ((color == color_button_blueberry.color)); - color_button_orange.set_active ((color == color_button_blueberry.color)); - color_button_bubblegum.set_active ((color == color_button_blueberry.color)); - color_button_grape.set_active ((color == color_button_blueberry.color)); - color_button_cocoa.set_active ((color == color_button_blueberry.color)); - color_button_slate.set_active ((color == color_button_blueberry.color)); + color_button_lime.set_active ((color == color_button_lime.color)); + color_button_mint.set_active ((color == color_button_mint.color)); + color_button_banana.set_active ((color == color_button_banana.color)); + color_button_strawberry.set_active ((color == color_button_strawberry.color)); + color_button_orange.set_active ((color == color_button_orange.color)); + color_button_bubblegum.set_active ((color == color_button_bubblegum.color)); + color_button_grape.set_active ((color == color_button_grape.color)); + color_button_cocoa.set_active ((color == color_button_cocoa.color)); + color_button_slate.set_active ((color == color_button_slate.color)); } } diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index aff69448..83afa3e1 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -33,20 +33,20 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { private PopoverView popover; public TextView textview; - private Jorts.Themes _theme; - public Jorts.Themes theme { - get { return _theme;} + private Themes _old_color; + public Jorts.Themes color { + get { return popover.color;} set {on_theme_changed (value);} } public bool monospace { - get { return view.textview.monospace;} + get { return popover.monospace;} set {on_monospace_changed (value);} } - private int _zoom; + private int _old_zoom; public int zoom { - get { return _zoom;} + get { return popover.zoom;} set {do_set_zoom (value);} } @@ -137,12 +137,15 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { title = editableheader.text + _(" - Jorts"); view.textview.buffer.text = data.content; - popover.color_button_box.color = data.theme; + popover.color = data.theme; - this.zoom = data.zoom; - this.monospace = data.monospace; - this.theme = data.theme; + zoom = data.zoom; + _old_zoom = data.zoom; + monospace = data.monospace; + + color = data.theme; + _old_color = data.theme; /***************************************************/ @@ -243,7 +246,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { debug ("Focus changed!"); if (this.is_active) { - var stylesheet = "io.elementary.stylesheet." + this.theme.to_string ().ascii_down (); + var stylesheet = "io.elementary.stylesheet." + color.to_string ().ascii_down (); gtk_settings.gtk_theme_name = stylesheet; } @@ -271,7 +274,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { var data = new NoteData ( editableheader.text, - this.theme, + color, content, view.textview.monospace, this.zoom, @@ -289,11 +292,11 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { var stylesheet = "io.elementary.stylesheet." + new_theme.to_css_class (); this.gtk_settings.gtk_theme_name = stylesheet; - if (_theme.to_string () in css_classes) { - remove_css_class (_theme.to_string ()); + if (_old_color.to_string () in css_classes) { + remove_css_class (_old_color.to_string ()); } - _theme = new_theme; + _old_color = new_theme; add_css_class (new_theme.to_string ()); NoteData.latest_theme = new_theme; changed (); @@ -314,7 +317,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { } view.textview.monospace = monospace; - popover.monospace_box.monospace = monospace; + popover.monospace = monospace; Jorts.NoteData.latest_mono = monospace; changed (); } @@ -339,8 +342,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { // First check an increase doesnt go above limit public void zoom_in () { - if ((_zoom + 20) <= Jorts.Constants.ZOOM_MAX) { - zoom = _zoom + 20; + if ((_old_zoom + 20) <= Jorts.Constants.ZOOM_MAX) { + zoom = _old_zoom + 20; } } @@ -350,8 +353,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { // First check an increase doesnt go below limit public void zoom_out () { - if ((_zoom - 20) >= Jorts.Constants.ZOOM_MIN) { - zoom = _zoom - 20; + if ((_old_zoom - 20) >= Jorts.Constants.ZOOM_MIN) { + zoom = _old_zoom - 20; } } @@ -360,14 +363,14 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { debug ("Setting zoom: " + zoom.to_string ()); // Switches the classes that control font size - this.remove_css_class (Jorts.Utils.zoom_to_class ( _zoom)); - _zoom = zoom; - this.add_css_class (Jorts.Utils.zoom_to_class ( _zoom)); + this.remove_css_class (Jorts.Utils.zoom_to_class ( _old_zoom)); + _old_zoom = zoom; + this.add_css_class (Jorts.Utils.zoom_to_class ( _old_zoom)); - this.headerbar.height_request = Jorts.Utils.zoom_to_UIsize (_zoom); + this.headerbar.height_request = Jorts.Utils.zoom_to_UIsize (_old_zoom); // Reflect the number in the popover - popover.font_size_box.zoom = zoom; + popover.zoom = zoom; // Keep it for next new notes //((Application)this.application).latest_zoom = zoom; From 143423f9566f88767bf6f7d1436a29c7c536f063 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 21 Sep 2025 18:40:00 +0200 Subject: [PATCH 07/38] Move data into a property with getters setters and document further --- src/Widgets/TextView.vala | 43 ++++++--------- src/Windows/StickyNoteWindow.vala | 87 +++++++++++++++++++------------ 2 files changed, 69 insertions(+), 61 deletions(-) diff --git a/src/Widgets/TextView.vala b/src/Widgets/TextView.vala index b10f7e96..6a9ec448 100644 --- a/src/Widgets/TextView.vala +++ b/src/Widgets/TextView.vala @@ -5,38 +5,27 @@ * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) */ - -/* -This handles everything view - -Notably: --recognize links to open in fav browser --recognize local links to open in Files --Allow a zoom unzoom - -Hypertextview is a Granite widget derived from TextView - -Formatting code courtesy of Colin Kiama -https://github.com/colinkiama/vala-gtk4-text-formatting-demo/tree/main - +/** +* A textview incorporating detecting links and emails +* Fairly vanilla but having a definition allows to easily extend it */ - public class Jorts.TextView : Granite.HyperTextView { - public TextView () { - this.buffer = new Gtk.TextBuffer (null); - this.bottom_margin = 12; - this.left_margin = 12; - this.right_margin = 12; - this.top_margin = 6; - - this.set_hexpand (true); - this.set_vexpand (true); - this.set_wrap_mode (Gtk.WrapMode.WORD_CHAR); + public string text { + owned get {return buffer.text;} + set {buffer.text = value;} } - public string get_content () { - return this.buffer.text; + construct { + buffer = new Gtk.TextBuffer (null); + bottom_margin = 12; + left_margin = 12; + right_margin = 12; + top_margin = 6; + + set_hexpand (true); + set_vexpand (true); + set_wrap_mode (Gtk.WrapMode.WORD_CHAR); } public void paste () { diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 83afa3e1..5058490d 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -36,18 +36,23 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { private Themes _old_color; public Jorts.Themes color { get { return popover.color;} - set {on_theme_changed (value);} + set { on_theme_changed (value);} } public bool monospace { get { return popover.monospace;} - set {on_monospace_changed (value);} + set { on_monospace_changed (value);} } private int _old_zoom; public int zoom { get { return popover.zoom;} - set {do_set_zoom (value);} + set { do_set_zoom (value);} + } + + public NoteData data { + owned get { return packaged ();} + set { load_data (value);} } @@ -130,22 +135,10 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { /****************************************/ /* LOADING */ /****************************************/ - on_scribbly_changed (); - set_default_size (data.width, data.height); - editableheader.text = data.title; - title = editableheader.text + _(" - Jorts"); - view.textview.buffer.text = data.content; - - popover.color = data.theme; - zoom = data.zoom; - _old_zoom = data.zoom; - - monospace = data.monospace; - - color = data.theme; - _old_color = data.theme; + on_scribbly_changed (); + load_data (data); /***************************************************/ @@ -179,10 +172,6 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { "revealed", SettingsBindFlags.INVERT_BOOLEAN); } - - - - } // END OF MAIN CONSTRUCT @@ -240,8 +229,11 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { } } - - // Called when the window is-active property changes + // + /** + * Changes the stylesheet accents to the notes color + * Add or remove the Redacted font if the setting is active + */ private void on_focus_changed () { debug ("Focus changed!"); @@ -261,9 +253,9 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { } } - // Package the note into a NoteData and pass it back - // NOTE: We cannot access the buffer if the window is closed, leading to content loss - // Hence why we need to constantly save the buffer into this.content when changed + /** + * Package the note into a NoteData and pass it back + */ public NoteData packaged () { debug ("Packaging into a noteData…"); @@ -284,8 +276,26 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { return data; } - // Switches stylesheet - // First use appropriate stylesheet, Then switch the theme classes + /** + * Propagate the content of a NoteData into the various UI elements + */ + private void load_data (NoteData data) { + debug ("Loading noteData…"); + + set_default_size (data.width, data.height); + editableheader.text = data.title; + title = editableheader.text + _(" - Jorts"); + view.textview.buffer.text = data.content; + + zoom = data.zoom; + monospace = data.monospace; + color = data.theme; + } + + /** + * Switches stylesheet + * First use appropriate stylesheet, Then switch the theme classes + */ private void on_theme_changed (Jorts.Themes new_theme) { debug ("Updating theme to %s".printf (new_theme.to_string ())); @@ -302,8 +312,9 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { changed (); } - - // Switches stylesheet + /** + * Switches the .monospace class depending on the note setting + */ private void on_monospace_changed (bool monospace) { debug ("Updating monospace to %s".printf (monospace.to_string ())); @@ -327,7 +338,9 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { /* ZOOM feature */ /*********************************************/ - // Called when a signal from the popover says stuff got changed + /** + * Called when a signal from the popover says stuff got changed + */ private void on_zoom_changed (Jorts.Zoomkind zoomkind) { debug ("Zoom changed!"); @@ -340,7 +353,9 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { ((Jorts.Application)this.application).manager.save_all.begin (); } - // First check an increase doesnt go above limit + /** + * Wrapper to check an increase doesnt go above limit + */ public void zoom_in () { if ((_old_zoom + 20) <= Jorts.Constants.ZOOM_MAX) { zoom = _old_zoom + 20; @@ -351,14 +366,18 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { zoom = Jorts.Constants.DEFAULT_ZOOM; } - // First check an increase doesnt go below limit + /** + * Wrapper to check an increase doesnt go below limit + */ public void zoom_out () { if ((_old_zoom - 20) >= Jorts.Constants.ZOOM_MIN) { zoom = _old_zoom - 20; } } - // Switch zoom classes, then reflect in the UI and tell the application + /** + * Switch zoom classes, then reflect in the UI and tell the application + */ private void do_set_zoom (int zoom) { debug ("Setting zoom: " + zoom.to_string ()); From 275cc09f6aa8808582e5be39717e02da2cb9009e Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 21 Sep 2025 19:19:07 +0200 Subject: [PATCH 08/38] Fix mistake in handling loading --- src/Windows/StickyNoteWindow.vala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 5058490d..99b39d33 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -36,7 +36,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { private Themes _old_color; public Jorts.Themes color { get { return popover.color;} - set { on_theme_changed (value);} + set { popover.color = value; on_theme_changed (value);} } public bool monospace { @@ -299,6 +299,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { private void on_theme_changed (Jorts.Themes new_theme) { debug ("Updating theme to %s".printf (new_theme.to_string ())); + print (" - " + new_theme.to_nicename ()); + var stylesheet = "io.elementary.stylesheet." + new_theme.to_css_class (); this.gtk_settings.gtk_theme_name = stylesheet; From e76d818760586cc50577b836024fa30a3f375655 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 21 Sep 2025 19:24:12 +0200 Subject: [PATCH 09/38] Update PO --- po/bn.po | 220 +++++++++++------------- po/cs.po | 238 +++++++++++++------------- po/da.po | 238 +++++++++++++------------- po/de.po | 239 +++++++++++++-------------- po/el.po | 238 +++++++++++++------------- po/es.po | 238 +++++++++++++------------- po/extra/bn.po | 6 +- po/extra/cs.po | 9 +- po/extra/da.po | 9 +- po/extra/de.po | 9 +- po/extra/el.po | 9 +- po/extra/es.po | 9 +- po/extra/extra.pot | 6 +- po/extra/fi.po | 9 +- po/extra/fil.po | 6 +- po/extra/fr.po | 9 +- po/extra/hi.po | 6 +- po/extra/it.po | 9 +- po/extra/ja.po | 9 +- po/extra/lt.po | 9 +- po/extra/nb.po | 9 +- po/extra/nl.po | 9 +- po/extra/no.po | 6 +- po/extra/pl.po | 9 +- po/extra/pt.po | 9 +- po/extra/pt_br.po | 9 +- po/extra/ru.po | 9 +- po/extra/sk.po | 9 +- po/extra/sv.po | 9 +- po/extra/tr.po | 9 +- po/extra/uk.po | 9 +- po/extra/zh.po | 9 +- po/fi.po | 238 +++++++++++++------------- po/fil.po | 217 +++++++++++------------- po/fr.po | 237 +++++++++++++------------- po/hi.po | 220 +++++++++++------------- po/io.github.ellie_commons.jorts.pot | 211 +++++++++++------------ po/it.po | 238 +++++++++++++------------- po/ja.po | 238 +++++++++++++------------- po/lt.po | 238 +++++++++++++------------- po/nb.po | 238 +++++++++++++------------- po/nl.po | 238 +++++++++++++------------- po/no.po | 225 ++++++++++++------------- po/pl.po | 238 +++++++++++++------------- po/pt.po | 238 +++++++++++++------------- po/pt_br.po | 238 +++++++++++++------------- po/ru.po | 238 +++++++++++++------------- po/sk.po | 238 +++++++++++++------------- po/sv.po | 238 +++++++++++++------------- po/tr.po | 238 +++++++++++++------------- po/uk.po | 238 +++++++++++++------------- po/zh.po | 238 +++++++++++++------------- 52 files changed, 3092 insertions(+), 3218 deletions(-) diff --git a/po/bn.po b/po/bn.po index 6c34cc31..540bb9c7 100644 --- a/po/bn.po +++ b/po/bn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,61 +33,20 @@ msgstr "ইমোজি sert োকান" msgid "Preferences for this sticky note" msgstr "এই স্টিকি নোটের জন্য পছন্দগুলি" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "ব্লুবেরি" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "চুন" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "পুদিনা" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "কলা" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "স্ট্রবেরি" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "কমলা" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "বুবলগাম" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "আঙ্গুর" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "কোকো" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "স্লেট" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "ডিফল্ট জুম স্তর" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "" @@ -110,6 +69,42 @@ msgstr "ডিফল্ট জুম স্তর" msgid "Zoom in" msgstr "জুম ইন" +#: src/Objects/Themes.vala:58 src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "ব্লুবেরি" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "পুদিনা" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "চুন" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "কলা" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "কমলা" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "স্ট্রবেরি" + +#: src/Objects/Themes.vala:64 src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "স্লেট" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "আঙ্গুর" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "কোকো" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "" @@ -172,12 +167,12 @@ msgstr "" msgid "Close preferences" msgstr "" -#: src/Windows/StickyNoteWindow.vala:92 src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 src/Windows/PreferenceWindow.vala:52 +#: src/Windows/StickyNoteWindow.vala:97 src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr "" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "" @@ -194,237 +189,221 @@ msgstr "এই স্টিকি নোটের জন্য পছন্দ msgid "Preferences" msgstr "" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "" - -#: src/Application.vala:177 -msgid "Reset all settings" -msgstr "" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "আমার সমস্ত খুব ভাল বন্ধু" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "আমার সুপার ভাল গোপন রেসিপি" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "আমার টোডো তালিকা" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "কাউকে না বলার জন্য সুপার সিক্রেট" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "আমার মুদি তালিকা" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "এলোমেলো ঝরনা চিন্তা" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "আমার ফেভ ফ্যানফিক্স" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "আমার ফেভ ডাইনোসর" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "আমার দুষ্ট মাস্টারমাইন্ড পরিকল্পনা" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "আজ কি আমাকে হাসিয়ে দিয়েছে" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "হ্যালো ওয়ার্ল্ড!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "নতুন স্টিকি, নতুন আমাকে" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "লুকানো জলদস্যু ধন" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "ভুলে যাবেন না, কখনও" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "প্রিয় ডায়েরি," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "একটি সুন্দর দিন দিন! " -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "আমার মেডস শিডিউল" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "গৃহস্থালী কাজ" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "আমার বিড়ালের কাছে ওড" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "আমার কুকুর প্রিয় খেলনা" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "আমার পাখি কত শীতল" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "শেষ কুকি সম্পর্কে সন্দেহভাজন" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "শব্দগুলি আমার তোতা জানে" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "দুর্দান্ত এবং মজার প্রশংসা" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "ঠিক আছে, এখানে শুনুন," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "আমার স্বপ্নের পোকেমন দল" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "আমার ছোট নোট" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "আশ্চর্য উপহারের তালিকা" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "বুদ্ধিদীপ্ত নোট" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "পার্টিতে আনতে" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "আমার আশ্চর্যজনক মিক্সটেপ" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "ন্যাপকিন স্ক্রিবলস" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "আমার ফেভ গানগুলি পাশাপাশি গান" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "কখন কোন উদ্ভিদ জল" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "শীর্ষ 10 এনিমে বিশ্বাসঘাতকতা" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "আমার কুকুর প্রিয় খেলনা" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "আমার কুকুর প্রিয় খেলনা" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "" -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -435,6 +414,9 @@ msgid "" "Have a great day!🎇\n" msgstr "" +#~ msgid "Bubblegum" +#~ msgstr "বুবলগাম" + #~ msgid "Edit title" #~ msgstr "শিরোনাম সম্পাদনা করুন" diff --git a/po/cs.po b/po/cs.po index cd0d117a..89a8c454 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Vložte emoji" msgid "Preferences for this sticky note" msgstr "Předvolby pro tuto samolepicí poznámku" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Borůvky" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Lime" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Mátový" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banán" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Jahoda" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Orange" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Žvýkačka" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Hrozny" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Kakao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Břidlice" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Výchozí písmo" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Kliknutím použijete výchozí písmo textu" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Klikněte pro použití jednosazbového písma" @@ -105,6 +64,44 @@ msgstr "Výchozí úroveň přiblížení" msgid "Zoom in" msgstr "Přiblížení" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Borůvky" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Mátový" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Lime" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banán" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Orange" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Jahoda" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Břidlice" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Hrozny" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Kakao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Odeslání požadavku do systému" @@ -165,14 +162,14 @@ msgstr "Zavřít" msgid "Close preferences" msgstr "Zavřít předvolby" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Šortky" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Kliknutím upravíte název" @@ -188,238 +185,221 @@ msgstr "Předvolby pro všechny samolepicí poznámky" msgid "Preferences" msgstr "Předvolby" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Vytvoření nové poznámky" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Vytvoření poznámky a její vložení ze schránky" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Zobrazit předvolby" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Obnovení výchozího nastavení" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Všichni moji nejlepší přátelé" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Můj super dobrý tajný recept" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Můj seznam úkolů" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Super tajemství, které nesmíte nikomu říct" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Můj seznam potravin" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Náhodné myšlenky ze sprchy" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Moje oblíbené fanouškovské texty" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Moji oblíbení dinosauři" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Můj ďábelský plán" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Co mě dnes rozesmálo" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Ahoj světe!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Nové lepidlo, nové já" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Skrytý pirátský poklad" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Nezapomenout, nikdy" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Milý deníčku," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Hezký den! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Můj rozpis léků" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Domácí práce" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Óda na mou kočku" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Oblíbené hračky mých psů" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Jak skvělí jsou moji ptáci" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Podezřelí v aféře Last Cookie" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Slova, která moji papoušci znají" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Skvělé a vtipné komplimenty, které můžete rozdávat" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Dobře, poslouchejte," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Můj vysněný tým Pokémonů" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Moje malé poznámky" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Seznam dárků s překvapením" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Poznámky k brainstormingu" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Přinést na večírek" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Můj úžasný mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Ubrousky scribblys" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Moje oblíbené písničky, které si zpívám" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Kdy zalévat kterou rostlinu" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "10 nejlepších zrad v anime" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Úžasné ascii umění!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Pro grilování" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Oblíbené hračky mých psů" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Nejlepší ingredience pro salát" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Knihy ke čtení" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Místa k návštěvě" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Koníčky k vyzkoušení" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Kdo by vyhrál proti Gokuovi" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "K výsadbě na zahradě" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Jídla tento týden" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Objednávka pizzy pro každého" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Dnešní péče o sebe" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Důležité afirmace, které je třeba si zapamatovat" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Nejúžasnější aplikace pro Linux" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Oblíbené hračky mých psů" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Moje nejvtipnější vtipy" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Dokonalá snídaně má..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Gratulujeme!🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -439,6 +419,22 @@ msgstr "" "Přeji krásný den!🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Žvýkačka" + +#~ msgid "Create a new note" +#~ msgstr "Vytvoření nové poznámky" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Vytvoření poznámky a její vložení ze schránky" + +#~ msgid "Show preferences" +#~ msgstr "Zobrazit předvolby" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Obnovení výchozího nastavení" + #~ msgid "Reset to Default" #~ msgstr "Obnovení výchozího nastavení" diff --git a/po/da.po b/po/da.po index 06d17b5a..3856d53e 100644 --- a/po/da.po +++ b/po/da.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Indsæt emoji" msgid "Preferences for this sticky note" msgstr "Indstillinger for denne huskeseddel" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Blåbær" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Kalk" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Mynte" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banan" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Jordbær" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Orange" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Bubblegum" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Drue" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Kakao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Skifer" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Nulstil til standard" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Klik for at bruge standardskrifttype" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Klik for at bruge monospaced font" @@ -105,6 +64,44 @@ msgstr "Standard zoomniveau" msgid "Zoom in" msgstr "Zoom ind" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Blåbær" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Mynte" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Kalk" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banan" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Orange" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Jordbær" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Skifer" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Drue" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Kakao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Anmodning til systemet sendt" @@ -165,14 +162,14 @@ msgstr "Luk" msgid "Close preferences" msgstr "Luk indstillinger" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Jorts" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Klik for at redigere titlen" @@ -187,238 +184,221 @@ msgstr "Præferencer for dine Jorts" msgid "Preferences" msgstr "Indstillinger" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Opret en ny note" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Opret en note, og indsæt den fra udklipsholderen" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Vis præferencer" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Nulstil alle indstillinger til standard" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Alle mine allerbedste venner" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Min supergode hemmelige opskrift" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Min todo-liste" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Superhemmelighed, som du ikke må fortælle nogen" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Min indkøbsliste" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Tilfældige tanker om brusebad" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Mine favorit-fanfics" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Mine yndlingsdinosaurer" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Min onde mastermind-plan" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Hvad fik mig til at smile i dag" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Hej verden!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Nyt klistermærke, ny mig" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Skjult piratskat" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "For ikke at glemme, nogensinde" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Kære dagbog," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Hav en god dag! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Min medicinplan" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Huslige pligter" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ode til min kat" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Mine hundes yndlingslegetøj" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Hvor seje mine fugle er" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Mistænkte i sagen om den sidste cookie" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Ord, som mine papegøjer kender" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Seje og sjove komplimenter at give" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Okay, hør her," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Mit drømme-Pokemon-hold" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Mine små noter" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Overraskende gaveliste" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Noter til brainstorming" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "At tage med til festen" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Mit fantastiske mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Servietskriblerier" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Mine yndlingssange til at synge med på" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Hvornår skal hvilken plante vandes?" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Top 10 over forræderi i anime" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Fantastisk ascii-kunst!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Til grillen" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Mine hundes yndlingslegetøj" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "De bedste ingredienser til salat" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Bøger at læse" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Steder at besøge" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Hobbyer at prøve af" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Hvem ville vinde over Goku?" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "At plante i haven" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Måltider i denne uge" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Alles pizzabestilling" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "I dag skal du lave selvpleje" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Vigtige bekræftelser at huske" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "De fedeste linux-apps" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Mine hundes yndlingslegetøj" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Mine sjoveste vittigheder" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Den perfekte morgenmad har..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Tillykke! 🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -438,6 +418,22 @@ msgstr "" "Hav en god dag!🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Bubblegum" + +#~ msgid "Create a new note" +#~ msgstr "Opret en ny note" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Opret en note, og indsæt den fra udklipsholderen" + +#~ msgid "Show preferences" +#~ msgstr "Vis præferencer" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Nulstil alle indstillinger til standard" + #~ msgid "Permissions" #~ msgstr "Tilladelser" diff --git a/po/de.po b/po/de.po index ab68762c..e85fdc13 100644 --- a/po/de.po +++ b/po/de.po @@ -1,4 +1,3 @@ -#, fuzzy msgid "" msgstr "" "Content-Transfer-Encoding: 8bit\n" @@ -8,7 +7,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,60 +27,19 @@ msgstr "Emoji einfügen" msgid "Preferences for this sticky note" msgstr "Einstellungen für diesen Haftnotizblock" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Blaubeere" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Limette" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Minze" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banane" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Erdbeere" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Orange" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Kaugummi" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Weintrauben" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Kakao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Schiefer" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 msgid "Default" msgstr "Standard" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Klicken Sie auf , um die Standardschriftart zu verwenden" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Klicken Sie hier, um die Schriftart Monospaced zu verwenden" @@ -104,6 +62,44 @@ msgstr "Standard-Zoomstufe" msgid "Zoom in" msgstr "Vergrößern" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Blaubeere" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Minze" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Limette" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banane" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Orange" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Erdbeere" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Schiefer" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Weintrauben" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Kakao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Anfrage an das System gesendet" @@ -162,14 +158,14 @@ msgstr "Schließen Sie" msgid "Close preferences" msgstr "Einstellungen schließen" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Jorts" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Klicken, um den Titel zu bearbeiten" @@ -178,242 +174,226 @@ msgstr "Klicken, um den Titel zu bearbeiten" #. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings #: src/Windows/PreferenceWindow.vala:50 msgid "Preferences for your Jorts" -msgstr "Voreinstellungen für deine Jorts!" +msgstr "Präferenzen für deine Jorts!" #: src/Windows/PreferenceWindow.vala:52 msgid "Preferences" msgstr "Präferenzen" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Eine neue Notiz erstellen" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Eine Notiz erstellen und dann aus der Zwischenablage einfügen" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Einstellungen anzeigen" - -#: src/Application.vala:177 -msgid "Reset all settings" -msgstr "Alle Einstellungen auf Standardwerte zurücksetzen" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Alle meine allerbesten Freunde" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Mein super gutes Geheimrezept" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Meine ToDo-Liste" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Supergeheimnis, das niemandem verraten werden darf" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Meine Lebensmittelliste" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Zufällige Gedanken zum Duschen" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Meine Lieblingsfanfics" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Meine Lieblingsdinosaurier" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Mein böser genialer Plan" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Was mich heute zum Lächeln gebracht hat" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Hallo Welt!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Neuer Kleber, neues Ich" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Versteckter Piratenschatz" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Nicht vergessen, niemals" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Liebes Tagebuch," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Einen schönen Tag noch! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Mein Medikamentenplan" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Aufgaben im Haushalt" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ode an meine Katze" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Lieblingsspielzeug meiner Hunde" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Wie cool meine Vögel sind" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Verdächtige in der Last-Cookie-Affäre" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Worte, die meine Papageien kennen" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Coole und lustige Komplimente zum Verteilen" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Ok, hören Sie zu," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Mein Traum-Pokemon-Team" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Meine kleinen Notizen" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Liste der Überraschungsgeschenke" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Brainstorming-Notizen" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Zum Mitbringen zur Party" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Mein erstaunliches Mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Serviette scribblys" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Meine Lieblingslieder zum Mitsingen" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Wann ist welche Pflanze zu gießen?" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Top 10 der Anime-Verräter" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Erstaunliche Ascii-Kunst!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Für den Grill" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 msgid "My favourite bands" msgstr "Meine Lieblingsbands" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Beste Zutaten für Salat" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Bücher zum Lesen" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Zu besuchende Orte" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Hobbys zum Ausprobieren" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Wer würde gegen Goku gewinnen?" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Zum Einpflanzen in den Garten" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Mahlzeiten diese Woche" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Die Pizzabestellung für alle" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Heute Selbstfürsorge zu tun" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Wichtige Affirmationen zum Merken" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Die coolsten Linux-Anwendungen" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Meine Lieblingsbands" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Meine lustigsten Witze" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Das perfekte Frühstück hat..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Herzlichen Glückwunsch!🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -432,3 +412,18 @@ msgstr "" "Ich hoffe, meine kleine App bringt dir viel Freude\n" "Habt einen tollen Tag!🎇\n" "" + +#~ msgid "Bubblegum" +#~ msgstr "Kaugummi" + +#~ msgid "Create a new note" +#~ msgstr "Eine neue Notiz erstellen" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Eine Notiz erstellen und dann aus der Zwischenablage einfügen" + +#~ msgid "Show preferences" +#~ msgstr "Einstellungen anzeigen" + +#~ msgid "Reset all settings" +#~ msgstr "Alle Einstellungen auf Standardwerte zurücksetzen" diff --git a/po/el.po b/po/el.po index 1ddb7eb3..52a60b21 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgstr "" "Last-Translator: Orionas Kakomoiroglou <209243298+OrionasKakomoiroglou@users.noreply.github.com>\n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-06-02 19:29+0300\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -29,61 +29,20 @@ msgstr "Εισαγωγή emoji" msgid "Preferences for this sticky note" msgstr "Προτιμήσεις για αυτή τη σημείωση" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Μύρτιλλο" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Μοσχολέμονο" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Μέντα" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Μπανάνα" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Φράουλα" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Πορτοκάλι" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Τσιχλόφουσκα" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Σταφύλι" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Κακάο" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Γρανίτης" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Επαναφορά στις προεπιλεγμένες ρυθμίσεις" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Κάντε κλικ για να χρησιμοποιήσετε την προεπιλεγμένη γραμματοσειρά κειμένου" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Κάντε κλικ για να χρησιμοποιήσετε γραμματοσειρά με μονό διάστημα" @@ -106,6 +65,44 @@ msgstr "Προεπιλεγμένο επίπεδο μεγέθυνσης" msgid "Zoom in" msgstr "Μεγέθυνση" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Μύρτιλλο" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Μέντα" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Μοσχολέμονο" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Μπανάνα" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Πορτοκάλι" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Φράουλα" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Γρανίτης" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Σταφύλι" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Κακάο" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Αποστολή αιτήματος στο σύστημα" @@ -166,14 +163,14 @@ msgstr "Κλείστε το" msgid "Close preferences" msgstr "Κλείστε τις προτιμήσεις" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Τζορτς" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Κάντε κλικ για να επεξεργαστείτε τον τίτλο" @@ -188,237 +185,220 @@ msgstr "Ρυθμίσεις του Jorts" msgid "Preferences" msgstr "Προτιμήσεις" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Δημιουργία νέας σημείωσης" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Δημιουργήστε μια σημείωση και στη συνέχεια επικολλήστε από το πρόχειρο" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Εμφάνιση προτιμήσεων" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Επαναφορά όλων των ρυθμίσεων στις προεπιλεγμένες" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Όλοι οι κολλητοί μου" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Η φανταστική μυστική μου συνταγή" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Η λίστα υποχρεώσεών μου" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Άκρως απόρρητο· μην το πεις πουθενά" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Η λίστα με τα ψώνια μου" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Σκέψεις που μου κατέβηκαν στο μυαλό" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Μια φορά και έναν καιρό..." -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Οι αγαπημένοι μου δεινόσαυροι" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Το μυστικό ύπουλό μου σχέδιο" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Τι με έκανε να χαρώ σήμερα" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Γεια σου κόσμε!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Νέα σημείωση για μια νέα αρχή" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Οδηγίες για να βρείτε τον κρυμμένο πειρατικό θησαυρό" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Για να μην ξεχαστούν" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Αγαπητό μου ημερολόγιο," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Καλημέρα! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Πρόγραμμα Φαρμάκων" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Δουλειές Σπιτιού" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Σενάριο: «Η Ιφιγένεια εν Γατίδι»" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Τα Αγαπημένα Παιχνίδια του Σκύλου μου" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Πόσο Όμορφα Είναι τα Καναρίνια μου" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Ύποπτοι στην υπόθεση «Ποιος έφαγε το τελευταίο μπισκότο;»" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Λίστα Λέξεων που Ξέρουν τα Παπαγαλάκια μου" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Τυφλοσούρτης Δημιουργικών και Αστείων Κομπλιμέντων" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Ακούσατε, Ακούσατε!" -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Ομάδες που ονειρεύομαι να φτάσουν Α' Εθνική" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Οι μικρές μου σημειώσεις" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Λίστα δώρων-έκπληξη" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Καταιγισμός ιδεών" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Τι να φέρω στο πάρτι" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Η φανταστική μου playlist" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Σημειώσεις από Χαρτοπετσέτες" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Τα αγαπημένα μου τραγούδια για να τραγουδώ" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Πότε να ποτίζω τα φυτά μου" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Οι 10 καλύτερες ατάκες" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Απίθανα σχέδια με γράμματα!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Λίστα Ψησίματος" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 msgid "My favourite bands" msgstr "Τα αγαπημένα μου συγκροτήματα" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Καλύτερα συστατικά για σαλάτα" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Βιβλία για ανάγνωση" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Μέρη για επίσκεψη" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Χόμπι για να δοκιμάσετε" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Ποιος θα κέρδιζε τον Goku" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Για να φυτέψετε στον κήπο" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Γεύματα αυτή την εβδομάδα" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Η παραγγελία πίτσας του καθενός" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Σήμερα αυτοφροντίδα για να κάνετε" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Σημαντικές επιβεβαιώσεις που πρέπει να θυμάστε" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Οι πιο cool εφαρμογές linux" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Τα αγαπημένα μου συγκροτήματα" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Τα πιο αστεία αστεία μου" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Το τέλειο πρωινό έχει..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥ΟΥΑΟΥ, ΤΑ ΣΥΓΧΑΡΗΤΗΡΙΑ ΜΟΥ🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -437,3 +417,19 @@ msgstr "" "Ελπίζω η εφαρμογή μου να σας κάνει όλους χαρούμενους.\n" "Καλημέρα! 🎇\n" "" + +#~ msgid "Bubblegum" +#~ msgstr "Τσιχλόφουσκα" + +#~ msgid "Create a new note" +#~ msgstr "Δημιουργία νέας σημείωσης" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Δημιουργήστε μια σημείωση και στη συνέχεια επικολλήστε από το πρόχειρο" + +#~ msgid "Show preferences" +#~ msgstr "Εμφάνιση προτιμήσεων" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Επαναφορά όλων των ρυθμίσεων στις προεπιλεγμένες" diff --git a/po/es.po b/po/es.po index 8975bcb4..d88a6832 100644 --- a/po/es.po +++ b/po/es.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "inserte emoji" msgid "Preferences for this sticky note" msgstr "Preferencias para esta nota pegajosa" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Arándano" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Lima" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Menta" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Plátano" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Fresa" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Naranja" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Chicle" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Uva" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Cacao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Pizarra" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Restablecer valores por defecto" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Haga clic para utilizar la fuente de texto predeterminada" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Haga clic para utilizar la fuente monoespaciada" @@ -105,6 +64,44 @@ msgstr "Nivel de zoom predeterminado" msgid "Zoom in" msgstr "Acercar" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Arándano" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Menta" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Lima" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Plátano" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Naranja" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Fresa" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Pizarra" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Uva" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Cacao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Solicitud al sistema enviada" @@ -165,14 +162,14 @@ msgstr "Cerrar" msgid "Close preferences" msgstr "Cerrar preferencias" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Pantalones cortos" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Haga clic para editar el título" @@ -188,238 +185,221 @@ msgstr "Preferencias para esta nota pegajosa" msgid "Preferences" msgstr "Preferencias" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Crear una nueva nota" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Crear una nota y pegarla desde el portapapeles" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Mostrar preferencias" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Restablecer todos los ajustes por defecto" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Todes mis mejores amigues" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Mi receta secreta súper buena" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Mi lista de tareas" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Supersecreto para no contárselo a nadie" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Mi lista de la compra" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Pensamientos aleatorios en la ducha" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Mis fanfics favoritos" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Mis dinosaurios favoritos" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Mi malvado plan maestro" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Lo que me ha hecho sonreír hoy" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "¡Hola, mundo!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Nueva pegatina, nuevo yo" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Ubicación del tesoro pirata escondido" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "No olvidar" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Querido diario:" -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Que tengas un buen día. :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Mi horario de medicación" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Tareas domésticas" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Oda a mi gato" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Los juguetes favoritos de mis perros" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Qué guays son mis pájaros" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Sospechosos en el asunto de la última galleta" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Palabras que conocen mis loros" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Elogios chulos y divertidos" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "A ver, escucha," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "El equipo Pokemon de mis sueños" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Mis pequeñas notas" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Lista de regalos sorpresa" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Notas de lluvia de ideas" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Para llevar a la fiesta" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Mi increíble mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Garabatos en una servilleta" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Mis canciones favoritas para cantar" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "cuándo regar qué planta" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Top 10 traiciones de anime" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "¡Increíble arte ascii!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Para la barbacoa" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Los juguetes favoritos de mis perros" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Los mejores ingredientes para la ensalada" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Libros para leer" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Lugares de interés" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Aficiones para probar" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "¿Quién ganaría contra Goku" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Para plantar en el jardín" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Comidas de la semana" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "El pedido de pizza de todos" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Hoy autocuidado que hacer" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Afirmaciones importantes para recordar" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Las mejores aplicaciones para Linux" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Los juguetes favoritos de mis perros" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Mis chistes más divertidos" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "El desayuno perfecto tiene..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW ¡Felicidades!🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -439,6 +419,22 @@ msgstr "" "Que tengáis un gran día!🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Chicle" + +#~ msgid "Create a new note" +#~ msgstr "Crear una nueva nota" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Crear una nota y pegarla desde el portapapeles" + +#~ msgid "Show preferences" +#~ msgstr "Mostrar preferencias" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Restablecer todos los ajustes por defecto" + #~ msgid "Permissions" #~ msgstr "Permisos" diff --git a/po/extra/bn.po b/po/extra/bn.po index c4e943e9..b3fb2d2b 100644 --- a/po/extra/bn.po +++ b/po/extra/bn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -188,9 +188,7 @@ msgid "Ctrl+M to open note settings now" msgstr "" #: data/jorts.metainfo.xml.in:106 -msgid "" -"New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other " -"DEs" +msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "" #: data/jorts.metainfo.xml.in:107 diff --git a/po/extra/cs.po b/po/extra/cs.po index 120031c0..d5c26f72 100644 --- a/po/extra/cs.po +++ b/po/extra/cs.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -174,8 +174,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M pro otevření nastavení poznámky" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Nové nastavení: Základní OS to má OOTB, ale ne jiné DE." +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Některé prvky uživatelského rozhraní se zobrazí až po zobrazení, aby působily elegantně." #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -563,6 +563,9 @@ msgstr "E-mail a odkazy jsou klikací! Ctrl+klik pro otevření v poště nebo p msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Text podporuje vrácení zpět, opakování a můžete používat emotikony :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Nové nastavení: Základní OS to má OOTB, ale ne jiné DE." + #~ msgid "Sticky notes utility" #~ msgstr "Nástroj pro samolepicí poznámky" diff --git a/po/extra/da.po b/po/extra/da.po index 91196619..85cb034e 100644 --- a/po/extra/da.po +++ b/po/extra/da.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" @@ -173,8 +173,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M for at åbne noteindstillinger nu" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Nye indstillinger: OpenDyslexia-skrifttyper. elementary OS har det OOTB, men ikke andre DE'er" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Nogle UI-elementer dukker op, når de er blevet vist, for at give en elegant stemning" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -558,6 +558,9 @@ msgstr "E-mail og links er klikbare! Ctrl+Klik for at åbne i mail eller browser msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Tekst understøtter fortryd, gør om, og du kan bruge emojis :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Nye indstillinger: OpenDyslexia-skrifttyper. elementary OS har det OOTB, men ikke andre DE'er" + #~ msgid "Sticky notes utility" #~ msgstr "Værktøj til huskesedler" diff --git a/po/extra/de.po b/po/extra/de.po index 57637cd1..60f8e957 100644 --- a/po/extra/de.po +++ b/po/extra/de.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -171,8 +171,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Strg+M, um die Notizeinstellungen jetzt zu öffnen" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Neue Einstellungen: OpenDyslexia-Schriften. elementary OS hat das OOTB, aber nicht andere DEs" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Einige UI-Elemente werden erst nach der Anzeige eingeblendet, um einen eleganten Eindruck zu vermitteln." #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -547,6 +547,9 @@ msgstr "E-Mails und Links sind klickbar! Strg+Klick zum Öffnen in Mail oder Bro msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Text unterstützt Rückgängig machen, Wiederherstellen, und Sie können Emojis verwenden :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Neue Einstellungen: OpenDyslexia-Schriften. elementary OS hat das OOTB, aber nicht andere DEs" + #~ msgid "Sticky notes utility" #~ msgstr "Dienstprogramm für Haftnotizen" diff --git a/po/extra/el.po b/po/extra/el.po index a5d80c9d..8718dd4e 100644 --- a/po/extra/el.po +++ b/po/extra/el.po @@ -7,7 +7,7 @@ msgstr "" "Last-Translator: Orionas Kakomoiroglou <209243298+OrionasKakomoiroglou@users.noreply.github.com>\n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-06-02 19:23+0300\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" @@ -170,8 +170,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M για να ανοίξετε τις ρυθμίσεις σημειώσεων τώρα" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Νέες ρυθμίσεις: Το στοιχειώδες λειτουργικό σύστημα το έχει αυτό OOTB, αλλά όχι άλλες DEs." +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Ορισμένα στοιχεία του UI εμφανίζονται αφού εμφανιστούν, για μια κομψή ατμόσφαιρα" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -559,6 +559,9 @@ msgstr "Τα email και οι σύνδεσμοι μπορούν να πατηθ msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Το κείμενο υποστηρίζει αναίρεση, επανάληψη και μπορείτε να χρησιμοποιήσετε emojis :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Νέες ρυθμίσεις: Το στοιχειώδες λειτουργικό σύστημα το έχει αυτό OOTB, αλλά όχι άλλες DEs." + #~ msgid "Sticky notes utility" #~ msgstr "Βοήθημα αυτοκόλλητων σημειώσεων" diff --git a/po/extra/es.po b/po/extra/es.po index 74491deb..b0dc4b58 100644 --- a/po/extra/es.po +++ b/po/extra/es.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -174,8 +174,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M para abrir la configuración de notas ahora" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Nueva configuración: fuentes OpenDyslexia. elementary OS tiene que OOTB, pero no otros DEs" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Algunos elementos de la interfaz de usuario aparecen después de ser mostrados, para dar un toque elegante." #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -563,6 +563,9 @@ msgstr "Correo electrónico y enlaces clicables Ctrl+Clic para abrir en el corre msgid "Text supports undo, redo, and you can use emojis :)" msgstr "El texto permite deshacer, rehacer y utilizar emojis :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Nueva configuración: fuentes OpenDyslexia. elementary OS tiene que OOTB, pero no otros DEs" + #~ msgid "Sticky notes utility" #~ msgstr "Utilidad de notas adhesivas" diff --git a/po/extra/extra.pot b/po/extra/extra.pot index 11ca08c9..568e0466 100644 --- a/po/extra/extra.pot +++ b/po/extra/extra.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -178,9 +178,7 @@ msgid "Ctrl+M to open note settings now" msgstr "" #: data/jorts.metainfo.xml.in:106 -msgid "" -"New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other " -"DEs" +msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "" #: data/jorts.metainfo.xml.in:107 diff --git a/po/extra/fi.po b/po/extra/fi.po index 53eb6d3e..d0ceb96a 100644 --- a/po/extra/fi.po +++ b/po/extra/fi.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -174,8 +174,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M avaa muistiinpanoasetukset nyt" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Uudet asetukset: Elementary OS:ssä on se OOTB, mutta ei muissa DE:issä." +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Jotkin käyttöliittymäelementit näkyvät näyttämisen jälkeen, mikä luo tyylikkään tunnelman." #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -563,6 +563,9 @@ msgstr "Sähköposti ja linkit ovat klikattavissa! Ctrl+Klikkaa avataksesi sähk msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Teksti tukee peruuttamista, uudelleen tekemistä ja voit käyttää hymiöitä :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Uudet asetukset: Elementary OS:ssä on se OOTB, mutta ei muissa DE:issä." + #~ msgid "Sticky notes utility" #~ msgstr "Tarralappujen apuohjelma" diff --git a/po/extra/fil.po b/po/extra/fil.po index 0e624c11..981f7d7a 100644 --- a/po/extra/fil.po +++ b/po/extra/fil.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -192,9 +192,7 @@ msgid "Ctrl+M to open note settings now" msgstr "" #: data/jorts.metainfo.xml.in:106 -msgid "" -"New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other " -"DEs" +msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "" #: data/jorts.metainfo.xml.in:107 diff --git a/po/extra/fr.po b/po/extra/fr.po index 510b4566..23f74e7e 100644 --- a/po/extra/fr.po +++ b/po/extra/fr.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -168,8 +168,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M pour ouvrir les paramètres de la note maintenant" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Nouveaux paramètres : Polices OpenDyslexia. elementary OS dispose de ces polices OOTB, mais pas d'autres DE." +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Certains éléments de l'interface utilisateur s'affichent après avoir été montrés, ce qui donne une impression d'élégance." #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -546,6 +546,9 @@ msgstr "Les e-mails et les liens sont cliquables ! Ctrl+Clic pour ouvrir dans le msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Le texte permet d'annuler, de refaire et d'utiliser des émojis :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Nouveaux paramètres : Polices OpenDyslexia. elementary OS dispose de ces polices OOTB, mais pas d'autres DE." + #~ msgid "Sticky notes utility" #~ msgstr "Utilitaire de notes autocollantes" diff --git a/po/extra/hi.po b/po/extra/hi.po index 6a0a3a91..21600aed 100644 --- a/po/extra/hi.po +++ b/po/extra/hi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -187,9 +187,7 @@ msgid "Ctrl+M to open note settings now" msgstr "" #: data/jorts.metainfo.xml.in:106 -msgid "" -"New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other " -"DEs" +msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "" #: data/jorts.metainfo.xml.in:107 diff --git a/po/extra/it.po b/po/extra/it.po index c99cac79..57ab47f8 100644 --- a/po/extra/it.po +++ b/po/extra/it.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -174,8 +174,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M per aprire subito le impostazioni delle note" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Nuove impostazioni: Font OpenDyslexia. il sistema operativo elementare li ha OOTB, ma non altri DE." +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Alcuni elementi dell'interfaccia utente vengono visualizzati dopo essere stati mostrati, per un'atmosfera elegante." #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -562,6 +562,9 @@ msgstr "e -mail e collegamenti sono cliccabili! " msgid "Text supports undo, redo, and you can use emojis :)" msgstr "il testo supporta annullare, rifare e puoi usare emoji :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Nuove impostazioni: Font OpenDyslexia. il sistema operativo elementare li ha OOTB, ma non altri DE." + #~ msgid "Sticky notes utility" #~ msgstr "Utilità per note adesive" diff --git a/po/extra/ja.po b/po/extra/ja.po index 2db8595a..faceb1cb 100644 --- a/po/extra/ja.po +++ b/po/extra/ja.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: Ryo Nakano \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-05-11 20:29+0900\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" @@ -169,8 +169,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+Mでノート設定を開く" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "新しい設定:OpenDyslexiaフォントは、初級OSにはOOTBがあるが、他のDEにはない。" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "いくつかのUI要素は、表示された後に表示され、スマートな雰囲気を演出する。" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -554,6 +554,9 @@ msgstr "メールやリンクはクリックできます!Ctrl+クリックで msgid "Text supports undo, redo, and you can use emojis :)" msgstr "テキストは元に戻したり、やり直したりできる。)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "新しい設定:OpenDyslexiaフォントは、初級OSにはOOTBがあるが、他のDEにはない。" + #~ msgid "Sticky notes utility" #~ msgstr "付箋ユーティリティ" diff --git a/po/extra/lt.po b/po/extra/lt.po index 30bda632..50859335 100644 --- a/po/extra/lt.po +++ b/po/extra/lt.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" @@ -173,8 +173,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M, kad atidarytumėte pastabų nustatymus dabar" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Nauji nustatymai: elementari OS turi tai OOTB, bet ne kiti DE" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Kai kurie vartotojo sąsajos elementai rodomi po to, kai yra rodomi, kad būtų sukurta elegantiška atmosfera." #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -559,6 +559,9 @@ msgstr "El. paštą ir nuorodas galima spustelėti! Ctrl+paspauskite, jei norite msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Tekstas palaiko atšaukimo ir pakartotinio atšaukimo funkcijas, be to, galite naudoti šypsenėles :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Nauji nustatymai: elementari OS turi tai OOTB, bet ne kiti DE" + #~ msgid "Sticky notes utility" #~ msgstr "Lipnių užrašų įrankis" diff --git a/po/extra/nb.po b/po/extra/nb.po index 9ecba0e5..9fd99ae9 100644 --- a/po/extra/nb.po +++ b/po/extra/nb.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -173,8 +173,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M for å åpne notatinnstillinger nå" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Nye innstillinger: OpenDyslexia-skrifter. elementary OS har det OOTB, men ikke andre DE-er" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Noen UI-elementer vises etter at de har blitt vist, for å gi et elegant uttrykk" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -560,6 +560,9 @@ msgstr "E-post og lenker er klikkbare! Ctrl+Klikk for å åpne i e-post eller ne msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Tekst støtter angre, gjøre om, og du kan bruke emojis :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Nye innstillinger: OpenDyslexia-skrifter. elementary OS har det OOTB, men ikke andre DE-er" + #~ msgid "Sticky notes utility" #~ msgstr "Verktøy for klistrelapper" diff --git a/po/extra/nl.po b/po/extra/nl.po index 6517a111..b87f0c01 100644 --- a/po/extra/nl.po +++ b/po/extra/nl.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -174,8 +174,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M om nu notitie-instellingen te openen" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Nieuwe instellingen: Elementary OS heeft dat OOTB, maar andere DE's niet." +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Sommige UI-elementen verschijnen nadat ze zijn getoond, voor een strakke vibe" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -562,6 +562,9 @@ msgstr "E -mail en links zijn klikbaar! " msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Tekst ondersteunt ongedaan maken, redo, en u kunt emoji's gebruiken :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Nieuwe instellingen: Elementary OS heeft dat OOTB, maar andere DE's niet." + #~ msgid "Sticky notes utility" #~ msgstr "Sticky Notes hulpprogramma" diff --git a/po/extra/no.po b/po/extra/no.po index 732b98fb..cd61bdb2 100644 --- a/po/extra/no.po +++ b/po/extra/no.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -190,9 +190,7 @@ msgid "Ctrl+M to open note settings now" msgstr "" #: data/jorts.metainfo.xml.in:106 -msgid "" -"New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other " -"DEs" +msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "" #: data/jorts.metainfo.xml.in:107 diff --git a/po/extra/pl.po b/po/extra/pl.po index 2c00cf4b..398e3d89 100644 --- a/po/extra/pl.po +++ b/po/extra/pl.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" @@ -173,8 +173,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M, aby otworzyć teraz ustawienia notatek" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Nowe ustawienia: Czcionki OpenDyslexia. elementary OS ma to OOTB, ale nie inne DE." +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Niektóre elementy interfejsu użytkownika pojawiają się po ich wyświetleniu, co zapewnia elegancki wygląd" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -558,6 +558,9 @@ msgstr "Wiadomości e-mail i łącza można klikać! Ctrl+kliknięcie, aby otwor msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Tekst obsługuje cofanie, ponawianie i można używać emotikonów :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Nowe ustawienia: Czcionki OpenDyslexia. elementary OS ma to OOTB, ale nie inne DE." + #~ msgid "Sticky notes utility" #~ msgstr "Narzędzie do notatek samoprzylepnych" diff --git a/po/extra/pt.po b/po/extra/pt.po index 84b6e433..d09da2d6 100644 --- a/po/extra/pt.po +++ b/po/extra/pt.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: Rodolfo Sabino \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-02-18 11:43-03\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -175,8 +175,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M para abrir as definições das notas agora" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Novas definições: Tipos de letra OpenDyslexia. O sistema operativo elementar tem esse tipo de letra, mas não outros sistemas de desenvolvimento" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Alguns elementos da IU aparecem depois de serem mostrados, para dar um toque elegante" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -564,6 +564,9 @@ msgstr "Email e links são clicáveis! E-mails e links são clicáveis! Ctrl+Cli msgid "Text supports undo, redo, and you can use emojis :)" msgstr "O texto suporta desfazer, refazer e você pode usar emojis :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Novas definições: Tipos de letra OpenDyslexia. O sistema operativo elementar tem esse tipo de letra, mas não outros sistemas de desenvolvimento" + #~ msgid "Sticky notes utility" #~ msgstr "Utilitário de notas adesivas" diff --git a/po/extra/pt_br.po b/po/extra/pt_br.po index f2839fbd..a287b8de 100644 --- a/po/extra/pt_br.po +++ b/po/extra/pt_br.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: Rodolfo Sabino \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-02-18 11:43-03\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -175,8 +175,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M para abrir as configurações de notas agora" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Novas configurações: Fontes OpenDyslexia. O sistema operacional elementar tem essas fontes no OOTB, mas não em outros DEs" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Alguns elementos da interface do usuário são exibidos depois de serem mostrados, para dar um toque de elegância" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -566,6 +566,9 @@ msgstr "E-mails e links são clicáveis! Ctrl+Clique para abrir no correio eletr msgid "Text supports undo, redo, and you can use emojis :)" msgstr "O texto suporta desfazer, refazer e você pode usar emojis :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Novas configurações: Fontes OpenDyslexia. O sistema operacional elementar tem essas fontes no OOTB, mas não em outros DEs" + #~ msgid "Sticky notes utility" #~ msgstr "Utilitário de notas adesivas" diff --git a/po/extra/ru.po b/po/extra/ru.po index 7ed2c2e6..65e5f929 100644 --- a/po/extra/ru.po +++ b/po/extra/ru.po @@ -7,7 +7,7 @@ msgstr "" "Last-Translator: Kultyapov Andrey \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-04-06 17:08+0400\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" "X-Generator: Poedit 3.4.2\n" @@ -173,8 +173,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M, чтобы открыть настройки заметок сейчас" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Новые настройки: Шрифты OpenDyslexia. Элементарная ОС имеет это OOTB, но не другие DE" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Некоторые элементы пользовательского интерфейса отображаются после показа, что придает им элегантный вид." #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -555,6 +555,9 @@ msgstr "Электронная почта и ссылки кликируются msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Текст поддерживает отмену, повтор, и вы можете использовать эмодзи :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Новые настройки: Шрифты OpenDyslexia. Элементарная ОС имеет это OOTB, но не другие DE" + #~ msgid "Sticky notes utility" #~ msgstr "Утилита для заметок на стикерах" diff --git a/po/extra/sk.po b/po/extra/sk.po index bb9fec75..68da11a9 100644 --- a/po/extra/sk.po +++ b/po/extra/sk.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -174,8 +174,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M na otvorenie nastavení poznámky" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Nové nastavenia: Základný OS to má OOTB, ale nie iné DE" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Niektoré prvky používateľského rozhrania sa zobrazia po zobrazení, aby pôsobili elegantne" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -562,6 +562,9 @@ msgstr "E -mail a odkazy sú možné kliknúť! " msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Text podporuje späť, opätovne, a môžete použiť emodži :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Nové nastavenia: Základný OS to má OOTB, ale nie iné DE" + #~ msgid "Sticky notes utility" #~ msgstr "Lepivé poznámky Utility" diff --git a/po/extra/sv.po b/po/extra/sv.po index 7ba39049..cb17eb0f 100644 --- a/po/extra/sv.po +++ b/po/extra/sv.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -174,8 +174,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M för att öppna anteckningsinställningar nu" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Nya inställningar: OpenDyslexia-teckensnitt. elementary OS har det OOTB, men inte andra DE" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Vissa användargränssnittselement visas efter att de har visats, för en elegant känsla" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -562,6 +562,9 @@ msgstr "E -post och länkar är klickbara! " msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Text stöder ångra, göra om, och du kan använda emojis :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Nya inställningar: OpenDyslexia-teckensnitt. elementary OS har det OOTB, men inte andra DE" + #~ msgid "Sticky notes utility" #~ msgstr "Sticky Notes Utility" diff --git a/po/extra/tr.po b/po/extra/tr.po index 8e879321..222d51d8 100644 --- a/po/extra/tr.po +++ b/po/extra/tr.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" @@ -173,8 +173,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Not ayarlarını şimdi açmak için Ctrl+M" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Yeni ayarlar: OpenDyslexia yazı tipleri. temel işletim sistemi OOTB'ye sahip, ancak diğer DE'ler değil" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Şık bir hava için bazı kullanıcı arayüzü öğeleri gösterildikten sonra ortaya çıkıyor" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -558,6 +558,9 @@ msgstr "E-posta ve bağlantılar tıklanabilir! Posta veya tarayıcıda açmak i msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Metin geri almayı, yinelemeyi destekler ve emojileri kullanabilirsiniz :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Yeni ayarlar: OpenDyslexia yazı tipleri. temel işletim sistemi OOTB'ye sahip, ancak diğer DE'ler değil" + #~ msgid "Sticky notes utility" #~ msgstr "Yapışkan notlar yardımcı programı" diff --git a/po/extra/uk.po b/po/extra/uk.po index 78f383f6..4810be1a 100644 --- a/po/extra/uk.po +++ b/po/extra/uk.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" @@ -173,8 +173,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M, щоб відкрити налаштування нот зараз" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "Нові налаштування: Шрифти OpenDyslexia. елементарна ОС має цей OOTB, але не інші DE" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "Деякі елементи інтерфейсу з'являються після показу, щоб створити елегантну атмосферу" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -559,6 +559,9 @@ msgstr "Електронні листи та посилання клікабел msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Текст підтримує скасування, повтор, і ви можете використовувати смайлики :)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "Нові налаштування: Шрифти OpenDyslexia. елементарна ОС має цей OOTB, але не інші DE" + #~ msgid "Sticky notes utility" #~ msgstr "Утиліта для стікерів" diff --git a/po/extra/zh.po b/po/extra/zh.po index 51f588ed..bffa18d6 100644 --- a/po/extra/zh.po +++ b/po/extra/zh.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:21+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -174,8 +174,8 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M 立即打开音符设置" #: data/jorts.metainfo.xml.in:106 -msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" -msgstr "新设置:OpenDyslexia(开放式阅读障碍)字体。" +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "一些用户界面元素在显示后会显示出来,营造出时尚的氛围" #: data/jorts.metainfo.xml.in:107 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" @@ -563,6 +563,9 @@ msgstr "电子邮件和链接可点击!Ctrl+ 点击可在邮件或浏览器中 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "文本支持撤消、重做,还可以使用表情符号:)" +#~ msgid "New settings: OpenDyslexia fonts. elementary OS has that OOTB, but not other DEs" +#~ msgstr "新设置:OpenDyslexia(开放式阅读障碍)字体。" + #~ msgid "Sticky notes utility" #~ msgstr "便条实用程序" diff --git a/po/fi.po b/po/fi.po index e1829934..4ff61b60 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Lisää hymiö" msgid "Preferences for this sticky note" msgstr "Tämän muistilapun asetukset" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Mustikka" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Lime" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Minttu" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banaani" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Mansikka" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Oranssi" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Bubblegum" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Viinirypäle" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Kaakao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Liuskekivi" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Oletusfontti" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Napsauta käyttääksesi tekstin oletusfonttia" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Klikkaa käyttääksesi monospaced-fonttia" @@ -105,6 +64,44 @@ msgstr "Oletusarvoinen zoomaustaso" msgid "Zoom in" msgstr "Suurenna" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Mustikka" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Minttu" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Lime" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banaani" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Oranssi" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Mansikka" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Liuskekivi" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Viinirypäle" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Kaakao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Pyyntö järjestelmälle lähetetty" @@ -165,14 +162,14 @@ msgstr "Sulje" msgid "Close preferences" msgstr "Sulje asetukset" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Jortsit" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Muokkaa otsikkoa napsauttamalla" @@ -188,238 +185,221 @@ msgstr "Kaikkien muistilappujen asetukset" msgid "Preferences" msgstr "Asetukset" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Luo uusi huomautus" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Luo muistiinpano ja liitä sitten leikepöydältä" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Näytä asetukset" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Nollaa kaikki asetukset oletusasetuksiin" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Kaikki parhaat ystäväni" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Minun superhyvä salainen reseptini" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Minun tehtävälistani" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Supersalaisuus, jota ei saa kertoa kenellekään" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Ostoslistani" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Satunnaisia ajatuksia suihkusta" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Minun suosikki fanifiktiot" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Minun suosikkini dinosaurukset" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Minun pahan aivoriiheni suunnitelma" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Mikä sai minut hymyilemään tänään" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Hei maailma!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Uusi tarra, uusi minä" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Piilotettu merirosvoaarre" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Ettei unohda, koskaan" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Rakas päiväkirja," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Hyvää päivänjatkoa! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Lääkkeideni aikataulu" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Kotityöt" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Oodi kissalleni" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Koirieni lempilelut" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Kuinka siistejä lintuni ovat" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Viimeisen keksin tapauksen epäillyt" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Sanat, jotka papukaijani tuntevat" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Siistit ja hauskat kohteliaisuudet jaettavaksi" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Kuunnelkaa," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Unelmieni Pokemon-joukkue" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Pienet muistiinpanoni" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Yllätyslahjalista" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Aivoriihi muistiinpanot" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Tuo juhliin" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Minun hämmästyttävä mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Lautasliina scribblys" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Minun suosikki kappaleita laulaa yhdessä" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Milloin mitäkin kasvia kastellaan" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Top 10 anime pettämistä" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Uskomatonta ascii-taidetta!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Grillausta varten" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Koirieni lempilelut" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Parhaat ainesosat salaattiin" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Luettavat kirjat" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Vierailukohteet" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Kokeilevat harrastukset" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Kuka voittaisi Gokun" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Istuttaa puutarhaan" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Ateriat tällä viikolla" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Kaikkien pizzatilaus" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Tänään itsehoito tehdä" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Tärkeitä vakuutuksia muistettavaksi" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Siisteimmät linux-sovellukset" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Koirieni lempilelut" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Minun hauskimmat vitsini" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Täydellinen aamiainen on..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Onnittelut!🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -439,6 +419,22 @@ msgstr "" "Hyvää päivänjatkoa!🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Bubblegum" + +#~ msgid "Create a new note" +#~ msgstr "Luo uusi huomautus" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Luo muistiinpano ja liitä sitten leikepöydältä" + +#~ msgid "Show preferences" +#~ msgstr "Näytä asetukset" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Nollaa kaikki asetukset oletusasetuksiin" + #~ msgid "Reset to Default" #~ msgstr "Palauta oletusasetuksiin" diff --git a/po/fil.po b/po/fil.po index a853eee7..1b817280 100644 --- a/po/fil.po +++ b/po/fil.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,60 +33,19 @@ msgstr "Ipasok ang emoji" msgid "Preferences for this sticky note" msgstr "Mga kagustuhan para sa malagkit na tala na ito" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "dayap" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "mint" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "ubas" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 msgid "Default" msgstr "" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "" @@ -109,6 +68,42 @@ msgstr "Default na antas ng zoom" msgid "Zoom in" msgstr "Mag -zoom in" +#: src/Objects/Themes.vala:58 src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "mint" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "dayap" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "" + +#: src/Objects/Themes.vala:64 src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "ubas" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "" @@ -171,12 +166,12 @@ msgstr "" msgid "Close preferences" msgstr "" -#: src/Windows/StickyNoteWindow.vala:92 src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 src/Windows/PreferenceWindow.vala:52 +#: src/Windows/StickyNoteWindow.vala:97 src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr "" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "" @@ -193,237 +188,221 @@ msgstr "Mga kagustuhan para sa malagkit na tala na ito" msgid "Preferences" msgstr "" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "" - -#: src/Application.vala:177 -msgid "Reset all settings" -msgstr "" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Lahat ng aking matalik na kaibigan" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Ang aking sobrang magandang lihim na recipe" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Ang aking listahan ng todo" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Super lihim upang hindi sabihin sa sinuman" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Listahan ng aking grocery" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Mga saloobin sa random na shower" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Ang aking fav fanfics" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Ang aking mga fav dinosaur" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Ang aking masamang plano sa mastermind" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Ano ang nagpangiti sa akin ngayon" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Hello World!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Bagong malagkit, bago ako" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Nakatagong Kayamanan ng Pirate" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Upang huwag kalimutan, kailanman" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "mahal na talaarawan," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Magandang araw! " -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Ang iskedyul ng aking meds" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Mga gawaing bahay" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ode sa aking pusa" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Ang aking mga aso paboritong laruan" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Gaano katindi ang aking mga ibon" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Ang mga suspek sa huling pag -iibigan ng cookie" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Mga salitang alam ng aking mga loro" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Malamig at nakakatawang papuri na ibigay" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Ok, makinig dito," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Ang Aking Pangarap na Pokemon Team" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Ang aking maliit na tala" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Listahan ng Regalo ng Sorpresa" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Mga tala sa brainstorming" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Upang dalhin sa partido" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Ang aking kamangha -manghang mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Napkin scribblys" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Ang aking mga kanta ng fav upang kumanta" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Kailan sa tubig na halaman" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Nangungunang 10 Betrayals Betrayals" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Ang aking mga aso paboritong laruan" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Ang aking mga aso paboritong laruan" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "" -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" diff --git a/po/fr.po b/po/fr.po index 304caf8c..c49709c1 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,4 +1,3 @@ -#, fuzzy msgid "" msgstr "" "Content-Transfer-Encoding: 8bit\n" @@ -8,7 +7,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,60 +27,19 @@ msgstr "Insérer un émoji" msgid "Preferences for this sticky note" msgstr "Préférences pour cette note autocollante" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Myrtille" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Citron vert" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Menthe" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banane" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Fraise" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Orange" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Chewing-gum" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Raisin" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Cacao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Ardoise" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 msgid "Default" msgstr "Standard" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Cliquez pour utiliser la police de texte par défaut" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Cliquez pour utiliser une police monospaciale" @@ -104,6 +62,44 @@ msgstr "Zoom par défaut" msgid "Zoom in" msgstr "Zoom avant" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Myrtille" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Menthe" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Citron vert" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banane" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Orange" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Fraise" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Ardoise" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Raisin" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Cacao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Envoi d'une demande au système" @@ -162,14 +158,14 @@ msgstr "Fermer" msgid "Close preferences" msgstr "Fermer les préférences" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Jorts" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Cliquez pour modifier le titre" @@ -184,235 +180,219 @@ msgstr "Préférences pour vos Jorts" msgid "Preferences" msgstr "Préférences" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Créer une nouvelle note" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Créer une note puis la coller à partir du presse-papiers" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Afficher les préférences" - -#: src/Application.vala:177 -msgid "Reset all settings" -msgstr "Réinitialiser les paramètres" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Tous mes meilleurs amis" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Ma super bonne recette secrète" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Ma liste de choses à faire" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Un super secret à ne révéler à personne" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Ma liste de courses" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Réflexions aléatoires sous la douche" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Mes fanfics préférées" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Mes dinosaures préférés" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Mon plan diabolique" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Ce qui m'a fait sourire aujourd'hui" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Bonjour à tous !" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Nouveau collant, nouveau moi" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Trésor de pirates caché" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Pour ne jamais oublier" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Cher journal," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Bonne journée ! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Mon calendrier de prise de médicaments" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Tâches ménagères" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ode à mon chat" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Les jouets préférés de mes chiens" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Comme mes oiseaux sont cool" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Suspects dans l'affaire du dernier biscuit" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Des mots que mes perroquets connaissent" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Des compliments sympas et amusants à distribuer" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Ok, écoutez ici," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "L'équipe Pokemon de mes rêves" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Mes petites notes" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Liste de cadeaux surprise" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Notes de brainstorming" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "À apporter à la fête" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Mon incroyable mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Serviettes de table scribblys" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Mes chansons préférées à chanter" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Quand arroser quelle plante" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Top 10 des trahisons dans les animes" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Un art ascii étonnant !" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Pour le barbecue" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 msgid "My favourite bands" msgstr "Mes groupes préférés" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Les meilleurs ingrédients pour la salade" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Livres à lire" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Lieux à visiter" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Passe-temps à essayer" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Qui gagnerait contre Goku" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "A planter dans le jardin" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Repas de la semaine" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "La commande de pizza de chacun" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Aujourd'hui, prendre soin de soi" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Affirmations importantes à retenir" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Les applications linux les plus cool" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 msgid "My favourite dishes" msgstr "Mes plats préférés" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Mes blagues les plus drôles" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Le petit déjeuner parfait a..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Félicitations!🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -431,3 +411,18 @@ msgstr "" "J'espère que ma petite application vous apportera beaucoup de joie\n" "Bonne journée!🎇\n" "" + +#~ msgid "Bubblegum" +#~ msgstr "Chewing-gum" + +#~ msgid "Create a new note" +#~ msgstr "Créer une nouvelle note" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Créer une note puis la coller à partir du presse-papiers" + +#~ msgid "Show preferences" +#~ msgstr "Afficher les préférences" + +#~ msgid "Reset all settings" +#~ msgstr "Réinitialiser les paramètres" diff --git a/po/hi.po b/po/hi.po index f5c984b6..032b9144 100644 --- a/po/hi.po +++ b/po/hi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,60 +33,19 @@ msgstr "इमोजी डालें" msgid "Preferences for this sticky note" msgstr "इस चिपचिपे नोट के लिए वरीयताएँ" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "ब्लूबेरी" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "चूना" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "टकसाल" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "केला" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "स्ट्रॉबेरी" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "नारंगी" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "बबलगम" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "अंगूर" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "कोको" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "स्लेट" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 msgid "Default" msgstr "" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "" @@ -109,6 +68,42 @@ msgstr "डिफ़ॉल्ट ज़ूम स्तर" msgid "Zoom in" msgstr "ज़ूम इन" +#: src/Objects/Themes.vala:58 src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "ब्लूबेरी" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "टकसाल" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "चूना" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "केला" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "नारंगी" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "स्ट्रॉबेरी" + +#: src/Objects/Themes.vala:64 src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "स्लेट" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "अंगूर" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "कोको" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "" @@ -171,12 +166,12 @@ msgstr "" msgid "Close preferences" msgstr "" -#: src/Windows/StickyNoteWindow.vala:92 src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 src/Windows/PreferenceWindow.vala:52 +#: src/Windows/StickyNoteWindow.vala:97 src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr "" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "" @@ -193,237 +188,221 @@ msgstr "इस चिपचिपे नोट के लिए वरीयत msgid "Preferences" msgstr "" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "" - -#: src/Application.vala:177 -msgid "Reset all settings" -msgstr "" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "मेरे सभी सबसे अच्छे दोस्त" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "मेरा सुपर गुड सीक्रेट रेसिपी" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "मेरी टोडो सूची" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "किसी को नहीं बताने के लिए सुपर सीक्रेट" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "मेरी किराने की सूची" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "यादृच्छिक शावर विचार" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "मेरे फेव फैनफिक्स" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "मेरे फेव डायनासोर" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "मेरी दुष्ट मास्टरमाइंड योजना" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "आज मुझे क्या मुस्कुरा दिया" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "हैलो वर्ल्ड!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "नया चिपचिपा, नया मुझे" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "छिपा हुआ समुद्री डाकू खजाना" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "कभी नहीं भूलना, कभी भी" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "प्रिय डायरी," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "आपका दिन शुभ हो! " -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "मेरे मेड्स शेड्यूल" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "घरेलू काम" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "मेरी बिल्ली के लिए ode" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "मेरे कुत्ते पसंदीदा खिलौने" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "मेरे पक्षी कितने शांत हैं" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "अंतिम कुकी चक्कर में संदिग्ध" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "शब्द मेरे तोते जानते हैं" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "बाहर देने के लिए शांत और मजेदार तारीफ" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "ठीक है, यहाँ सुनो," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "मेरा ड्रीम पोकेमॉन टीम" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "मेरे छोटे नोट" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "आश्चर्य उपहार सूची" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "विचार मंथन नोट्स" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "पार्टी में लाने के लिए" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "मेरा अद्भुत मिक्सटेप" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "नैपकिन स्क्रिबल्स" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "मेरे fav गाने के साथ गाने के लिए" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "कब पानी के लिए पानी" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "शीर्ष 10 एनीमे विश्वासघात" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "मेरे कुत्ते पसंदीदा खिलौने" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "मेरे कुत्ते पसंदीदा खिलौने" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "" -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -434,6 +413,9 @@ msgid "" "Have a great day!🎇\n" msgstr "" +#~ msgid "Bubblegum" +#~ msgstr "बबलगम" + #~ msgid "Edit title" #~ msgstr "शीर्षक संपादित करें" diff --git a/po/io.github.ellie_commons.jorts.pot b/po/io.github.ellie_commons.jorts.pot index ba05e2a6..29146d9f 100644 --- a/po/io.github.ellie_commons.jorts.pot +++ b/po/io.github.ellie_commons.jorts.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,80 +33,75 @@ msgstr "" msgid "Preferences for this sticky note" msgstr "" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" +#: src/Widgets/MonospaceBox.vala:31 +msgid "Default" msgstr "" -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" +#: src/Widgets/MonospaceBox.vala:32 +msgid "Click to use default text font" msgstr "" -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" +#: src/Widgets/MonospaceBox.vala:37 +msgid "Monospace" msgstr "" -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" +#: src/Widgets/MonospaceBox.vala:38 +msgid "Click to use monospaced font" msgstr "" -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" +#. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% +#. It must stay as "%d" in the translation so the app can replace it with the current zoom level. +#: src/Widgets/ZoomBox.vala:20 +#, c-format +msgid "%d%%" msgstr "" -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" +#: src/Widgets/ZoomBox.vala:38 +msgid "Zoom out" msgstr "" -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" +#: src/Widgets/ZoomBox.vala:45 +msgid "Default zoom level" msgstr "" -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" +#: src/Widgets/ZoomBox.vala:52 +msgid "Zoom in" msgstr "" -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" +#: src/Objects/Themes.vala:58 src/Objects/Themes.vala:68 +msgid "Blueberry" msgstr "" -#: src/Widgets/MonospaceBox.vala:27 -msgid "Default" +#: src/Objects/Themes.vala:59 +msgid "Mint" msgstr "" -#: src/Widgets/MonospaceBox.vala:28 -msgid "Click to use default text font" +#: src/Objects/Themes.vala:60 +msgid "Lime" msgstr "" -#: src/Widgets/MonospaceBox.vala:33 -msgid "Monospace" +#: src/Objects/Themes.vala:61 +msgid "Banana" msgstr "" -#: src/Widgets/MonospaceBox.vala:34 -msgid "Click to use monospaced font" +#: src/Objects/Themes.vala:62 +msgid "Orange" msgstr "" -#. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% -#. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 -#, c-format -msgid "%d%%" +#: src/Objects/Themes.vala:63 +msgid "Strawberry" msgstr "" -#: src/Widgets/ZoomBox.vala:38 -msgid "Zoom out" +#: src/Objects/Themes.vala:64 src/Objects/Themes.vala:67 +msgid "Slate" msgstr "" -#: src/Widgets/ZoomBox.vala:45 -msgid "Default zoom level" +#: src/Objects/Themes.vala:65 +msgid "Grape" msgstr "" -#: src/Widgets/ZoomBox.vala:52 -msgid "Zoom in" +#: src/Objects/Themes.vala:66 +msgid "Cocoa" msgstr "" #: src/Views/PreferencesView.vala:25 @@ -171,12 +166,12 @@ msgstr "" msgid "Close preferences" msgstr "" -#: src/Windows/StickyNoteWindow.vala:92 src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 src/Windows/PreferenceWindow.vala:52 +#: src/Windows/StickyNoteWindow.vala:97 src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr "" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "" @@ -192,235 +187,219 @@ msgstr "" msgid "Preferences" msgstr "" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "" - -#: src/Application.vala:177 -msgid "Reset all settings" -msgstr "" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "" -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "" -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 msgid "My favourite bands" msgstr "" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 msgid "My favourite dishes" msgstr "" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "" -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" diff --git a/po/it.po b/po/it.po index 5952a008..075376bc 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: Albano Battistella \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-05-10 12:46+0100\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Inserire emoji" msgid "Preferences for this sticky note" msgstr "Preferenze per questa nota adesiva" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Mirtillo" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Lime" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Menta" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banana" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Fragola" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Arancia" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Gomma da masticare" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Uva" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Cacao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Ardesia" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Ripristino delle impostazioni predefinite" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Fare clic per utilizzare il carattere di testo predefinito" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospazio" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Fare clic per utilizzare il carattere monospaziato" @@ -105,6 +64,44 @@ msgstr "Livello di zoom predefinito" msgid "Zoom in" msgstr "Ingrandisci" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Mirtillo" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Menta" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Lime" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banana" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Arancia" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Fragola" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Ardesia" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Uva" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Cacao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Richiesta inviata al sistema" @@ -163,14 +160,14 @@ msgstr "Chiudere" msgid "Close preferences" msgstr "Chiudere le preferenze" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Pantaloncini" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Fare clic per modificare il titolo" @@ -185,238 +182,221 @@ msgstr "Preferenze per i tuoi Jorts" msgid "Preferences" msgstr "Preferenze" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Creare una nuova nota" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Creare una nota e incollarla dagli appunti" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Mostra preferenze" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Ripristinare tutte le impostazioni predefinite" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Tutti i miei migliori amici" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "La mia ricetta segreta super buona" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Il mio elenco di cose da fare" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Un super segreto da non dire a nessuno" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "La mia lista della spesa" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Pensieri casuali sulla doccia" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Le mie fanfic preferite" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "I miei dinosauri preferiti" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Il mio piano da genio del male" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Cosa mi ha fatto sorridere oggi" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Ciao mondo!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Nuovo appiccicoso, nuovo me" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Il tesoro nascosto dei pirati" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Per non dimenticare, mai" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Caro Diario," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Buona giornata! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Il mio programma di farmaci" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Faccende domestiche" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ode al mio gatto" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "I giocattoli preferiti dai miei cani" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Quanto sono belli i miei uccelli" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Sospetti nella vicenda dell'ultimo biscotto" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Le parole che i miei pappagalli conoscono" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Complimenti simpatici e divertenti da distribuire" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Ok, ascoltate qui," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "La squadra Pokemon dei miei sogni" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Le mie piccole note" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Lista di regali a sorpresa" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Note di brainstorming" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Da portare alla festa" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Il mio fantastico mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Tovaglioli scribblys" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Le mie canzoni preferite da cantare insieme" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Quando innaffiare quale pianta" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "I 10 migliori tradimenti degli anime" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Arte ascii sorprendente!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Per il barbecue" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "I giocattoli preferiti dai miei cani" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "I migliori ingredienti per l'insalata" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Libri da leggere" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Luoghi da visitare" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Hobby da provare" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Chi vincerebbe contro Goku" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Da piantare in giardino" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "I pasti di questa settimana" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "L'ordine di pizza di tutti" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Oggi la cura di sé da fare" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Affermazioni importanti da ricordare" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Le applicazioni linux più interessanti" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "I giocattoli preferiti dai miei cani" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Le mie battute più divertenti" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "La colazione perfetta è..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Congratulazioni!🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -436,6 +416,22 @@ msgstr "" "Buona giornata! 🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Gomma da masticare" + +#~ msgid "Create a new note" +#~ msgstr "Creare una nuova nota" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Creare una nota e incollarla dagli appunti" + +#~ msgid "Show preferences" +#~ msgstr "Mostra preferenze" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Ripristinare tutte le impostazioni predefinite" + #~ msgid "Permissions" #~ msgstr "Permessi" diff --git a/po/ja.po b/po/ja.po index aa64accc..a106740d 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,7 +7,7 @@ msgstr "" "Last-Translator: Ryo Nakano \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-05-11 19:52+0900\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -27,61 +27,20 @@ msgstr "絵文字を挿入" msgid "Preferences for this sticky note" msgstr "この付箋の設定" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "ブルーベリー" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "ライム" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "ミント" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "バナナ" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "ストロベリー" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "オレンジ" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "バブルガム" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "グレープ" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "ココア" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "スレート" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "デフォルトにリセット" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "デフォルトのテキストフォントを使用する場合はクリックしてください。" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "モノスペース" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "等幅フォントを使用する場合はクリックしてください。" @@ -104,6 +63,44 @@ msgstr "デフォルトのズームレベル" msgid "Zoom in" msgstr "拡大" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "ブルーベリー" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "ミント" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "ライム" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "バナナ" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "オレンジ" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "ストロベリー" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "スレート" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "グレープ" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "ココア" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "システムへのリクエスト送信" @@ -162,14 +159,14 @@ msgstr "閉じる" msgid "Close preferences" msgstr "環境設定を閉じる" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr "- ジョーツ" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "クリックしてタイトルを編集する" @@ -184,238 +181,221 @@ msgstr "Jorts を着こなす" msgid "Preferences" msgstr "好み" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "新しいノートを作成する" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "メモを作成し、クリップボードから貼り付ける" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "プリファレンスを表示する" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "すべての設定をデフォルトに戻す" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "私の大事な親友" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "とってもおいしい私の秘伝レシピ" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "私のやることリスト" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "誰にも言えない秘密" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "食料品リスト" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "脈絡のない思いつき" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "私のお気に入りの二次創作" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "私の好きな恐竜" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "ぼくのかんがえたさいきょうのいたずら作戦" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "今日笑ったこと" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "こんにちは世界!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "新しい付箋、新しい自分" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "隠された海賊の財宝" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "決して忘れないために" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "私の日記" -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "良い一日を! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "私の服用スケジュール" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "家事" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "愛猫への頌歌" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "愛犬のお気に入りのおもちゃ" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "俺の飼っている鳥が好きすぎる件" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "クッキー最後の一枚消失事件の容疑者" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "我が家のオウムが知っている言葉" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "クールで面白い褒め言葉" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "皆の衆、よく聞きたまえ!" -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "夢のポケモンチーム" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "私の小さなメモ" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "サプライズプレゼントリスト" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "ブレインストーミング" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "パーティーに持参する" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "私の素晴らしいミックステープ" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "紙ナプキンに落書き" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "一緒に歌いたいお気に入りの曲" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "どの植物にいつ水をやるか" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "アニメの裏切りシーントップ 10" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "素晴らしいアスキーアート!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "バーベキュー用" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "愛犬のお気に入りのおもちゃ" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "サラダに最適な食材" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "読みたい本" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "見どころ" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "やってみたい趣味" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "悟空に勝つのは誰か" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "庭に植える" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "今週の食事" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "みんなのピザ注文" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "今日のセルフケア" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "覚えておくべき重要なアファメーション" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "最もクールなLinuxアプリ" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "愛犬のお気に入りのおもちゃ" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "私の面白いジョーク" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "完璧な朝食は..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥おめでとうございます!🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -435,6 +415,22 @@ msgstr "" "素晴らしい一日をお過ごしください。\n" "" +#~ msgid "Bubblegum" +#~ msgstr "バブルガム" + +#~ msgid "Create a new note" +#~ msgstr "新しいノートを作成する" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "メモを作成し、クリップボードから貼り付ける" + +#~ msgid "Show preferences" +#~ msgstr "プリファレンスを表示する" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "すべての設定をデフォルトに戻す" + #~ msgid "Permissions" #~ msgstr "アクセス許可" diff --git a/po/lt.po b/po/lt.po index bfbb2f23..34e2e840 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Įterpti šypsenėlę" msgid "Preferences for this sticky note" msgstr "Šio lipnaus lapelio nuostatos" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Mėlynių" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Lime" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Mėtos" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Bananai" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Braškių" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Oranžinė" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Bubblegum" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Vynuogės" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Kakava" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Šiferis" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Iš naujo nustatyti numatytąjį nustatymą" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Spustelėkite, jei norite naudoti numatytąjį teksto šriftą" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Spustelėkite, jei norite naudoti vienspalvį šriftą" @@ -105,6 +64,44 @@ msgstr "Numatytasis priartinimo lygis" msgid "Zoom in" msgstr "Priartinti vaizdą" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Mėlynių" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Mėtos" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Lime" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Bananai" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Oranžinė" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Braškių" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Šiferis" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Vynuogės" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Kakava" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Išsiųsta užklausa sistemai" @@ -164,14 +161,14 @@ msgstr "Uždaryti" msgid "Close preferences" msgstr "Uždaryti nuostatas" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Šortai" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Spustelėkite, jei norite redaguoti pavadinimą" @@ -186,238 +183,221 @@ msgstr "Jūsų šortų pageidavimai" msgid "Preferences" msgstr "Nustatymai" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Sukurti naują pastabą" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Sukurkite pastabą, tada įklijuokite iš iškarpinės" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Rodyti nuostatas" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Iš naujo nustatyti visus numatytuosius nustatymus" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Visi mano geriausi draugai" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Mano itin geras slaptas receptas" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Mano darbų sąrašas" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Super paslaptis, kurios niekam nesakykite" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Mano maisto produktų sąrašas" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Atsitiktinės mintys apie dušą" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Mano mėgstamiausi fanfics" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Mano mėgstamiausi dinozaurai" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Mano blogio planas" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Kas mane šiandien privertė nusišypsoti" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Sveikas pasauli!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Naujas lipnus, naujas aš" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Paslėptas piratų lobis" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Niekada nepamiršti" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Mielas dienorašti," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Geros dienos! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Mano vaistų vartojimo grafikas" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Namų ruošos darbai" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Odė mano katei" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Mano šunų mėgstamiausi žaislai" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Kokie šaunūs yra mano paukščiai" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Įtariamieji dėl \"Paskutiniųjų sausainių\" bylos" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Žodžiai, kuriuos žino mano papūgos" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Šaunūs ir juokingi komplimentai" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Gerai, klausykitės čia," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Mano svajonių Pokemon komanda" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Mano mažos pastabos" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Netikėtų dovanų sąrašas" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Smegenų šturmo pastabos" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Atnešti į vakarėlį" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Mano nuostabus miksas" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Servetėlių skraistės" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Mano mėgstamiausios dainos dainuoti kartu" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Kada laistyti kurį augalą" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "10 geriausių anime išdavysčių" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Nuostabus ascii menas!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Dėl kepsninės" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Mano šunų mėgstamiausi žaislai" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Geriausi salotų ingredientai" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Skaitomos knygos" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Lankytinos vietos" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Išbandomi pomėgiai" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Kas laimėtų prieš Goku" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Sodinti sode" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Šios savaitės patiekalai" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Kiekvieno picos užsakymas" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Šiandien savarankiškai rūpintis" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Svarbūs teiginiai, kuriuos reikia prisiminti" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Šauniausios \"Linux\" programos" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Mano šunų mėgstamiausi žaislai" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Mano juokingiausi anekdotai" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Puikūs pusryčiai turi..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Sveikiname!🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -437,6 +417,22 @@ msgstr "" "Geros dienos!🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Bubblegum" + +#~ msgid "Create a new note" +#~ msgstr "Sukurti naują pastabą" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Sukurkite pastabą, tada įklijuokite iš iškarpinės" + +#~ msgid "Show preferences" +#~ msgstr "Rodyti nuostatas" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Iš naujo nustatyti visus numatytuosius nustatymus" + #~ msgid "Permissions" #~ msgstr "Leidimai" diff --git a/po/nb.po b/po/nb.po index 7aeb2482..062078e0 100644 --- a/po/nb.po +++ b/po/nb.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Sett inn emoji" msgid "Preferences for this sticky note" msgstr "Innstillinger for denne klistrelappen" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Blåbær" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Kalk" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Mynte" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banan" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Jordbær" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Oransje" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Bubblegum" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Drue" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Kakao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Skifer" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Tilbakestill til standard" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Klikk for å bruke standard tekstfont" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Klikk for å bruke monospaced font" @@ -105,6 +64,44 @@ msgstr "Standard zoomnivå" msgid "Zoom in" msgstr "Zoom inn" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Blåbær" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Mynte" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Kalk" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banan" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Oransje" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Jordbær" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Skifer" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Drue" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Kakao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Forespørsel til systemet sendt" @@ -164,15 +161,15 @@ msgstr "Lukk" msgid "Close preferences" msgstr "Lukk preferanser" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 #, fuzzy msgid " - Jorts" msgstr "Jorts" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Klikk for å redigere tittelen" @@ -188,238 +185,221 @@ msgstr "Innstillinger for denne klistrelappen" msgid "Preferences" msgstr "Innstillinger" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Opprett et nytt notat" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Opprett et notat og lim inn fra utklippstavlen" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Vis preferanser" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Tilbakestill alle innstillinger til standardinnstillingene" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Alle mine aller beste venner" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Min supergode hemmelige oppskrift" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Oppgavelisten min" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Superhemmeligheten du ikke må fortelle til noen" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Min handleliste" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Tilfeldige tanker om dusjen" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Mine favorittfanfics" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Mine favorittdinosaurer" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Min onde mesterhjerneplan" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Det som fikk meg til å smile i dag" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Hallo, verden!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Ny klistrelapp, ny meg" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Skjult sjørøverskatt" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Å aldri glemme, aldri" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Kjære dagbok," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Ha en fin dag! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Min medisinplan" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Huslige gjøremål" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ode til katten min" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Favorittlekene til hundene mine" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Så kule fuglene mine er" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Mistenkte i Last Cookie-saken" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Ord papegøyene mine kan" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Kule og morsomme komplimenter å gi ut" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Ok, hør her," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Mitt drømme-Pokemon-team" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Mine små notater" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Overraskende gaveliste" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Notater fra idémyldringen" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Å ta med til festen" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Min fantastiske mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Serviettskriblerier" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Mine favorittsanger å synge med på" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Når du skal vanne hvilken plante" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Topp 10 anime-svik" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Fantastisk ascii-kunst!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Til grillen" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Favorittlekene til hundene mine" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "De beste ingrediensene til salat" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Bøker å lese" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Steder å besøke" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Hobbyer å prøve ut" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Hvem ville vinne mot Goku" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Å plante i hagen" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Måltider denne uken" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Alles pizzabestilling" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "I dag er det egenpleie å gjøre" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Viktige affirmasjoner å huske på" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "De kuleste linux-appene" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Favorittlekene til hundene mine" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Mine morsomste vitser" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Den perfekte frokosten har..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Gratulerer! 🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -439,6 +419,22 @@ msgstr "" "Ha en flott dag 🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Bubblegum" + +#~ msgid "Create a new note" +#~ msgstr "Opprett et nytt notat" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Opprett et notat og lim inn fra utklippstavlen" + +#~ msgid "Show preferences" +#~ msgstr "Vis preferanser" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Tilbakestill alle innstillinger til standardinnstillingene" + #~ msgid "Permissions" #~ msgstr "Tillatelser" diff --git a/po/nl.po b/po/nl.po index e5e6cc7b..2ad950bb 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Emoji invoegen" msgid "Preferences for this sticky note" msgstr "Voorkeuren voor deze sticky note" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Bosbessen" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Kalk" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Munt" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banaan" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Aardbei" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Oranje" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Bubblegum" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Druif" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Cacao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Leisteen" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Standaard lettertype" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Klik om het standaard tekstlettertype te gebruiken" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Klik om een enkel lettertype te gebruiken" @@ -105,6 +64,44 @@ msgstr "Standaard zoomniveau" msgid "Zoom in" msgstr "Inzoomen" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Bosbessen" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Munt" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Kalk" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banaan" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Oranje" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Aardbei" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Leisteen" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Druif" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Cacao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Verzoek naar systeem verzonden" @@ -165,14 +162,14 @@ msgstr "Sluit" msgid "Close preferences" msgstr "Voorkeuren sluiten" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Korte broek" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Klik om de titel te bewerken" @@ -188,238 +185,221 @@ msgstr "Voorkeuren voor alle plaknotities" msgid "Preferences" msgstr "Voorkeuren" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Een nieuwe notitie maken" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Maak een notitie en plak deze vanaf het klembord" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Voorkeuren tonen" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Alle instellingen terugzetten op standaardwaarden" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Al mijn allerbeste vrienden" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Mijn supergoede geheime recept" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Mijn takenlijst" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Supergeheim om aan niemand te vertellen" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Mijn boodschappenlijstje" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Willekeurige douche gedachten" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Mijn favoriete fanfics" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Mijn favoriete dinosaurussen" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Mijn kwade meesterbrein plan" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Wat me vandaag deed glimlachen" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Hallo wereld!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Nieuwe klever, nieuwe ik" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Verborgen piratenschat" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Om nooit te vergeten" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Lief dagboek," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Fijne dag! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Mijn medicatieschema" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Huishoudelijke taken" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ode aan mijn kat" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Het favoriete speelgoed van mijn honden" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Hoe cool mijn vogels zijn" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Verdachten in de laatste koekjesaffaire" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Woorden die mijn papegaaien kennen" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Leuke en grappige complimenten om uit te delen" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Ok, luister hier," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Mijn Pokemon dreamteam" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Mijn kleine notities" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Lijst met verrassingscadeaus" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Notities brainstormen" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Om mee te nemen naar het feest" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Mijn geweldige mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Servet krabbetjes" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Mijn favoriete liedjes om mee te zingen" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Wanneer welke plant water geven" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Top 10 anime verraad" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Geweldige ascii-kunst!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Voor de barbecue" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Het favoriete speelgoed van mijn honden" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Beste ingrediënten voor salade" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Boeken om te lezen" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Plaatsen om te bezoeken" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Hobby's om uit te proberen" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Wie zou er winnen van Goku" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Om in de tuin te planten" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Maaltijden deze week" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Pizza bestellen voor iedereen" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Vandaag zelfzorg te doen" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Belangrijke affirmaties om te onthouden" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "De coolste Linux-apps" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Het favoriete speelgoed van mijn honden" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Mijn grappigste grappen" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Het perfecte ontbijt heeft..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "Gefeliciteerd!" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -439,6 +419,22 @@ msgstr "" "Fijne dag!\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Bubblegum" + +#~ msgid "Create a new note" +#~ msgstr "Een nieuwe notitie maken" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Maak een notitie en plak deze vanaf het klembord" + +#~ msgid "Show preferences" +#~ msgstr "Voorkeuren tonen" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Alle instellingen terugzetten op standaardwaarden" + #~ msgid "Reset to Default" #~ msgstr "Terugzetten naar standaard" diff --git a/po/no.po b/po/no.po index 6f56a82d..9f33ad25 100644 --- a/po/no.po +++ b/po/no.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,61 +28,20 @@ msgstr "Sett inn emoji" msgid "Preferences for this sticky note" msgstr "Innstillinger for denne klistrelappen" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Blåbær" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Kalk" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Mynte" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banan" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Jordbær" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Oransje" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Bubblegum" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Drue" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Kakao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Skifer" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Tilbakestill til standard" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "" @@ -105,6 +64,42 @@ msgstr "Standard zoomnivå" msgid "Zoom in" msgstr "Zoom inn" +#: src/Objects/Themes.vala:58 src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Blåbær" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Mynte" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Kalk" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banan" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Oransje" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Jordbær" + +#: src/Objects/Themes.vala:64 src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Skifer" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Drue" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Kakao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "" @@ -172,13 +167,13 @@ msgstr "Lukk" msgid "Close preferences" msgstr "" -#: src/Windows/StickyNoteWindow.vala:92 src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 src/Windows/PreferenceWindow.vala:52 +#: src/Windows/StickyNoteWindow.vala:97 src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 src/Windows/PreferenceWindow.vala:52 #, fuzzy msgid " - Jorts" msgstr "Jorts" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "" @@ -195,238 +190,221 @@ msgstr "Innstillinger for denne klistrelappen" msgid "Preferences" msgstr "" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Tilbakestill alle innstillinger til standardinnstillingene" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Alle mine aller beste venner" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Min supergode hemmelige oppskrift" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Oppgavelisten min" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Superhemmeligheten du ikke må fortelle til noen" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Min handleliste" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Tilfeldige tanker om dusjen" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Mine favorittfanfics" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Mine favorittdinosaurer" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Min onde mesterhjerneplan" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Det som fikk meg til å smile i dag" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Hallo, verden!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Ny klistrelapp, ny meg" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Skjult sjørøverskatt" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Å aldri glemme, aldri" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Kjære dagbok," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Ha en fin dag! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Min medisinplan" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Huslige gjøremål" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ode til katten min" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Favorittlekene til hundene mine" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Så kule fuglene mine er" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Mistenkte i Last Cookie-saken" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Ord papegøyene mine kan" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Kule og morsomme komplimenter å gi ut" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Ok, hør her," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Mitt drømme-Pokemon-team" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Mine små notater" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Overraskende gaveliste" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Notater fra idémyldringen" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Å ta med til festen" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Min fantastiske mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Serviettskriblerier" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Mine favorittsanger å synge med på" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Når du skal vanne hvilken plante" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Topp 10 anime-svik" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Fantastisk ascii-kunst!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Favorittlekene til hundene mine" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Favorittlekene til hundene mine" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "" -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Gratulerer! 🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -444,6 +422,13 @@ msgstr "" "Jeg håper min lille app gir deg mye glede\n" "Ha en flott dag 🎇\n" +#~ msgid "Bubblegum" +#~ msgstr "Bubblegum" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Tilbakestill alle innstillinger til standardinnstillingene" + #~ msgid "Permissions" #~ msgstr "Tillatelser" diff --git a/po/pl.po b/po/pl.po index a49524e8..02df95bc 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Wstaw emoji" msgid "Preferences for this sticky note" msgstr "Preferencje dla tej karteczki samoprzylepnej" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Jagoda" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Limonka" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Mięta" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banan" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Truskawka" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Pomarańczowy" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Bubblegum" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Winogrono" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Kakao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Łupek" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Przywróć ustawienia domyślne" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Kliknij, aby użyć domyślnej czcionki tekstu" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Kliknij, aby użyć czcionki z pojedynczym odstępem" @@ -105,6 +64,44 @@ msgstr "Domyślny poziom powiększenia" msgid "Zoom in" msgstr "Powiększenie" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Jagoda" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Mięta" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Limonka" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banan" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Pomarańczowy" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Truskawka" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Łupek" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Winogrono" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Kakao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Wysłano żądanie do systemu" @@ -165,14 +162,14 @@ msgstr "Zamknij" msgid "Close preferences" msgstr "Zamknij preferencje" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Spodenki" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Kliknij, aby edytować tytuł" @@ -187,238 +184,221 @@ msgstr "Preferencje dotyczące spodenek Jorts" msgid "Preferences" msgstr "Preferencje" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Utwórz nową notatkę" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Utwórz notatkę, a następnie wklej ją ze schowka" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Pokaż preferencje" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Resetowanie wszystkich ustawień do wartości domyślnych" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Wszyscy moi najlepsi przyjaciele" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Mój super dobry sekretny przepis" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Moja lista rzeczy do zrobienia" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Super sekret, o którym nikomu nie należy mówić" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Moja lista zakupów" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Przypadkowe przemyślenia pod prysznicem" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Moje ulubione fanfiki" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Moje ulubione dinozaury" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Mój szatański plan" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Co sprawiło, że się dziś uśmiechnąłem" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Witaj świecie!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Nowy sticky, nowy ja" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Ukryty piracki skarb" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Aby nigdy nie zapomnieć" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Drogi pamiętniku," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Miłego dnia! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Mój harmonogram przyjmowania leków" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Obowiązki domowe" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Oda do mojego kota" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Ulubione zabawki moich psów" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Jak fajne są moje ptaki" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Podejrzani w aferze Last Cookie" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Słowa, które znają moje papugi" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Fajne i zabawne komplementy do rozdania" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Ok, posłuchaj tutaj," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Moja wymarzona drużyna Pokemon" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Moje małe notatki" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Lista prezentów niespodzianek" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Notatki z burzy mózgów" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Do zabrania na imprezę" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Mój niesamowity mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Serwetki w kratkę" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Moje ulubione piosenki do śpiewania" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Kiedy podlewać jaką roślinę" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Top 10 zdrad w anime" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Niesamowita grafika ascii!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Na grilla" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Ulubione zabawki moich psów" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Najlepsze składniki sałatki" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Książki do przeczytania" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Miejsca do odwiedzenia" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Hobby do wypróbowania" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Kto wygrałby z Goku?" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Do sadzenia w ogrodzie" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Posiłki w tym tygodniu" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Wszyscy zamawiają pizzę" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Dzisiejsza samoopieka do zrobienia" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Ważne afirmacje do zapamiętania" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Najfajniejsze aplikacje linuksowe" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Ulubione zabawki moich psów" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Moje najśmieszniejsze żarty" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Idealne śniadanie ma..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Gratulacje! 🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -438,6 +418,22 @@ msgstr "" "Miłego dnia!🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Bubblegum" + +#~ msgid "Create a new note" +#~ msgstr "Utwórz nową notatkę" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Utwórz notatkę, a następnie wklej ją ze schowka" + +#~ msgid "Show preferences" +#~ msgstr "Pokaż preferencje" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Resetowanie wszystkich ustawień do wartości domyślnych" + #~ msgid "Permissions" #~ msgstr "Uprawnienia" diff --git a/po/pt.po b/po/pt.po index 7520fd40..7c4f2bd3 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: Rodolfo Sabino \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-02-18 11:43-03\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Insira emoji" msgid "Preferences for this sticky note" msgstr "Preferências para esta nota pegajosa" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Mirtilo" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Lima" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Hortelã" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banana" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Morango" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Laranja" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Chiclete" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Uva" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Cacau" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Ardósia" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Nível de zoom padrão" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Clique para utilizar o tipo de letra de texto predefinido" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monoespaço" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Clique para utilizar um tipo de letra monoespaçado" @@ -105,6 +64,44 @@ msgstr "Nível de zoom padrão" msgid "Zoom in" msgstr "Aumentar o zoom" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Mirtilo" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Hortelã" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Lima" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banana" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Laranja" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Morango" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Ardósia" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Uva" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Cacau" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Pedido enviado ao sistema" @@ -165,14 +162,14 @@ msgstr "Fechar" msgid "Close preferences" msgstr "Fechar preferências" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Calções de banho" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Clique para editar o título" @@ -188,238 +185,221 @@ msgstr "Preferências para esta nota pegajosa" msgid "Preferences" msgstr "Preferências" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Criar uma nova nota" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Criar uma nota e depois colar a partir da área de transferência" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Mostrar preferências" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Repor todas as definições para as predefinições" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Todos os meus melhores amigos" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Minha receita secreta super boa" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Minha lista de tarefas" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Super segredo para não contar a ninguém" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Minha lista de compras" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Pensamentos aleatórios de chuveiro" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Minhas fanfics favoritas" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Meus dinossauros favoritos" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Meu plano maligno" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "O que me fez sorrir hoje" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Olá, mundo!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Novo adesivo, novo eu" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Localização do tesouro pirata oculto" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Não se esqueça!" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Caro diário," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Tenha um bom dia! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Minha programação de medicamentos" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Tarefas domésticas a serem realizadas hoje" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ode ao meu gato" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Os brinquedos favoritos dos meus cães" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Como meus pássaros são legais" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Suspeitos no caso do Last Cookie" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Palavras que meus papagaios conhecem" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Elogios legais e engraçados para dar" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Ok, ouça aqui," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Minha equipe Pokémon dos sonhos" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Minhas pequenas anotações" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Lista de presentes surpresa" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Notas de brainstorming" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Para levar para a festa" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Minha incrível mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Rabiscos de guardanapo" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "minhas músicas favoritas para cantar junto" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "quando regar qual planta" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "10 melhores traições de anime" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Arte ascii incrível!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Para o churrasco" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Os brinquedos favoritos dos meus cães" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Os melhores ingredientes para a salada" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Livros para ler" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Locais a visitar" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Hobbies para experimentar" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Quem venceria contra Goku" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Para plantar no jardim" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Refeições desta semana" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "O pedido de pizza de todos" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Hoje, cuidados pessoais para fazer" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Afirmações importantes a reter" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "As aplicações linux mais fixes" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Os brinquedos favoritos dos meus cães" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "As minhas piadas mais engraçadas" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "O pequeno-almoço perfeito tem..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Parabéns!🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -439,6 +419,22 @@ msgstr "" "Tenham um ótimo dia!🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Chiclete" + +#~ msgid "Create a new note" +#~ msgstr "Criar uma nova nota" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Criar uma nota e depois colar a partir da área de transferência" + +#~ msgid "Show preferences" +#~ msgstr "Mostrar preferências" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Repor todas as definições para as predefinições" + #~ msgid "Reset to Default" #~ msgstr "Repor a predefinição" diff --git a/po/pt_br.po b/po/pt_br.po index ce30978d..cf323ec7 100644 --- a/po/pt_br.po +++ b/po/pt_br.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: Rodolfo Sabino \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-02-18 11:43-03\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Insira emoji" msgid "Preferences for this sticky note" msgstr "Preferências para esta nota pegajosa" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Mirtilo" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Lima" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Hortelã" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banana" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Morango" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Laranja" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Chiclete" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Uva" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Cacau" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Ardósia" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Nível de zoom padrão" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Clique para usar a fonte de texto padrão" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monoespaço" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Clique para usar uma fonte monoespaçada" @@ -105,6 +64,44 @@ msgstr "Nível de zoom padrão" msgid "Zoom in" msgstr "Aumentar o zoom" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Mirtilo" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Hortelã" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Lima" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banana" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Laranja" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Morango" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Ardósia" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Uva" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Cacau" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Solicitação enviada ao sistema" @@ -165,14 +162,14 @@ msgstr "Fechar" msgid "Close preferences" msgstr "Fechar preferências" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Jorts" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Clique para editar o título" @@ -188,238 +185,221 @@ msgstr "Preferências para esta nota pegajosa" msgid "Preferences" msgstr "Preferências" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Criar uma nova nota" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Criar uma nota e depois colar da área de transferência" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Mostrar preferências" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Redefinir todas as configurações para os padrões" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Todos os meus melhores amigos" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Minha receita secreta super boa" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Minha lista de tarefas" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Super segredo para não contar a ninguém" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Minha lista de compras" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Pensamentos aleatórios de chuveiro" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Minhas fanfics favoritas" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Meus dinossauros favoritos" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Meu plano maligno" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "O que me fez sorrir hoje" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Olá, mundo!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Novo adesivo, novo eu" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Localização do tesouro pirata oculto" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Não se esqueça!" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Caro diário," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Tenha um bom dia! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Minha programação de medicamentos" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Tarefas domésticas a serem realizadas hoje" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ode ao meu gato" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Os brinquedos favoritos dos meus cães" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Como meus pássaros são legais" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Suspeitos no caso do Last Cookie" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Palavras que meus papagaios conhecem" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Elogios legais e engraçados para dar" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Ok, ouça aqui," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Minha equipe Pokémon dos sonhos" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Minhas pequenas anotações" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Lista de presentes surpresa" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Notas de brainstorming" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Para levar para a festa" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Minha incrível mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Rabiscos de guardanapo" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "minhas músicas favoritas para cantar junto" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "quando regar qual planta" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "10 melhores traições de anime" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Arte ascii incrível!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Para o churrasco" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Os brinquedos favoritos dos meus cães" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Melhores ingredientes para salada" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Livros para ler" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Locais para visitar" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Hobbies para experimentar" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Quem venceria o Goku?" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Para plantar no jardim" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Refeições desta semana" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Pedido de pizza de todos" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Hoje, cuidados pessoais para fazer" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Afirmações importantes a serem lembradas" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Os aplicativos mais legais do Linux" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Os brinquedos favoritos dos meus cães" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Minhas piadas mais engraçadas" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "O café da manhã perfeito tem..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "Parabéns!" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -439,6 +419,22 @@ msgstr "" "Tenha um ótimo dia!\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Chiclete" + +#~ msgid "Create a new note" +#~ msgstr "Criar uma nova nota" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Criar uma nota e depois colar da área de transferência" + +#~ msgid "Show preferences" +#~ msgstr "Mostrar preferências" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Redefinir todas as configurações para os padrões" + #~ msgid "Reset to Default" #~ msgstr "Redefinir para o padrão" diff --git a/po/ru.po b/po/ru.po index 65275546..37bb0cf5 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgstr "" "Last-Translator: Kultyapov Andrey \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-04-06 17:02+0400\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" "X-Generator: Poedit 3.4.2\n" @@ -28,61 +28,20 @@ msgstr "Смайлики" msgid "Preferences for this sticky note" msgstr "Параметры стикера" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Черничный" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Лаймовый" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Мятный" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Банановый" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Клубничный" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Апельсиновый" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Бубльгум" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Виноградный" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Какао" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Каменно-серый" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Уровень масштабирования по умолчанию" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Нажмите, чтобы использовать шрифт по умолчанию" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Моноспейс" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Нажмите, чтобы использовать моношрифт" @@ -105,6 +64,44 @@ msgstr "Масштаб по умолчанию" msgid "Zoom in" msgstr "Увеличить" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Черничный" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Мятный" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Лаймовый" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Банановый" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Апельсиновый" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Клубничный" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Каменно-серый" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Виноградный" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Какао" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Отправлен запрос в систему" @@ -163,14 +160,14 @@ msgstr "Закрыть" msgid "Close preferences" msgstr "Закрыть предпочтения" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Шорты" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Нажмите, чтобы отредактировать название" @@ -185,238 +182,221 @@ msgstr "Параметры для этого стикера" msgid "Preferences" msgstr "Предпочтения" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Создайте новую заметку" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Создайте заметку, затем вставьте ее из буфера обмена" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Показать предпочтения" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Сброс всех настроек до значений по умолчанию" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Мои лучшие друзья" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Мой супер вкусный секретный рецепт" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Список дел" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Супер секрет, о котором никому нельзя рассказывать" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Список покупок" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Что у меня на душе" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Мой любимый фанфик" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Мои любимые динозавры" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Мой гениальный план" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Что меня сегодня порадовало" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Привет, мир!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Новый стикер" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Спрятанные пиратские сокровища" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Чтобы никогда не забывать" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Дорогой дневник," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Хорошего дня! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Расписание приёма лекарств" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Домашние обязанности" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ода моему коту" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Любимые игрушки моей собаки" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Какие классные у меня птички" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Кто взял последнюю печеньку" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Слова, которые знают мои попугаи" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Список комплиментов" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Слушай сюда," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Моя команда Покемонов" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Моя маленькая заметка" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Список подарков" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Заметки для мозгового штурма" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Что я надену" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Мой микстейп" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Каракули на салфетках" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Мои любимые песни" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Когда поливать какое растение" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Топ-10 предательств в аниме" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Потрясающая графика в формате ascii!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Для барбекю" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Любимые игрушки моей собаки" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Лучшие ингредиенты для салата" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Книги для чтения" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Места для посещения" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Хобби, которые нужно попробовать" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Кто бы выиграл у Гоку" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Посадить в саду" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Питание на этой неделе" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Заказ пиццы для всех" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Сегодняшний уход за собой" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Важные аффирмации для запоминания" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Самые крутые приложения для linux" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Любимые игрушки моей собаки" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Мои самые смешные шутки" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Идеальный завтрак..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥ВАУ, поздравляю!🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -436,6 +416,22 @@ msgstr "" "Хорошего дня!🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Бубльгум" + +#~ msgid "Create a new note" +#~ msgstr "Создайте новую заметку" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Создайте заметку, затем вставьте ее из буфера обмена" + +#~ msgid "Show preferences" +#~ msgstr "Показать предпочтения" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Сброс всех настроек до значений по умолчанию" + #~ msgid "Reset to Default" #~ msgstr "Сброс настроек по умолчанию" diff --git a/po/sk.po b/po/sk.po index 9af54dce..5b340354 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Vložte emotikon" msgid "Preferences for this sticky note" msgstr "Predvoľby pre túto samolepiacu poznámku" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Čučoriedky" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Vápno" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Mäta" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banán" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Jahoda" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Oranžová" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Žuvačka" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Hrozno" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Kakao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Bridlica" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Predvolené písmo" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Kliknutím použijete predvolené písmo textu" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Kliknutím na položku použijete jednoliate písmo" @@ -105,6 +64,44 @@ msgstr "Predvolená úroveň priblíženia" msgid "Zoom in" msgstr "Priblíženie" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Čučoriedky" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Mäta" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Vápno" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banán" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Oranžová" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Jahoda" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Bridlica" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Hrozno" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Kakao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Odoslanie žiadosti do systému" @@ -165,14 +162,14 @@ msgstr "Zatvoriť" msgid "Close preferences" msgstr "Zatvoriť preferencie" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Šortky" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Kliknutím upravíte názov" @@ -188,238 +185,221 @@ msgstr "Predvoľby pre všetky samolepiace poznámky" msgid "Preferences" msgstr "Predvoľby" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Vytvorenie novej poznámky" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Vytvorenie poznámky a jej vloženie zo schránky" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Zobraziť predvoľby" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Obnovenie všetkých predvolených nastavení" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Všetci moji najlepší priatelia" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Môj super dobrý tajný recept" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Môj zoznam úloh" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Super tajomstvo, ktoré nikomu nepoviete" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Môj zoznam potravín" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Náhodné myšlienky zo sprchy" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Moje obľúbené fanfics" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Moje obľúbené dinosaury" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Môj zlý plán" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Čo ma dnes rozosmialo" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Ahoj, svete!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Nové lepidlo, nové ja" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Skrytý pirátsky poklad" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Nezabudnúť, nikdy" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Drahý denník," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Prajem pekný deň! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Môj rozpis liekov" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Domáce práce" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Óda na moju mačku" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Obľúbené hračky mojich psov" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Aké sú moje vtáky cool" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Podozriví v kauze Last Cookie" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Slová, ktoré moje papagáje poznajú" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Chladné a vtipné komplimenty na rozdávanie" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Dobre, počúvajte," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Môj vysnívaný tím Pokémonov" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Moje malé poznámky" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Zoznam darčekov s prekvapením" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Poznámky k brainstormingu" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Prinesenie na večierok" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Môj úžasný mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Uteráčik scribblys" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Moje obľúbené piesne na spievanie" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Kedy zalievať ktorú rastlinu" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "10 najlepších zrád v anime" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Úžasné ascii umenie!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Na grilovanie" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Obľúbené hračky mojich psov" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Najlepšie prísady do šalátu" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Knihy na čítanie" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Miesta, ktoré môžete navštíviť" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Záľuby, ktoré si môžete vyskúšať" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Kto by vyhral proti Goku" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Na výsadbu v záhrade" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Jedlá tento týždeň" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Objednávka pizze pre každého" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Dnes starostlivosť o seba" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Dôležité afirmácie, ktoré si treba zapamätať" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Najzaujímavejšie aplikácie pre Linux" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Obľúbené hračky mojich psov" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Moje najvtipnejšie vtipy" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Dokonalé raňajky majú..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Gratulujeme!🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -439,6 +419,22 @@ msgstr "" "Prajem vám krásny deň!🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Žuvačka" + +#~ msgid "Create a new note" +#~ msgstr "Vytvorenie novej poznámky" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Vytvorenie poznámky a jej vloženie zo schránky" + +#~ msgid "Show preferences" +#~ msgstr "Zobraziť predvoľby" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Obnovenie všetkých predvolených nastavení" + #~ msgid "Reset to Default" #~ msgstr "Obnovenie predvoleného nastavenia" diff --git a/po/sv.po b/po/sv.po index 58a5917a..c1da7956 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Infoga emoji" msgid "Preferences for this sticky note" msgstr "Inställningar för denna anteckning" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Blåbär" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Lime" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Mint" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Banan" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Jordgubbar" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Orange" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Bubblegum" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Druva" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Kakao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Skiffer" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Standardteckensnitt" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Klicka för att använda standardteckensnitt för text" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Klicka för att använda monospaced font" @@ -105,6 +64,44 @@ msgstr "Standard zoomnivå" msgid "Zoom in" msgstr "Zooma in" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Blåbär" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Mint" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Lime" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Banan" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Orange" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Jordgubbar" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Skiffer" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Druva" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Kakao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Begäran till systemet skickad" @@ -165,14 +162,14 @@ msgstr "Nära" msgid "Close preferences" msgstr "Stäng inställningar" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Jorts" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Klicka för att redigera titeln" @@ -188,238 +185,221 @@ msgstr "Inställningar för alla klisterlappar" msgid "Preferences" msgstr "Inställningar" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Skapa en ny anteckning" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Skapa en anteckning och klistra sedan in från urklipp" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Visa preferenser" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Återställ alla inställningar till standardvärdena" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Alla mina allra bästa vänner" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Mitt superbra hemliga recept" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Min att göra-lista" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Superhemlighet att inte berätta för någon" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Min inköpslista" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Slumpmässiga tankar om duschen" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Mina favorit fanfics" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Mina favoritdinosaurier" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Min ondskefulla plan" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Det som fick mig att le idag" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Hej, världen!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Ny klistrig, ny mig" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Dold piratskatt" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Att aldrig glömma, aldrig" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Kära dagbok," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Ha en trevlig dag! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Mitt medicinschema" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Hushållssysslor" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ode till min katt" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Mina hundars favoritleksaker" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Så coola mina fåglar är" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Misstänkta i Last Cookie-härvan" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Ord som mina papegojor kan" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Coola och roliga komplimanger att ge ut" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Okej, lyssna här," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Mitt drömteam för Pokemon" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Mina små anteckningar" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Lista med överraskningsgåvor" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Anteckningar från brainstorming" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Att ta med till festen" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Min fantastiska mixtape" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Servett scribblys" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Mina favoritlåtar att sjunga med i" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "När ska du vattna vilken växt" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Topp 10 förräderier i anime" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Fantastisk ascii-konst!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "För grillning" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Mina hundars favoritleksaker" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Bästa ingredienserna till sallad" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Böcker att läsa" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Platser att besöka" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Hobbyer att prova på" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Vem skulle vinna mot Goku" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Att plantera i trädgården" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Måltider denna vecka" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Allas pizzabeställning" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Idag självvård att göra" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Viktiga affirmationer att komma ihåg" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "De coolaste linux-apparna" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Mina hundars favoritleksaker" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Mina roligaste skämt" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Den perfekta frukosten har..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Grattis!🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -439,6 +419,22 @@ msgstr "" "Ha en fantastisk dag!🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Bubblegum" + +#~ msgid "Create a new note" +#~ msgstr "Skapa en ny anteckning" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Skapa en anteckning och klistra sedan in från urklipp" + +#~ msgid "Show preferences" +#~ msgstr "Visa preferenser" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Återställ alla inställningar till standardvärdena" + #~ msgid "Reset to Default" #~ msgstr "Återställ till standard" diff --git a/po/tr.po b/po/tr.po index a068c773..46162541 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Emoji ekle" msgid "Preferences for this sticky note" msgstr "Bu yapışkan not için tercihler" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Yaban Mersini" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Kireç" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "Nane" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Muz" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Çilekli" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Turuncu" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Balonlu Sakız" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Üzüm" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Kakao" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Kayrak" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Varsayılana Sıfırla" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Varsayılan metin yazı tipini kullanmak için tıklayın" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Tek aralıklı yazı tipi kullanmak için tıklayın" @@ -105,6 +64,44 @@ msgstr "Varsayılan yakınlaştırma düzeyi" msgid "Zoom in" msgstr "Yakınlaştır" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Yaban Mersini" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "Nane" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Kireç" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Muz" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Turuncu" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Çilekli" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Kayrak" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Üzüm" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Kakao" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Sisteme talep gönderildi" @@ -165,14 +162,14 @@ msgstr "Kapat" msgid "Close preferences" msgstr "Tercihleri kapat" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Şort" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Başlığı düzenlemek için tıklayın" @@ -187,238 +184,221 @@ msgstr "Şortunuz için tercihleriniz" msgid "Preferences" msgstr "Tercihler" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Yeni bir not oluşturun" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Bir not oluşturun ve panodan yapıştırın" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Tercihleri göster" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Tüm ayarları varsayılanlara sıfırla" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "En iyi arkadaşlarımın hepsi" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Benim süper iyi gizli tarifim" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Yapılacaklar listem" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Kimseye söylememeniz gereken süper sır" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Alışveriş listem" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Rastgele duş düşünceleri" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "En sevdiğim fanfikler" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "En sevdiğim dinozorlar" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Benim şeytani planım" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Bugün beni gülümseten şey" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Merhaba dünya!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Yeni yapışkan, yeni ben" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Gizli korsan hazinesi" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Unutmamak için, asla" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Sevgili günlük," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "İyi günler dilerim! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "İlaç programım" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Ev işleri" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Kedime Övgü" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Köpeklerimin en sevdiği oyuncaklar" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Kuşlarım ne kadar havalı" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Son Kurabiye olayının şüphelileri" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Papağanlarımın bildiği kelimeler" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Verilecek havalı ve komik iltifatlar" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Tamam, dinle," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Hayalimdeki Pokemon takımı" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Benim küçük notlarım" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Sürpriz hediye listesi" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Beyin fırtınası notları" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Partiye getirmek için" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Muhteşem mixtape'im" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Peçete karalamaları" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Birlikte söylemek için en sevdiğim şarkılar" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Hangi bitki ne zaman sulanmalı" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "En iyi 10 anime ihaneti" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Muhteşem ascii sanatı!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Barbekü için" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Köpeklerimin en sevdiği oyuncaklar" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Salata için en iyi malzemeler" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Okunacak kitaplar" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Ziyaret edilecek yerler" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Denenecek hobiler" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Goku'ya karşı kim kazanırdı?" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Bahçeye dikmek için" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Bu haftanın yemekleri" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Herkesin pizza siparişi" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Bugün yapılacak kişisel bakım" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Hatırlanması gereken önemli ifadeler" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "En havalı linux uygulamaları" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Köpeklerimin en sevdiği oyuncaklar" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "En komik şakalarım" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Mükemmel bir kahvaltı..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "Tebrikler!" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -438,6 +418,22 @@ msgstr "" "İyi günler!🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Balonlu Sakız" + +#~ msgid "Create a new note" +#~ msgstr "Yeni bir not oluşturun" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Bir not oluşturun ve panodan yapıştırın" + +#~ msgid "Show preferences" +#~ msgstr "Tercihleri göster" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Tüm ayarları varsayılanlara sıfırla" + #~ msgid "Permissions" #~ msgstr "İzinler" diff --git a/po/uk.po b/po/uk.po index ab215949..cdd73d2a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "Вставте емодзі" msgid "Preferences for this sticky note" msgstr "Уподобання для цієї наліпки" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "Чорниця." - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "Вапно." - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "М'ята" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "Банан." - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "Полуничка." - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "Помаранчевий" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "Жуйка" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "Виноград." - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "Какао" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "Сланці" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "Скидання до налаштувань за замовчуванням" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "Натисніть, щоб використовувати шрифт за замовчуванням" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Монопростір" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "Натисніть, щоб використовувати моноширинний шрифт" @@ -105,6 +64,44 @@ msgstr "Рівень масштабування за замовчуванням" msgid "Zoom in" msgstr "Збільшити" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "Чорниця." + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "М'ята" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "Вапно." + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "Банан." + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "Помаранчевий" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "Полуничка." + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "Сланці" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "Виноград." + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "Какао" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "Запит до системи відправлено" @@ -165,14 +162,14 @@ msgstr "Закрити" msgid "Close preferences" msgstr "Близькі уподобання" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr " - Джинси" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "Натисніть, щоб змінити назву" @@ -188,238 +185,221 @@ msgstr "Налаштування для всіх стікерів" msgid "Preferences" msgstr "Уподобання" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "Створіть нову нотатку" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "Створіть нотатку та вставте з буфера обміну" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "Показати налаштування" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "Скидання всіх налаштувань до значень за замовчуванням" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "Всі мої найкращі друзі" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "Мій супер смачний секретний рецепт" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "Мій список справ" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "Суперсекрет, який нікому не можна розголошувати" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "Мій список продуктів" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "Випадкові думки в душі" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "Мої улюблені фанфіки" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "Мої улюблені динозаври" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "Мій злий план" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "Що змусило мене посміхнутися сьогодні" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "Привіт, світе!" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "Новий липкий, новий я" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "Захований піратський скарб" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "Щоб ніколи не забути" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "Дорогий щоденнику," -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "Гарного вам дня! :)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "Мій графік прийому ліків" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "Домашні справи" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "Ода моєму коту" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "Улюблені іграшки моїх собак" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "Які круті мої пташки" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "Підозрювані у справі \"Останнього печива" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "Слова, які знають мої папуги" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "Прикольні та смішні компліменти для роздачі" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "Гаразд, слухай сюди," -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "Команда покемонів моєї мрії" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "Мої маленькі нотатки." -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "Список подарунків-сюрпризів" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "Нотатки для мозкового штурму" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "Принести на вечірку" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "Мій дивовижний мікстейп" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "Каракулі на серветках" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "Мої улюблені пісні для підспівування" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "Коли поливати яку рослину" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "Топ-10 аніме-зрад" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "Дивовижне мистецтво сходження!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "Для барбекю" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "Улюблені іграшки моїх собак" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "Найкращі інгредієнти для салату" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "Книги для читання" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "Місця, які варто відвідати" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "Захоплення, які варто спробувати" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "Хто переможе Гоку" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "Для посадки в саду" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "Харчування на цьому тижні" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "Замовлення піци для всіх" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "Сьогодні догляд за собою" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "Важливі афірмації, які варто запам'ятати" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "Найкрутіші програми для linux" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "Улюблені іграшки моїх собак" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "Мої найсмішніші жарти" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "Ідеальний сніданок має..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "Ого, вітаю!" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -439,6 +419,22 @@ msgstr "" "Гарного дня! 🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "Жуйка" + +#~ msgid "Create a new note" +#~ msgstr "Створіть нову нотатку" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "Створіть нотатку та вставте з буфера обміну" + +#~ msgid "Show preferences" +#~ msgstr "Показати налаштування" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "Скидання всіх налаштувань до значень за замовчуванням" + #~ msgid "Permissions" #~ msgstr "Дозволи" diff --git a/po/zh.po b/po/zh.po index f8902944..9deca2f1 100644 --- a/po/zh.po +++ b/po/zh.po @@ -8,7 +8,7 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-08 23:37+0200\n" +"POT-Creation-Date: 2025-09-21 19:20+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" @@ -28,61 +28,20 @@ msgstr "插入表情符号" msgid "Preferences for this sticky note" msgstr "该便笺的首选项" -#. TRANSLATORS: Shown as a tooltip when people hover a color theme -#: src/Widgets/ColorBox.vala:38 -msgid "Blueberry" -msgstr "蓝莓" - -#: src/Widgets/ColorBox.vala:39 -msgid "Lime" -msgstr "石灰" - -#: src/Widgets/ColorBox.vala:40 -msgid "Mint" -msgstr "薄荷糖" - -#: src/Widgets/ColorBox.vala:41 -msgid "Banana" -msgstr "香蕉" - -#: src/Widgets/ColorBox.vala:42 -msgid "Strawberry" -msgstr "草莓" - -#: src/Widgets/ColorBox.vala:43 -msgid "Orange" -msgstr "橙色" - -#: src/Widgets/ColorBox.vala:44 -msgid "Bubblegum" -msgstr "泡泡糖" - -#: src/Widgets/ColorBox.vala:45 -msgid "Grape" -msgstr "葡萄" - -#: src/Widgets/ColorBox.vala:46 -msgid "Cocoa" -msgstr "可可" - -#: src/Widgets/ColorBox.vala:47 -msgid "Slate" -msgstr "石板" - -#: src/Widgets/MonospaceBox.vala:27 +#: src/Widgets/MonospaceBox.vala:31 #, fuzzy msgid "Default" msgstr "重置为默认值" -#: src/Widgets/MonospaceBox.vala:28 +#: src/Widgets/MonospaceBox.vala:32 msgid "Click to use default text font" msgstr "点击使用默认文本字体" -#: src/Widgets/MonospaceBox.vala:33 +#: src/Widgets/MonospaceBox.vala:37 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:34 +#: src/Widgets/MonospaceBox.vala:38 msgid "Click to use monospaced font" msgstr "点击使用单倍行距字体" @@ -105,6 +64,44 @@ msgstr "默认缩放级别" msgid "Zoom in" msgstr "放大" +#: src/Objects/Themes.vala:58 +#: src/Objects/Themes.vala:68 +msgid "Blueberry" +msgstr "蓝莓" + +#: src/Objects/Themes.vala:59 +msgid "Mint" +msgstr "薄荷糖" + +#: src/Objects/Themes.vala:60 +msgid "Lime" +msgstr "石灰" + +#: src/Objects/Themes.vala:61 +msgid "Banana" +msgstr "香蕉" + +#: src/Objects/Themes.vala:62 +msgid "Orange" +msgstr "橙色" + +#: src/Objects/Themes.vala:63 +msgid "Strawberry" +msgstr "草莓" + +#: src/Objects/Themes.vala:64 +#: src/Objects/Themes.vala:67 +msgid "Slate" +msgstr "石板" + +#: src/Objects/Themes.vala:65 +msgid "Grape" +msgstr "葡萄" + +#: src/Objects/Themes.vala:66 +msgid "Cocoa" +msgstr "可可" + #: src/Views/PreferencesView.vala:25 msgid "Request to system sent" msgstr "向系统发送请求" @@ -165,14 +162,14 @@ msgstr "关闭" msgid "Close preferences" msgstr "关闭首选项" -#: src/Windows/StickyNoteWindow.vala:92 -#: src/Windows/StickyNoteWindow.vala:137 -#: src/Windows/StickyNoteWindow.vala:200 +#: src/Windows/StickyNoteWindow.vala:97 +#: src/Windows/StickyNoteWindow.vala:212 +#: src/Windows/StickyNoteWindow.vala:287 #: src/Windows/PreferenceWindow.vala:52 msgid " - Jorts" msgstr "- 短裤" -#: src/Windows/StickyNoteWindow.vala:112 +#: src/Windows/StickyNoteWindow.vala:117 msgid "Click to edit the title" msgstr "点击编辑标题" @@ -188,238 +185,221 @@ msgstr "所有便笺的首选项" msgid "Preferences" msgstr "首选项" -#: src/Application.vala:174 -msgid "Create a new note" -msgstr "创建新备注" - -#: src/Application.vala:175 -msgid "Create a note then paste from clipboard" -msgstr "创建备注,然后从剪贴板粘贴" - -#: src/Application.vala:176 -msgid "Show preferences" -msgstr "显示首选项" - -#: src/Application.vala:177 -#, fuzzy -msgid "Reset all settings" -msgstr "将所有设置重置为默认值" - -#: src/Services/Utils.vala:88 +#: src/Services/Utils.vala:90 msgid "All my very best friends" msgstr "我所有最好的朋友" -#: src/Services/Utils.vala:89 +#: src/Services/Utils.vala:91 msgid "My super good secret recipe" msgstr "我的超级美味秘方" -#: src/Services/Utils.vala:90 +#: src/Services/Utils.vala:92 msgid "My todo list" msgstr "我的待办事项清单" -#: src/Services/Utils.vala:91 +#: src/Services/Utils.vala:93 msgid "Super secret to not tell anyone" msgstr "不告诉任何人的超级秘密" -#: src/Services/Utils.vala:92 +#: src/Services/Utils.vala:94 msgid "My grocery list" msgstr "我的杂货清单" -#: src/Services/Utils.vala:93 +#: src/Services/Utils.vala:95 msgid "Random shower thoughts" msgstr "淋浴时的随想" -#: src/Services/Utils.vala:94 +#: src/Services/Utils.vala:96 msgid "My fav fanfics" msgstr "我最喜欢的同人小说" -#: src/Services/Utils.vala:95 +#: src/Services/Utils.vala:97 msgid "My fav dinosaurs" msgstr "我最喜欢的恐龙" -#: src/Services/Utils.vala:96 +#: src/Services/Utils.vala:98 msgid "My evil mastermind plan" msgstr "我的邪恶主谋计划" -#: src/Services/Utils.vala:97 +#: src/Services/Utils.vala:99 msgid "What made me smile today" msgstr "今天让我微笑的事情" -#: src/Services/Utils.vala:98 +#: src/Services/Utils.vala:100 msgid "Hello world!" msgstr "世界你好" -#: src/Services/Utils.vala:99 +#: src/Services/Utils.vala:101 msgid "New sticky, new me" msgstr "新的粘性,新的我" -#: src/Services/Utils.vala:100 +#: src/Services/Utils.vala:102 msgid "Hidden pirate treasure" msgstr "隐藏的海盗宝藏" -#: src/Services/Utils.vala:101 +#: src/Services/Utils.vala:103 msgid "To not forget, ever" msgstr "永远不要忘记" -#: src/Services/Utils.vala:102 +#: src/Services/Utils.vala:104 msgid "Dear Diary," msgstr "亲爱的日记" -#: src/Services/Utils.vala:103 +#: src/Services/Utils.vala:105 msgid "Have a nice day! :)" msgstr "祝您愉快:)" -#: src/Services/Utils.vala:104 +#: src/Services/Utils.vala:106 msgid "My meds schedule" msgstr "我的服药时间表" -#: src/Services/Utils.vala:105 +#: src/Services/Utils.vala:107 msgid "Household chores" msgstr "家务劳动" -#: src/Services/Utils.vala:106 +#: src/Services/Utils.vala:108 msgid "Ode to my cat" msgstr "我的猫颂" -#: src/Services/Utils.vala:107 +#: src/Services/Utils.vala:109 msgid "My dogs favourite toys" msgstr "我的狗狗最喜欢的玩具" -#: src/Services/Utils.vala:108 +#: src/Services/Utils.vala:110 msgid "How cool my birds are" msgstr "我的小鸟多酷啊" -#: src/Services/Utils.vala:109 +#: src/Services/Utils.vala:111 msgid "Suspects in the Last Cookie affair" msgstr "最后一块饼干事件的嫌疑人" -#: src/Services/Utils.vala:110 +#: src/Services/Utils.vala:112 msgid "Words my parrots know" msgstr "我的鹦鹉会说的话" -#: src/Services/Utils.vala:111 +#: src/Services/Utils.vala:113 msgid "Cool and funny compliments to give out" msgstr "酷炫有趣的赞美词" -#: src/Services/Utils.vala:112 +#: src/Services/Utils.vala:114 msgid "Ok, listen here," msgstr "好吧,听我说、" -#: src/Services/Utils.vala:113 +#: src/Services/Utils.vala:115 msgid "My dream Pokemon team" msgstr "我梦想中的宠物小精灵团队" -#: src/Services/Utils.vala:114 +#: src/Services/Utils.vala:116 msgid "My little notes" msgstr "我的小纸条" -#: src/Services/Utils.vala:115 +#: src/Services/Utils.vala:117 msgid "Surprise gift list" msgstr "惊喜礼物清单" -#: src/Services/Utils.vala:116 +#: src/Services/Utils.vala:118 msgid "Brainstorming notes" msgstr "集思广益说明" -#: src/Services/Utils.vala:117 +#: src/Services/Utils.vala:119 msgid "To bring to the party" msgstr "带到派对上" -#: src/Services/Utils.vala:118 +#: src/Services/Utils.vala:120 msgid "My amazing mixtape" msgstr "我的神奇混音带" -#: src/Services/Utils.vala:119 +#: src/Services/Utils.vala:121 msgid "Napkin scribblys" msgstr "餐巾纸涂鸦" -#: src/Services/Utils.vala:120 +#: src/Services/Utils.vala:122 msgid "My fav songs to sing along" msgstr "我最喜欢唱的歌" -#: src/Services/Utils.vala:121 +#: src/Services/Utils.vala:123 msgid "When to water which plant" msgstr "何时给哪种植物浇水" -#: src/Services/Utils.vala:122 +#: src/Services/Utils.vala:124 msgid "Top 10 anime betrayals" msgstr "十大动漫背叛事件" -#: src/Services/Utils.vala:123 +#: src/Services/Utils.vala:125 msgid "Amazing ascii art!" msgstr "令人惊叹的 ascii 艺术!" -#: src/Services/Utils.vala:124 +#: src/Services/Utils.vala:126 msgid "For the barbecue" msgstr "烧烤" -#: src/Services/Utils.vala:125 +#: src/Services/Utils.vala:127 #, fuzzy msgid "My favourite bands" msgstr "我的狗狗最喜欢的玩具" -#: src/Services/Utils.vala:126 +#: src/Services/Utils.vala:128 msgid "Best ingredients for salad" msgstr "沙拉的最佳配料" -#: src/Services/Utils.vala:127 +#: src/Services/Utils.vala:129 msgid "Books to read" msgstr "阅读书籍" -#: src/Services/Utils.vala:128 +#: src/Services/Utils.vala:130 msgid "Places to visit" msgstr "旅游景点" -#: src/Services/Utils.vala:129 +#: src/Services/Utils.vala:131 msgid "Hobbies to try out" msgstr "可尝试的爱好" -#: src/Services/Utils.vala:130 +#: src/Services/Utils.vala:132 msgid "Who would win against Goku" msgstr "谁能战胜悟空" -#: src/Services/Utils.vala:131 +#: src/Services/Utils.vala:133 msgid "To plant in the garden" msgstr "种植在花园里" -#: src/Services/Utils.vala:132 +#: src/Services/Utils.vala:134 msgid "Meals this week" msgstr "本周膳食" -#: src/Services/Utils.vala:133 +#: src/Services/Utils.vala:135 msgid "Everyone's pizza order" msgstr "每个人的披萨订单" -#: src/Services/Utils.vala:134 +#: src/Services/Utils.vala:136 msgid "Today selfcare to do" msgstr "今天要做的自我保健" -#: src/Services/Utils.vala:135 +#: src/Services/Utils.vala:137 msgid "Important affirmations to remember" msgstr "需要牢记的重要申明" -#: src/Services/Utils.vala:136 +#: src/Services/Utils.vala:138 msgid "The coolest linux apps" msgstr "最酷的 Linux 应用程序" -#: src/Services/Utils.vala:137 +#: src/Services/Utils.vala:139 #, fuzzy msgid "My favourite dishes" msgstr "我的狗狗最喜欢的玩具" -#: src/Services/Utils.vala:138 +#: src/Services/Utils.vala:140 msgid "My funniest jokes" msgstr "我最有趣的笑话" -#: src/Services/Utils.vala:139 +#: src/Services/Utils.vala:141 msgid "The perfect breakfast has..." msgstr "完美的早餐有..." -#: src/Services/Utils.vala:170 +#: src/Services/Utils.vala:176 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW 恭喜! 🔥" -#: src/Services/Utils.vala:172 +#: src/Services/Utils.vala:178 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -439,6 +419,22 @@ msgstr "" "祝您愉快! 🎇\n" "" +#~ msgid "Bubblegum" +#~ msgstr "泡泡糖" + +#~ msgid "Create a new note" +#~ msgstr "创建新备注" + +#~ msgid "Create a note then paste from clipboard" +#~ msgstr "创建备注,然后从剪贴板粘贴" + +#~ msgid "Show preferences" +#~ msgstr "显示首选项" + +#, fuzzy +#~ msgid "Reset all settings" +#~ msgstr "将所有设置重置为默认值" + #~ msgid "Permissions" #~ msgstr "权限" From 02f311267b2ba1db4258c851510802a961a2c205 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 21 Sep 2025 19:34:26 +0200 Subject: [PATCH 10/38] Comment, remove unused, introduce more modular utils --- src/Objects/Themes.vala | 1 + src/Services/Constants.vala | 34 ++---- src/Utils/Libportal.vala | 191 ++++++++++++++++++++++++++++++++++ src/Utils/Random.vala | 191 ++++++++++++++++++++++++++++++++++ src/Widgets/MonospaceBox.vala | 2 + src/Widgets/ZoomBox.vala | 6 +- 6 files changed, 396 insertions(+), 29 deletions(-) create mode 100644 src/Utils/Libportal.vala create mode 100644 src/Utils/Random.vala diff --git a/src/Objects/Themes.vala b/src/Objects/Themes.vala index bc8aaa9b..6ff16f02 100644 --- a/src/Objects/Themes.vala +++ b/src/Objects/Themes.vala @@ -55,6 +55,7 @@ public enum Jorts.Themes { */ public string to_nicename () { switch (this) { + ///TRANSLATORS: These are the names of the elementary OS colours case BLUEBERRY: return _("Blueberry"); case MINT: return _("Mint"); case LIME: return _("Lime"); diff --git a/src/Services/Constants.vala b/src/Services/Constants.vala index 01d5059b..f178a779 100644 --- a/src/Services/Constants.vala +++ b/src/Services/Constants.vala @@ -5,23 +5,17 @@ * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) */ -/* CONTENT -Just Dump constants here +/** +* I just dump all my constants here */ - namespace Jorts.Constants { - - /*************************************************/ const string RDNN = "io.github.ellie_commons.jorts"; const string DONATE_LINK = "https://ko-fi.com/teamcons"; // signature theme - const Jorts.Themes DEFAULT_THEME = Jorts.Themes.BLUEBERRY; - const int DAYS_BETWEEN_BACKUPS = 30; - - + const Jorts.Themes DEFAULT_THEME = Jorts.Themes.BLUEBERRY; // in ms const int DEBOUNCE = 1000; @@ -49,7 +43,7 @@ namespace Jorts.Constants { const string ACTION_PREFIX = "app."; const string ACTION_NEW = "action_new"; const string ACTION_DELETE = "action_delete"; - const string ACTION_SAVE = "action_delete"; + const string ACTION_SAVE = "action_delete"; const string ACTION_QUIT = "action_quit"; const string ACTION_ZOOM_OUT = "zoom_out"; @@ -64,23 +58,7 @@ namespace Jorts.Constants { const string[] ACCELS_SCRIBBLY = {"h"}; const string[] ACCELS_EMOTE = {"period"}; - - /*************************************************/ - // As seen on TV! - // Later adds: LATTE, BLACK, SILVER, AUTO - const string[] THEMES = { - "BLUEBERRY", - "MINT", - "LIME", - "BANANA", - "ORANGE", - "STRAWBERRY", - "BUBBLEGUM", - "GRAPE", - "COCOA", - "SLATE" - }; - + // Used by random_emote () for the emote selection menu const string[] EMOTES = { "face-angel-symbolic", "face-angry-symbolic", @@ -94,7 +72,7 @@ namespace Jorts.Constants { "face-plain-symbolic", "face-raspberry-symbolic", "face-sad-symbolic", - "face-sick-symbolic", + "face-sick-symbolic", "face-smile-symbolic", "face-smile-big-symbolic", "face-smirk-symbolic", diff --git a/src/Utils/Libportal.vala b/src/Utils/Libportal.vala new file mode 100644 index 00000000..b36c0850 --- /dev/null +++ b/src/Utils/Libportal.vala @@ -0,0 +1,191 @@ +/* + * SPDX-License-Identifier: GPL-3.0-or-later + * SPDX-FileCopyrightText: 2017-2024 Lains + * 2025 Stella & Charlie (teamcons.carrd.co) + * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) + */ + +/* CONTENT +randrange does not include upper bound. + +random_theme(skip_theme) +random_title() +random_emote(skip_emote) +random_note(skip_theme) + +*/ + +namespace Jorts.Utils { + + /*************************************************/ + // We cannot use numbers in CSS, so we have to translate a number into a string + public string zoom_to_class (int zoom) { + switch (zoom) { + case 20: return "antsized"; + case 40: return "muchsmaller"; + case 60: return "smaller"; + case 80: return "small"; + case 100: return "normal_zoom"; + case 120: return "big"; + case 140: return "bigger"; + case 160: return "muchbigger"; + case 180: return "muchmuchbigger"; + case 200: return "huge"; + case 220: return "superhuge"; + case 240: return "megahuge"; + case 260: return "ultrahuge"; + case 280: return "massive"; + case 300: return "urmom"; + default: return "normal_zoom"; + } + } + + /*************************************************/ + // We cannot use numbers in CSS, so we have to translate a number into a string + public int zoom_to_UIsize (int zoom) { + switch (zoom) { + case 20: return 24; + case 40: return 26; + case 60: return 28; + case 80: return 30; + case 100: return 32; + case 120: return 34; + case 140: return 38; + case 160: return 40; + case 180: return 44; + case 200: return 48; + case 220: return 52; + case 240: return 54; + case 260: return 56; + case 280: return 60; + case 300: return 64; + default: return 32; + } + } + + /*************************************************/ + /** + * Used for new notes without data. Optionally allows to skip one + * This avoids generating notes "randomly" with the same themes, which would be boring + */ + public Jorts.Themes random_theme (Jorts.Themes? skip_theme = null) { + Gee.ArrayList themes = new Gee.ArrayList (); + themes.add_all_array (Jorts.Themes.all ()); + + if (skip_theme != null) { + themes.remove(skip_theme); + } + + var random_in_range = Random.int_range (0, themes.size); + return themes[random_in_range]; + } + + /*************************************************/ + /** + * Placeholders for titles + */ + ///TRANSLATORS: It does not need to match source 1:1 - avoid anything that could be rude or cold sounding + public string random_title () { + string[] alltitles = { + _("All my very best friends"), + _("My super good secret recipe"), + _("My todo list"), + _("Super secret to not tell anyone"), + _("My grocery list"), + _("Random shower thoughts"), + _("My fav fanfics"), + _("My fav dinosaurs"), + _("My evil mastermind plan"), + _("What made me smile today"), + _("Hello world!"), + _("New sticky, new me"), + _("Hidden pirate treasure"), + _("To not forget, ever"), + _("Dear Diary,"), + _("Have a nice day! :)"), + _("My meds schedule"), + _("Household chores"), + _("Ode to my cat"), + _("My dogs favourite toys"), + _("How cool my birds are"), + _("Suspects in the Last Cookie affair"), + _("Words my parrots know"), + _("Cool and funny compliments to give out"), + _("Ok, listen here,"), + _("My dream Pokemon team"), + _("My little notes"), + _("Surprise gift list"), + _("Brainstorming notes"), + _("To bring to the party"), + _("My amazing mixtape"), + _("Napkin scribblys"), + _("My fav songs to sing along"), + _("When to water which plant"), + _("Top 10 anime betrayals"), + _("Amazing ascii art!"), + _("For the barbecue"), + _("My favourite bands"), + _("Best ingredients for salad"), + _("Books to read"), + _("Places to visit"), + _("Hobbies to try out"), + _("Who would win against Goku"), + _("To plant in the garden"), + _("Meals this week"), + _("Everyone's pizza order"), + _("Today selfcare to do"), + _("Important affirmations to remember"), + _("The coolest linux apps"), + _("My favourite dishes"), + _("My funniest jokes"), + _("The perfect breakfast has...") + }; + return alltitles[Random.int_range (0, alltitles.length)]; + } + + /*************************************************/ + /** + * Generates emotes for the emote menu button + * Optionally, skips one (typically the one to change from) + */ + public string random_emote (string? skip_emote = null) { + Gee.ArrayList allemotes = new Gee.ArrayList (); + allemotes.add_all_array (Jorts.Constants.EMOTES); + + if (skip_emote != null) { + allemotes.remove (skip_emote); + } + + var random_in_range = Random.int_range (0, allemotes.size); + return allemotes[random_in_range]; + } + + /*************************************************/ + /** + * Hey! Looking in the source code is cheating! + * Only for new notes which are not the first one + */ + public NoteData golden_sticky (NoteData blank_slate) { + + var random_in_range = Random.int_range (0, 1000); + + // ONE IN THOUSAND + if (random_in_range == 1) { + + print ("GOLDEN STICKY"); + blank_slate.title = _("🔥WOW Congratulations!🔥"); + blank_slate.content = _( +"""You have found the Golden Sticky Note! + +CRAZY BUT TRU: This message appears once in a thousand times! +Nobody will believe you hehehe ;) + +I hope my little app brings you a lot of joy +Have a great day!🎇 +"""); + blank_slate.theme = Jorts.Themes.BANANA; + } + + return blank_slate; + } +} diff --git a/src/Utils/Random.vala b/src/Utils/Random.vala new file mode 100644 index 00000000..b36c0850 --- /dev/null +++ b/src/Utils/Random.vala @@ -0,0 +1,191 @@ +/* + * SPDX-License-Identifier: GPL-3.0-or-later + * SPDX-FileCopyrightText: 2017-2024 Lains + * 2025 Stella & Charlie (teamcons.carrd.co) + * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) + */ + +/* CONTENT +randrange does not include upper bound. + +random_theme(skip_theme) +random_title() +random_emote(skip_emote) +random_note(skip_theme) + +*/ + +namespace Jorts.Utils { + + /*************************************************/ + // We cannot use numbers in CSS, so we have to translate a number into a string + public string zoom_to_class (int zoom) { + switch (zoom) { + case 20: return "antsized"; + case 40: return "muchsmaller"; + case 60: return "smaller"; + case 80: return "small"; + case 100: return "normal_zoom"; + case 120: return "big"; + case 140: return "bigger"; + case 160: return "muchbigger"; + case 180: return "muchmuchbigger"; + case 200: return "huge"; + case 220: return "superhuge"; + case 240: return "megahuge"; + case 260: return "ultrahuge"; + case 280: return "massive"; + case 300: return "urmom"; + default: return "normal_zoom"; + } + } + + /*************************************************/ + // We cannot use numbers in CSS, so we have to translate a number into a string + public int zoom_to_UIsize (int zoom) { + switch (zoom) { + case 20: return 24; + case 40: return 26; + case 60: return 28; + case 80: return 30; + case 100: return 32; + case 120: return 34; + case 140: return 38; + case 160: return 40; + case 180: return 44; + case 200: return 48; + case 220: return 52; + case 240: return 54; + case 260: return 56; + case 280: return 60; + case 300: return 64; + default: return 32; + } + } + + /*************************************************/ + /** + * Used for new notes without data. Optionally allows to skip one + * This avoids generating notes "randomly" with the same themes, which would be boring + */ + public Jorts.Themes random_theme (Jorts.Themes? skip_theme = null) { + Gee.ArrayList themes = new Gee.ArrayList (); + themes.add_all_array (Jorts.Themes.all ()); + + if (skip_theme != null) { + themes.remove(skip_theme); + } + + var random_in_range = Random.int_range (0, themes.size); + return themes[random_in_range]; + } + + /*************************************************/ + /** + * Placeholders for titles + */ + ///TRANSLATORS: It does not need to match source 1:1 - avoid anything that could be rude or cold sounding + public string random_title () { + string[] alltitles = { + _("All my very best friends"), + _("My super good secret recipe"), + _("My todo list"), + _("Super secret to not tell anyone"), + _("My grocery list"), + _("Random shower thoughts"), + _("My fav fanfics"), + _("My fav dinosaurs"), + _("My evil mastermind plan"), + _("What made me smile today"), + _("Hello world!"), + _("New sticky, new me"), + _("Hidden pirate treasure"), + _("To not forget, ever"), + _("Dear Diary,"), + _("Have a nice day! :)"), + _("My meds schedule"), + _("Household chores"), + _("Ode to my cat"), + _("My dogs favourite toys"), + _("How cool my birds are"), + _("Suspects in the Last Cookie affair"), + _("Words my parrots know"), + _("Cool and funny compliments to give out"), + _("Ok, listen here,"), + _("My dream Pokemon team"), + _("My little notes"), + _("Surprise gift list"), + _("Brainstorming notes"), + _("To bring to the party"), + _("My amazing mixtape"), + _("Napkin scribblys"), + _("My fav songs to sing along"), + _("When to water which plant"), + _("Top 10 anime betrayals"), + _("Amazing ascii art!"), + _("For the barbecue"), + _("My favourite bands"), + _("Best ingredients for salad"), + _("Books to read"), + _("Places to visit"), + _("Hobbies to try out"), + _("Who would win against Goku"), + _("To plant in the garden"), + _("Meals this week"), + _("Everyone's pizza order"), + _("Today selfcare to do"), + _("Important affirmations to remember"), + _("The coolest linux apps"), + _("My favourite dishes"), + _("My funniest jokes"), + _("The perfect breakfast has...") + }; + return alltitles[Random.int_range (0, alltitles.length)]; + } + + /*************************************************/ + /** + * Generates emotes for the emote menu button + * Optionally, skips one (typically the one to change from) + */ + public string random_emote (string? skip_emote = null) { + Gee.ArrayList allemotes = new Gee.ArrayList (); + allemotes.add_all_array (Jorts.Constants.EMOTES); + + if (skip_emote != null) { + allemotes.remove (skip_emote); + } + + var random_in_range = Random.int_range (0, allemotes.size); + return allemotes[random_in_range]; + } + + /*************************************************/ + /** + * Hey! Looking in the source code is cheating! + * Only for new notes which are not the first one + */ + public NoteData golden_sticky (NoteData blank_slate) { + + var random_in_range = Random.int_range (0, 1000); + + // ONE IN THOUSAND + if (random_in_range == 1) { + + print ("GOLDEN STICKY"); + blank_slate.title = _("🔥WOW Congratulations!🔥"); + blank_slate.content = _( +"""You have found the Golden Sticky Note! + +CRAZY BUT TRU: This message appears once in a thousand times! +Nobody will believe you hehehe ;) + +I hope my little app brings you a lot of joy +Have a great day!🎇 +"""); + blank_slate.theme = Jorts.Themes.BANANA; + } + + return blank_slate; + } +} diff --git a/src/Widgets/MonospaceBox.vala b/src/Widgets/MonospaceBox.vala index 684772e7..895d4542 100644 --- a/src/Widgets/MonospaceBox.vala +++ b/src/Widgets/MonospaceBox.vala @@ -8,6 +8,7 @@ /** * Small horizontal box with two toggles * Allows user to switch between normal and monospace font +* Exposes bool monospace, also sends it via signal */ public class Jorts.MonospaceBox : Gtk.Box { @@ -27,6 +28,7 @@ public class Jorts.MonospaceBox : Gtk.Box { margin_start = 12; margin_end = 12; + ///TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other var mono_default_toggle = new Gtk.ToggleButton () { child = new Gtk.Label (_("Default")), tooltip_text = _("Click to use default text font"), diff --git a/src/Widgets/ZoomBox.vala b/src/Widgets/ZoomBox.vala index 9d8150ab..e479493b 100644 --- a/src/Widgets/ZoomBox.vala +++ b/src/Widgets/ZoomBox.vala @@ -5,10 +5,14 @@ * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) */ + /** +* Horizontal box with a +, label, and -, representing zoom controls +* Gives off zoom_changed signal to tell the user has clicked one of three +* The signal transmits a Jorts.Zoomkind Enum +*/ public class Jorts.ZoomBox : Gtk.Box { private Gtk.Button zoom_default_button; - private int _zoom = 100; public int zoom { From 8a76f0fec7e11d405181545b4426d452898ab3b1 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 21 Sep 2025 19:56:30 +0200 Subject: [PATCH 11/38] Add in the new utils --- po/POTFILES | 2 + src/Objects/Zoom.vala | 4 +- src/Services/Utils.vala | 126 -------------------------- src/Utils/Libportal.vala | 191 +++++---------------------------------- src/Utils/Random.vala | 49 +--------- src/meson.build | 3 + 6 files changed, 30 insertions(+), 345 deletions(-) diff --git a/po/POTFILES b/po/POTFILES index d8cb6b10..d07f14d4 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -5,6 +5,8 @@ src/Widgets/ColorBox.vala src/Widgets/MonospaceBox.vala src/Widgets/ZoomBox.vala src/Objects/Themes.vala +src/Utils/Random.vala +src/Utils/Libportal.vala src/Views/PreferencesView.vala src/Windows/StickyNoteWindow.vala src/Windows/PreferenceWindow.vala diff --git a/src/Objects/Zoom.vala b/src/Objects/Zoom.vala index de7c661f..f1325c2d 100644 --- a/src/Objects/Zoom.vala +++ b/src/Objects/Zoom.vala @@ -23,7 +23,7 @@ public enum Jorts.Zoom { SUPERHUGE, MEGAHUGE, ULTRAHUGE, - MASSIVE + MASSIVE, URMOM; /*************************************************/ @@ -54,7 +54,7 @@ public enum Jorts.Zoom { /*************************************************/ /** * We cannot save Enums in JSON, so this recovers the enum from stored int - */ + */ public static Zoom from_int (int wtf_is_this) { switch (wtf_is_this) { case 20: return ANTSIZED; diff --git a/src/Services/Utils.vala b/src/Services/Utils.vala index b36c0850..b5793643 100644 --- a/src/Services/Utils.vala +++ b/src/Services/Utils.vala @@ -62,130 +62,4 @@ namespace Jorts.Utils { default: return 32; } } - - /*************************************************/ - /** - * Used for new notes without data. Optionally allows to skip one - * This avoids generating notes "randomly" with the same themes, which would be boring - */ - public Jorts.Themes random_theme (Jorts.Themes? skip_theme = null) { - Gee.ArrayList themes = new Gee.ArrayList (); - themes.add_all_array (Jorts.Themes.all ()); - - if (skip_theme != null) { - themes.remove(skip_theme); - } - - var random_in_range = Random.int_range (0, themes.size); - return themes[random_in_range]; - } - - /*************************************************/ - /** - * Placeholders for titles - */ - ///TRANSLATORS: It does not need to match source 1:1 - avoid anything that could be rude or cold sounding - public string random_title () { - string[] alltitles = { - _("All my very best friends"), - _("My super good secret recipe"), - _("My todo list"), - _("Super secret to not tell anyone"), - _("My grocery list"), - _("Random shower thoughts"), - _("My fav fanfics"), - _("My fav dinosaurs"), - _("My evil mastermind plan"), - _("What made me smile today"), - _("Hello world!"), - _("New sticky, new me"), - _("Hidden pirate treasure"), - _("To not forget, ever"), - _("Dear Diary,"), - _("Have a nice day! :)"), - _("My meds schedule"), - _("Household chores"), - _("Ode to my cat"), - _("My dogs favourite toys"), - _("How cool my birds are"), - _("Suspects in the Last Cookie affair"), - _("Words my parrots know"), - _("Cool and funny compliments to give out"), - _("Ok, listen here,"), - _("My dream Pokemon team"), - _("My little notes"), - _("Surprise gift list"), - _("Brainstorming notes"), - _("To bring to the party"), - _("My amazing mixtape"), - _("Napkin scribblys"), - _("My fav songs to sing along"), - _("When to water which plant"), - _("Top 10 anime betrayals"), - _("Amazing ascii art!"), - _("For the barbecue"), - _("My favourite bands"), - _("Best ingredients for salad"), - _("Books to read"), - _("Places to visit"), - _("Hobbies to try out"), - _("Who would win against Goku"), - _("To plant in the garden"), - _("Meals this week"), - _("Everyone's pizza order"), - _("Today selfcare to do"), - _("Important affirmations to remember"), - _("The coolest linux apps"), - _("My favourite dishes"), - _("My funniest jokes"), - _("The perfect breakfast has...") - }; - return alltitles[Random.int_range (0, alltitles.length)]; - } - - /*************************************************/ - /** - * Generates emotes for the emote menu button - * Optionally, skips one (typically the one to change from) - */ - public string random_emote (string? skip_emote = null) { - Gee.ArrayList allemotes = new Gee.ArrayList (); - allemotes.add_all_array (Jorts.Constants.EMOTES); - - if (skip_emote != null) { - allemotes.remove (skip_emote); - } - - var random_in_range = Random.int_range (0, allemotes.size); - return allemotes[random_in_range]; - } - - /*************************************************/ - /** - * Hey! Looking in the source code is cheating! - * Only for new notes which are not the first one - */ - public NoteData golden_sticky (NoteData blank_slate) { - - var random_in_range = Random.int_range (0, 1000); - - // ONE IN THOUSAND - if (random_in_range == 1) { - - print ("GOLDEN STICKY"); - blank_slate.title = _("🔥WOW Congratulations!🔥"); - blank_slate.content = _( -"""You have found the Golden Sticky Note! - -CRAZY BUT TRU: This message appears once in a thousand times! -Nobody will believe you hehehe ;) - -I hope my little app brings you a lot of joy -Have a great day!🎇 -"""); - blank_slate.theme = Jorts.Themes.BANANA; - } - - return blank_slate; - } } diff --git a/src/Utils/Libportal.vala b/src/Utils/Libportal.vala index b36c0850..6e47f25b 100644 --- a/src/Utils/Libportal.vala +++ b/src/Utils/Libportal.vala @@ -16,176 +16,29 @@ random_note(skip_theme) */ namespace Jorts.Utils { - - /*************************************************/ - // We cannot use numbers in CSS, so we have to translate a number into a string - public string zoom_to_class (int zoom) { - switch (zoom) { - case 20: return "antsized"; - case 40: return "muchsmaller"; - case 60: return "smaller"; - case 80: return "small"; - case 100: return "normal_zoom"; - case 120: return "big"; - case 140: return "bigger"; - case 160: return "muchbigger"; - case 180: return "muchmuchbigger"; - case 200: return "huge"; - case 220: return "superhuge"; - case 240: return "megahuge"; - case 260: return "ultrahuge"; - case 280: return "massive"; - case 300: return "urmom"; - default: return "normal_zoom"; - } - } - - /*************************************************/ - // We cannot use numbers in CSS, so we have to translate a number into a string - public int zoom_to_UIsize (int zoom) { - switch (zoom) { - case 20: return 24; - case 40: return 26; - case 60: return 28; - case 80: return 30; - case 100: return 32; - case 120: return 34; - case 140: return 38; - case 160: return 40; - case 180: return 44; - case 200: return 48; - case 220: return 52; - case 240: return 54; - case 260: return 56; - case 280: return 60; - case 300: return 64; - default: return 32; - } - } - - /*************************************************/ - /** - * Used for new notes without data. Optionally allows to skip one - * This avoids generating notes "randomly" with the same themes, which would be boring - */ - public Jorts.Themes random_theme (Jorts.Themes? skip_theme = null) { - Gee.ArrayList themes = new Gee.ArrayList (); - themes.add_all_array (Jorts.Themes.all ()); - - if (skip_theme != null) { - themes.remove(skip_theme); - } - - var random_in_range = Random.int_range (0, themes.size); - return themes[random_in_range]; + public void autostart_remove () { + Xdp.Portal portal = new Xdp.Portal (); + GenericArray cmd = new GenericArray (); + cmd.add ("io.github.ellie_commons.jorts"); + + portal.request_background.begin ( + null, + _("Remove Jorts from system autostart"), + cmd, + Xdp.BackgroundFlags.NONE, + null); } - /*************************************************/ - /** - * Placeholders for titles - */ - ///TRANSLATORS: It does not need to match source 1:1 - avoid anything that could be rude or cold sounding - public string random_title () { - string[] alltitles = { - _("All my very best friends"), - _("My super good secret recipe"), - _("My todo list"), - _("Super secret to not tell anyone"), - _("My grocery list"), - _("Random shower thoughts"), - _("My fav fanfics"), - _("My fav dinosaurs"), - _("My evil mastermind plan"), - _("What made me smile today"), - _("Hello world!"), - _("New sticky, new me"), - _("Hidden pirate treasure"), - _("To not forget, ever"), - _("Dear Diary,"), - _("Have a nice day! :)"), - _("My meds schedule"), - _("Household chores"), - _("Ode to my cat"), - _("My dogs favourite toys"), - _("How cool my birds are"), - _("Suspects in the Last Cookie affair"), - _("Words my parrots know"), - _("Cool and funny compliments to give out"), - _("Ok, listen here,"), - _("My dream Pokemon team"), - _("My little notes"), - _("Surprise gift list"), - _("Brainstorming notes"), - _("To bring to the party"), - _("My amazing mixtape"), - _("Napkin scribblys"), - _("My fav songs to sing along"), - _("When to water which plant"), - _("Top 10 anime betrayals"), - _("Amazing ascii art!"), - _("For the barbecue"), - _("My favourite bands"), - _("Best ingredients for salad"), - _("Books to read"), - _("Places to visit"), - _("Hobbies to try out"), - _("Who would win against Goku"), - _("To plant in the garden"), - _("Meals this week"), - _("Everyone's pizza order"), - _("Today selfcare to do"), - _("Important affirmations to remember"), - _("The coolest linux apps"), - _("My favourite dishes"), - _("My funniest jokes"), - _("The perfect breakfast has...") - }; - return alltitles[Random.int_range (0, alltitles.length)]; - } - - /*************************************************/ - /** - * Generates emotes for the emote menu button - * Optionally, skips one (typically the one to change from) - */ - public string random_emote (string? skip_emote = null) { - Gee.ArrayList allemotes = new Gee.ArrayList (); - allemotes.add_all_array (Jorts.Constants.EMOTES); - - if (skip_emote != null) { - allemotes.remove (skip_emote); - } - - var random_in_range = Random.int_range (0, allemotes.size); - return allemotes[random_in_range]; - } - - /*************************************************/ - /** - * Hey! Looking in the source code is cheating! - * Only for new notes which are not the first one - */ - public NoteData golden_sticky (NoteData blank_slate) { - - var random_in_range = Random.int_range (0, 1000); - - // ONE IN THOUSAND - if (random_in_range == 1) { - - print ("GOLDEN STICKY"); - blank_slate.title = _("🔥WOW Congratulations!🔥"); - blank_slate.content = _( -"""You have found the Golden Sticky Note! - -CRAZY BUT TRU: This message appears once in a thousand times! -Nobody will believe you hehehe ;) - -I hope my little app brings you a lot of joy -Have a great day!🎇 -"""); - blank_slate.theme = Jorts.Themes.BANANA; - } - - return blank_slate; + public void autostart_set () { + Xdp.Portal portal = new Xdp.Portal (); + GenericArray cmd = new GenericArray (); + cmd.add ("io.github.ellie_commons.jorts"); + + portal.request_background.begin ( + null, + _("Set Jorts to start with the computer"), + cmd, + Xdp.BackgroundFlags.AUTOSTART, + null); } } diff --git a/src/Utils/Random.vala b/src/Utils/Random.vala index b36c0850..679a9e99 100644 --- a/src/Utils/Random.vala +++ b/src/Utils/Random.vala @@ -14,55 +14,8 @@ random_emote(skip_emote) random_note(skip_theme) */ - namespace Jorts.Utils { - /*************************************************/ - // We cannot use numbers in CSS, so we have to translate a number into a string - public string zoom_to_class (int zoom) { - switch (zoom) { - case 20: return "antsized"; - case 40: return "muchsmaller"; - case 60: return "smaller"; - case 80: return "small"; - case 100: return "normal_zoom"; - case 120: return "big"; - case 140: return "bigger"; - case 160: return "muchbigger"; - case 180: return "muchmuchbigger"; - case 200: return "huge"; - case 220: return "superhuge"; - case 240: return "megahuge"; - case 260: return "ultrahuge"; - case 280: return "massive"; - case 300: return "urmom"; - default: return "normal_zoom"; - } - } - - /*************************************************/ - // We cannot use numbers in CSS, so we have to translate a number into a string - public int zoom_to_UIsize (int zoom) { - switch (zoom) { - case 20: return 24; - case 40: return 26; - case 60: return 28; - case 80: return 30; - case 100: return 32; - case 120: return 34; - case 140: return 38; - case 160: return 40; - case 180: return 44; - case 200: return 48; - case 220: return 52; - case 240: return 54; - case 260: return 56; - case 280: return 60; - case 300: return 64; - default: return 32; - } - } - /*************************************************/ /** * Used for new notes without data. Optionally allows to skip one @@ -73,7 +26,7 @@ namespace Jorts.Utils { themes.add_all_array (Jorts.Themes.all ()); if (skip_theme != null) { - themes.remove(skip_theme); + themes.remove (skip_theme); } var random_in_range = Random.int_range (0, themes.size); diff --git a/src/meson.build b/src/meson.build index ade26b58..985c81cf 100644 --- a/src/meson.build +++ b/src/meson.build @@ -3,6 +3,9 @@ sources = files ( 'Objects' / 'Themes.vala', 'Objects' / 'NoteData.vala', + 'Utils' / 'Random.vala', + 'Utils' / 'Libportal.vala', + 'Services' / 'Constants.vala', 'Services' / 'Storage.vala', 'Services' / 'NoteManager.vala', From 2cce07dde2881abf917fd4b7167df0739d6e3afa Mon Sep 17 00:00:00 2001 From: teamcons Date: Tue, 23 Sep 2025 18:43:42 +0200 Subject: [PATCH 12/38] misc --- src/Utils/Libportal.vala | 10 ---------- src/Windows/StickyNoteWindow.vala | 2 +- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/src/Utils/Libportal.vala b/src/Utils/Libportal.vala index 6e47f25b..66fd64ec 100644 --- a/src/Utils/Libportal.vala +++ b/src/Utils/Libportal.vala @@ -5,16 +5,6 @@ * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) */ -/* CONTENT -randrange does not include upper bound. - -random_theme(skip_theme) -random_title() -random_emote(skip_emote) -random_note(skip_theme) - -*/ - namespace Jorts.Utils { public void autostart_remove () { Xdp.Portal portal = new Xdp.Portal (); diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 99b39d33..11e1ee08 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -183,7 +183,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { * Show UI elements shorty after the window is shown */ private void delayed_show () { - Timeout.add_once (750, () => { + Timeout.add_once (1000, () => { Application.gsettings.bind ( "hide-bar", view.actionbar, From f6c6e4694f1e4943003a55d4159f42960d46061d Mon Sep 17 00:00:00 2001 From: teamcons Date: Wed, 24 Sep 2025 19:40:16 +0200 Subject: [PATCH 13/38] Save some precious bytes by using a uint8 instead of int64 for zoom --- data/jorts.metainfo.xml.in | 2 +- src/Objects/NoteData.vala | 8 ++++---- src/Objects/Zoom.vala | 30 +++++++++++++++--------------- src/Services/Constants.vala | 8 ++++---- src/Services/Utils.vala | 16 ++++++++-------- src/Views/PopoverView.vala | 2 +- src/Widgets/ZoomBox.vala | 4 ++-- src/Windows/StickyNoteWindow.vala | 8 ++++---- 8 files changed, 39 insertions(+), 39 deletions(-) diff --git a/data/jorts.metainfo.xml.in b/data/jorts.metainfo.xml.in index 1a822f3f..34eaf541 100644 --- a/data/jorts.metainfo.xml.in +++ b/data/jorts.metainfo.xml.in @@ -96,7 +96,7 @@ -

    3.4.0 Jorts of Autumn

    +

    3.4.0 Scary Jorts of Boo

    • I struggled with some shenanigans to have only one preference window... Should be done for good now
    • Added a desktop action to create a note from clipboard content
    • diff --git a/src/Objects/NoteData.vala b/src/Objects/NoteData.vala index 43af2b46..f747ef54 100644 --- a/src/Objects/NoteData.vala +++ b/src/Objects/NoteData.vala @@ -14,14 +14,14 @@ public class Jorts.NoteData : Object { // Will determine properties (or lack thereof) for any new note public static Jorts.Themes latest_theme = Jorts.Constants.DEFAULT_THEME; - public static int? latest_zoom = Jorts.Constants.DEFAULT_ZOOM; + public static uint8? latest_zoom = Jorts.Constants.DEFAULT_ZOOM; public static bool latest_mono = Jorts.Constants.DEFAULT_MONO; public string title; public Jorts.Themes theme; public string content; public bool monospace; - public int zoom; + public uint8 zoom; public int width; public int height; @@ -30,7 +30,7 @@ public class Jorts.NoteData : Object { * Convert into a Json.Object() */ public NoteData (string? title = null, Jorts.Themes? theme = null, string? content = null, - bool? monospace = null, int? zoom = null, int? width = null, int? height = null) + bool? monospace = null, uint8? zoom = null, int? width = null, int? height = null) { // We assign defaults in case theres args missing this.title = title ?? Jorts.Utils.random_title (); @@ -54,7 +54,7 @@ public class Jorts.NoteData : Object { theme = Jorts.Themes.from_string (themestring); content = node.get_string_member_with_default ("content",""); monospace = node.get_boolean_member_with_default ("monospace",Jorts.Constants.DEFAULT_MONO); - zoom = (int)node.get_int_member_with_default ("zoom",Jorts.Constants.DEFAULT_ZOOM); + zoom = (uint8)node.get_int_member_with_default ("zoom",Jorts.Constants.DEFAULT_ZOOM); // Make sure the values are nothing crazy if (zoom < Jorts.Constants.ZOOM_MIN) { zoom = Jorts.Constants.ZOOM_MIN;} diff --git a/src/Objects/Zoom.vala b/src/Objects/Zoom.vala index f1325c2d..510fbf8a 100644 --- a/src/Objects/Zoom.vala +++ b/src/Objects/Zoom.vala @@ -30,7 +30,7 @@ public enum Jorts.Zoom { /** * Returns an Int representation we can use to display and store the value */ - public int to_int () { + public uint8 to_int () { switch (this) { case ANTSIZED: return 20; case MUCHSMALLER: return 40; @@ -44,9 +44,9 @@ public enum Jorts.Zoom { case HUGE: return 200; case SUPERHUGE: return 220; case MEGAHUGE: return 240; - case ULTRAHUGE: return 260; - case MASSIVE: return 280; - case URMOM: return 300; + // case ULTRAHUGE: return 260; + // case MASSIVE: return 280; + // case URMOM: return 300; default: return 100; } } @@ -55,7 +55,7 @@ public enum Jorts.Zoom { /** * We cannot save Enums in JSON, so this recovers the enum from stored int */ - public static Zoom from_int (int wtf_is_this) { + public static Zoom from_int (uint8 wtf_is_this) { switch (wtf_is_this) { case 20: return ANTSIZED; case 40: return MUCHSMALLER; @@ -69,9 +69,9 @@ public enum Jorts.Zoom { case 200: return HUGE; case 220: return SUPERHUGE; case 240: return MEGAHUGE; - case 260: return ULTRAHUGE; - case 280: return MASSIVE; - case 300: return URMOM; + // case 260: return ULTRAHUGE; + // case 280: return MASSIVE; + // case 300: return URMOM; default: return NORMAL; } } @@ -94,9 +94,9 @@ public enum Jorts.Zoom { case HUGE: return "huge"; case SUPERHUGE: return "superhuge"; case MEGAHUGE: return "megahuge"; - case ULTRAHUGE: return "ultrahuge"; - case MASSIVE: return "massive"; - case URMOM: return "urmom"; + // case ULTRAHUGE: return "ultrahuge"; + // case MASSIVE: return "massive"; + // case URMOM: return "urmom"; default: return "normal_zoom"; } } @@ -105,7 +105,7 @@ public enum Jorts.Zoom { /** * We have to scale some UI elements according to zoom */ - public int to_size () { + public uint8 to_size () { switch (this) { case ANTSIZED: return 24; case MUCHSMALLER: return 26; @@ -119,9 +119,9 @@ public enum Jorts.Zoom { case HUGE: return 48; case SUPERHUGE: return 52; case MEGAHUGE: return 54; - case ULTRAHUGE: return 56; - case MASSIVE: return 60; - case URMOM: return 64; + // case ULTRAHUGE: return 56; + // case MASSIVE: return 60; + // case URMOM: return 64; default: return 32; } } diff --git a/src/Services/Constants.vala b/src/Services/Constants.vala index f178a779..c8b7bd50 100644 --- a/src/Services/Constants.vala +++ b/src/Services/Constants.vala @@ -15,15 +15,15 @@ namespace Jorts.Constants { const string DONATE_LINK = "https://ko-fi.com/teamcons"; // signature theme - const Jorts.Themes DEFAULT_THEME = Jorts.Themes.BLUEBERRY; + const Jorts.Themes DEFAULT_THEME = Jorts.Themes.ORANGE; // in ms const int DEBOUNCE = 1000; // We need to say stop at some point - const int ZOOM_MAX = 240; - const int DEFAULT_ZOOM = 100; - const int ZOOM_MIN = 40; + const uint8 ZOOM_MAX = 240; + const uint8 DEFAULT_ZOOM = 100; + const uint8 ZOOM_MIN = 40; const bool DEFAULT_MONO = false; // For new stickies diff --git a/src/Services/Utils.vala b/src/Services/Utils.vala index b5793643..45e336d1 100644 --- a/src/Services/Utils.vala +++ b/src/Services/Utils.vala @@ -19,7 +19,7 @@ namespace Jorts.Utils { /*************************************************/ // We cannot use numbers in CSS, so we have to translate a number into a string - public string zoom_to_class (int zoom) { + public string zoom_to_class (uint8 zoom) { switch (zoom) { case 20: return "antsized"; case 40: return "muchsmaller"; @@ -33,16 +33,16 @@ namespace Jorts.Utils { case 200: return "huge"; case 220: return "superhuge"; case 240: return "megahuge"; - case 260: return "ultrahuge"; - case 280: return "massive"; - case 300: return "urmom"; + // case 260: return "ultrahuge"; + // case 280: return "massive"; + // case 300: return "urmom"; default: return "normal_zoom"; } } /*************************************************/ // We cannot use numbers in CSS, so we have to translate a number into a string - public int zoom_to_UIsize (int zoom) { + public uint8 zoom_to_UIsize (uint8 zoom) { switch (zoom) { case 20: return 24; case 40: return 26; @@ -56,9 +56,9 @@ namespace Jorts.Utils { case 200: return 48; case 220: return 52; case 240: return 54; - case 260: return 56; - case 280: return 60; - case 300: return 64; + // case 260: return 56; + // case 280: return 60; + // case 300: return 64; default: return 32; } } diff --git a/src/Views/PopoverView.vala b/src/Views/PopoverView.vala index 5df2673c..55d8a034 100644 --- a/src/Views/PopoverView.vala +++ b/src/Views/PopoverView.vala @@ -25,7 +25,7 @@ public class Jorts.PopoverView : Gtk.Popover { set {monospace_box.monospace = value;} } - public int zoom { + public uint8 zoom { get {return font_size_box.zoom;} set {font_size_box.zoom = value;} } diff --git a/src/Widgets/ZoomBox.vala b/src/Widgets/ZoomBox.vala index e479493b..8ff7bd27 100644 --- a/src/Widgets/ZoomBox.vala +++ b/src/Widgets/ZoomBox.vala @@ -13,9 +13,9 @@ public class Jorts.ZoomBox : Gtk.Box { private Gtk.Button zoom_default_button; - private int _zoom = 100; + private uint8 _zoom = 100; - public int zoom { + public uint8 zoom { get { return _zoom;} set { _zoom = value; diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 11e1ee08..3005137a 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -44,8 +44,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { set { on_monospace_changed (value);} } - private int _old_zoom; - public int zoom { + private uint8 _old_zoom; + public uint8 zoom { get { return popover.zoom;} set { do_set_zoom (value);} } @@ -269,7 +269,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { color, content, view.textview.monospace, - this.zoom, + (uint8)this.zoom, width, height); @@ -380,7 +380,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { /** * Switch zoom classes, then reflect in the UI and tell the application */ - private void do_set_zoom (int zoom) { + private void do_set_zoom (uint8 zoom) { debug ("Setting zoom: " + zoom.to_string ()); // Switches the classes that control font size From 537a10a74f3eab8a79e96b5f9472f754690bae5d Mon Sep 17 00:00:00 2001 From: teamcons Date: Wed, 24 Sep 2025 19:45:53 +0200 Subject: [PATCH 14/38] Do a beep if out of bound or insist on default --- src/Windows/StickyNoteWindow.vala | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 3005137a..f20aabcf 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -361,11 +361,17 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { public void zoom_in () { if ((_old_zoom + 20) <= Jorts.Constants.ZOOM_MAX) { zoom = _old_zoom + 20; + } else { + Gdk.Display.get_default ().beep (); } } public void zoom_default () { - zoom = Jorts.Constants.DEFAULT_ZOOM; + if (_old_zoom != Jorts.Constants.DEFAULT_ZOOM ) { + zoom = Jorts.Constants.DEFAULT_ZOOM; + } else { + Gdk.Display.get_default ().beep (); + } } /** @@ -374,6 +380,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { public void zoom_out () { if ((_old_zoom - 20) >= Jorts.Constants.ZOOM_MIN) { zoom = _old_zoom - 20; + } else { + Gdk.Display.get_default ().beep (); } } From 246e90fd60a751c257de53a998aa16699793be7c Mon Sep 17 00:00:00 2001 From: teamcons Date: Wed, 24 Sep 2025 20:02:26 +0200 Subject: [PATCH 15/38] tiny detail --- src/Windows/StickyNoteWindow.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index f20aabcf..0e9fee09 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -348,9 +348,9 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { switch (zoomkind) { case Zoomkind.ZOOM_IN: zoom_in (); break; - case Zoomkind.DEFAULT_ZOOM: zoom = 100; break; + case Zoomkind.DEFAULT_ZOOM: zoom_default (); break; case Zoomkind.ZOOM_OUT: zoom_out (); break; - default: zoom = 100; break; + default: zoom_default (); break; } ((Jorts.Application)this.application).manager.save_all.begin (); } From 5967e5240295f14035c68b72b1bff4757dc977f6 Mon Sep 17 00:00:00 2001 From: teamcons Date: Wed, 24 Sep 2025 20:31:12 +0200 Subject: [PATCH 16/38] prep moving data to popover --- src/Views/PopoverView.vala | 5 +++-- src/Windows/StickyNoteWindow.vala | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Views/PopoverView.vala b/src/Views/PopoverView.vala index 55d8a034..774cfd49 100644 --- a/src/Views/PopoverView.vala +++ b/src/Views/PopoverView.vala @@ -10,7 +10,7 @@ * Contains a setting for color, one for monospace font, one for zoom */ public class Jorts.PopoverView : Gtk.Popover { - + private Jorts.StickyNoteWindow parent_window; private Jorts.ColorBox color_button_box; private Jorts.MonospaceBox monospace_box; private Jorts.ZoomBox font_size_box; @@ -35,9 +35,10 @@ public class Jorts.PopoverView : Gtk.Popover { public signal void monospace_changed (bool if_monospace); /****************/ - construct { + public PopoverView (Jorts.StickyNoteWindow window) { position = Gtk.PositionType.TOP; halign = Gtk.Align.END; + parent_window = window; var view = new Gtk.Box (VERTICAL, 12) { margin_top = 12, diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 0e9fee09..f7ba6551 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -125,7 +125,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { view.delete_item.action_name = ACTION_PREFIX + ACTION_DELETE; textview = view.textview; - popover = new Jorts.PopoverView (); + popover = new Jorts.PopoverView (this); view.menu_button.popover = popover; set_child (view); From 93d51b3baee2c06c28f27034e55703076b0db64f Mon Sep 17 00:00:00 2001 From: teamcons Date: Wed, 24 Sep 2025 21:14:46 +0200 Subject: [PATCH 17/38] move monospaced control to popover --- src/Views/PopoverView.vala | 106 +++++++++++++++++++++++++- src/Windows/StickyNoteWindow.vala | 121 ++---------------------------- 2 files changed, 110 insertions(+), 117 deletions(-) diff --git a/src/Views/PopoverView.vala b/src/Views/PopoverView.vala index 774cfd49..0eaf650b 100644 --- a/src/Views/PopoverView.vala +++ b/src/Views/PopoverView.vala @@ -22,12 +22,13 @@ public class Jorts.PopoverView : Gtk.Popover { public bool monospace { get {return monospace_box.monospace;} - set {monospace_box.monospace = value;} + set {on_monospace_changed (value);} } + private uint8 _old_zoom; public uint8 zoom { get {return font_size_box.zoom;} - set {font_size_box.zoom = value;} + set {do_set_zoom (value);} } public signal void theme_changed (Jorts.Themes selected); @@ -58,7 +59,104 @@ public class Jorts.PopoverView : Gtk.Popover { child = view; color_button_box.theme_changed.connect ((selected) => {theme_changed (selected);}); - monospace_box.monospace_changed.connect ((monospace) => {monospace_changed (monospace);}); - font_size_box.zoom_changed.connect ((zoomkind) => {zoom_changed (zoomkind);}); + monospace_box.monospace_changed.connect (on_monospace_changed); + font_size_box.zoom_changed.connect (on_zoom_changed); } + + + + + /** + * Switches the .monospace class depending on the note setting + */ + private void on_monospace_changed (bool monospace) { + debug ("Updating monospace to %s".printf (monospace.to_string ())); + + if (monospace) { + parent_window.editableheader.add_css_class ("monospace"); + + } else { + if ("monospace" in parent_window.editableheader.css_classes) { + parent_window.editableheader.remove_css_class ("monospace"); + } + + } + parent_window.view.textview.monospace = monospace; + monospace_box.monospace = monospace; + Jorts.NoteData.latest_mono = monospace; + parent_window.changed (); + } + + + /*********************************************/ + /* ZOOM feature */ + /*********************************************/ + + /** + * Called when a signal from the popover says stuff got changed + */ + private void on_zoom_changed (Jorts.Zoomkind zoomkind) { + debug ("Zoom changed!"); + + switch (zoomkind) { + case Zoomkind.ZOOM_IN: zoom_in (); break; + case Zoomkind.DEFAULT_ZOOM: zoom_default (); break; + case Zoomkind.ZOOM_OUT: zoom_out (); break; + default: zoom_default (); break; + } + ((Jorts.Application)parent_window.application).manager.save_all.begin (); + } + + /** + * Wrapper to check an increase doesnt go above limit + */ + public void zoom_in () { + if ((_old_zoom + 20) <= Jorts.Constants.ZOOM_MAX) { + zoom = _old_zoom + 20; + } else { + Gdk.Display.get_default ().beep (); + } + } + + public void zoom_default () { + if (_old_zoom != Jorts.Constants.DEFAULT_ZOOM ) { + zoom = Jorts.Constants.DEFAULT_ZOOM; + } else { + Gdk.Display.get_default ().beep (); + } + } + + /** + * Wrapper to check an increase doesnt go below limit + */ + public void zoom_out () { + if ((_old_zoom - 20) >= Jorts.Constants.ZOOM_MIN) { + zoom = _old_zoom - 20; + } else { + Gdk.Display.get_default ().beep (); + } + } + + /** + * Switch zoom classes, then reflect in the UI and tell the application + */ + private void do_set_zoom (uint8 new_zoom) { + debug ("Setting zoom: " + zoom.to_string ()); + + // Switches the classes that control font size + parent_window.remove_css_class (Jorts.Utils.zoom_to_class ( _old_zoom)); + _old_zoom = new_zoom; + parent_window.add_css_class (Jorts.Utils.zoom_to_class ( new_zoom)); + + // Adapt headerbar size to avoid weird flickering + parent_window.headerbar.height_request = Jorts.Utils.zoom_to_UIsize (_old_zoom); + + // Reflect the number in the popover + font_size_box.zoom = new_zoom; + + // Keep it for next new notes + //((Application)this.application).latest_zoom = zoom; + NoteData.latest_zoom = zoom; + } + } diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index f7ba6551..5432ee61 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -27,9 +27,9 @@ Theme and Zoom changing are just a matter of adding and removing classes public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { public Gtk.Settings gtk_settings; - private Gtk.HeaderBar headerbar; + public Gtk.HeaderBar headerbar; public Gtk.EditableLabel editableheader; - private Jorts.NoteView view; + public Jorts.NoteView view; private PopoverView popover; public TextView textview; @@ -39,17 +39,6 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { set { popover.color = value; on_theme_changed (value);} } - public bool monospace { - get { return popover.monospace;} - set { on_monospace_changed (value);} - } - - private uint8 _old_zoom; - public uint8 zoom { - get { return popover.zoom;} - set { do_set_zoom (value);} - } - public NoteData data { owned get { return packaged ();} set { load_data (value);} @@ -152,8 +141,6 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { view.textview.buffer.changed.connect (debounce_save); popover.theme_changed.connect (on_theme_changed); - popover.monospace_changed.connect (on_monospace_changed); - popover.zoom_changed.connect (on_zoom_changed); // Use the color theme of this sticky note when focused this.notify["is-active"].connect (on_focus_changed); @@ -269,7 +256,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { color, content, view.textview.monospace, - (uint8)this.zoom, + popover.zoom, width, height); @@ -287,8 +274,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { title = editableheader.text + _(" - Jorts"); view.textview.buffer.text = data.content; - zoom = data.zoom; - monospace = data.monospace; + popover.zoom = data.zoom; + popover.monospace = data.monospace; color = data.theme; } @@ -314,104 +301,12 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { changed (); } - /** - * Switches the .monospace class depending on the note setting - */ - private void on_monospace_changed (bool monospace) { - debug ("Updating monospace to %s".printf (monospace.to_string ())); - - if (monospace) { - editableheader.add_css_class ("monospace"); - - } else { - if ("monospace" in editableheader.css_classes) { - editableheader.remove_css_class ("monospace"); - } - - } - view.textview.monospace = monospace; - popover.monospace = monospace; - Jorts.NoteData.latest_mono = monospace; - changed (); - } - - - /*********************************************/ - /* ZOOM feature */ - /*********************************************/ - - /** - * Called when a signal from the popover says stuff got changed - */ - private void on_zoom_changed (Jorts.Zoomkind zoomkind) { - debug ("Zoom changed!"); - - switch (zoomkind) { - case Zoomkind.ZOOM_IN: zoom_in (); break; - case Zoomkind.DEFAULT_ZOOM: zoom_default (); break; - case Zoomkind.ZOOM_OUT: zoom_out (); break; - default: zoom_default (); break; - } - ((Jorts.Application)this.application).manager.save_all.begin (); - } - - /** - * Wrapper to check an increase doesnt go above limit - */ - public void zoom_in () { - if ((_old_zoom + 20) <= Jorts.Constants.ZOOM_MAX) { - zoom = _old_zoom + 20; - } else { - Gdk.Display.get_default ().beep (); - } - } - - public void zoom_default () { - if (_old_zoom != Jorts.Constants.DEFAULT_ZOOM ) { - zoom = Jorts.Constants.DEFAULT_ZOOM; - } else { - Gdk.Display.get_default ().beep (); - } - } - - /** - * Wrapper to check an increase doesnt go below limit - */ - public void zoom_out () { - if ((_old_zoom - 20) >= Jorts.Constants.ZOOM_MIN) { - zoom = _old_zoom - 20; - } else { - Gdk.Display.get_default ().beep (); - } - } - - /** - * Switch zoom classes, then reflect in the UI and tell the application - */ - private void do_set_zoom (uint8 zoom) { - debug ("Setting zoom: " + zoom.to_string ()); - - // Switches the classes that control font size - this.remove_css_class (Jorts.Utils.zoom_to_class ( _old_zoom)); - _old_zoom = zoom; - this.add_css_class (Jorts.Utils.zoom_to_class ( _old_zoom)); - - this.headerbar.height_request = Jorts.Utils.zoom_to_UIsize (_old_zoom); - - // Reflect the number in the popover - popover.zoom = zoom; - - // Keep it for next new notes - //((Application)this.application).latest_zoom = zoom; - NoteData.latest_zoom = zoom; - } - private void action_focus_title () {set_focus (editableheader); editableheader.editing = true;} private void action_show_emoji () {view.emoji_button.activate ();} private void action_show_menu () {view.menu_button.activate ();} private void action_delete () {((Jorts.Application)this.application).manager.delete_note (this);} - private void action_zoom_out () {zoom_out ();} - private void action_zoom_default () {zoom_default ();} - private void action_zoom_in () {zoom_in ();} + private void action_zoom_out () {popover.zoom_out ();} + private void action_zoom_default () {popover.zoom_default ();} + private void action_zoom_in () {popover.zoom_in ();} } From 806a8e47e3143037bf4750e93cbb4685f36f48f4 Mon Sep 17 00:00:00 2001 From: teamcons Date: Wed, 24 Sep 2025 22:41:02 +0200 Subject: [PATCH 18/38] move color handling to popover --- src/Application.vala | 2 +- src/Services/NoteManager.vala | 9 +++---- src/Views/PopoverView.vala | 41 ++++++++++++++++++++++++---- src/Windows/StickyNoteWindow.vala | 45 +++++-------------------------- 4 files changed, 48 insertions(+), 49 deletions(-) diff --git a/src/Application.vala b/src/Application.vala index 9f3e7565..5ae70eef 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -207,7 +207,7 @@ Please wait while the app remembers all the things... private void action_save () { debug ("[ACTION] Saving..."); - manager.save_all.begin (); + manager.save_all (); } private void action_reset_settings () { diff --git a/src/Services/NoteManager.vala b/src/Services/NoteManager.vala index 20a735e6..973965e3 100644 --- a/src/Services/NoteManager.vala +++ b/src/Services/NoteManager.vala @@ -74,12 +74,12 @@ public class Jorts.NoteManager : Object { random_data = Jorts.Utils.golden_sticky (random_data); note = new StickyNoteWindow (application, random_data); } - + /* LETSGO */ open_notes.add (note); note.show (); note.present (); - note.changed.connect (save_all); + save_all (); } @@ -120,16 +120,15 @@ public class Jorts.NoteManager : Object { open_notes.remove (note); note.close (); - save_all.begin (); + save_all (); } /*************************************************/ /** * Cue to immediately write from the active list to the storage */ - public async void save_all () { + public void save_all () { debug ("[MANAGER] Save the stickies!"); - var array = new Json.Array (); foreach (Jorts.StickyNoteWindow note in open_notes) { diff --git a/src/Views/PopoverView.vala b/src/Views/PopoverView.vala index 0eaf650b..d66ef0a2 100644 --- a/src/Views/PopoverView.vala +++ b/src/Views/PopoverView.vala @@ -15,9 +15,10 @@ public class Jorts.PopoverView : Gtk.Popover { private Jorts.MonospaceBox monospace_box; private Jorts.ZoomBox font_size_box; + private Themes _old_color = Jorts.Constants.DEFAULT_THEME; public Themes color { - get {return color_button_box.color;} - set {color_button_box.color = value;} + get {return _old_color;} + set {on_color_changed (value);} } public bool monospace { @@ -58,13 +59,42 @@ public class Jorts.PopoverView : Gtk.Popover { child = view; - color_button_box.theme_changed.connect ((selected) => {theme_changed (selected);}); + color_button_box.theme_changed.connect (on_color_changed); monospace_box.monospace_changed.connect (on_monospace_changed); font_size_box.zoom_changed.connect (on_zoom_changed); } + /** + * Switches stylesheet + * First use appropriate stylesheet, Then switch the theme classes + */ + private void on_color_changed (Jorts.Themes new_theme) { + debug ("Updating theme to %s".printf (new_theme.to_string ())); + + // Avoid deathloop where the handler calls itself + color_button_box.theme_changed.disconnect (on_color_changed); + + // Accent + var stylesheet = "io.elementary.stylesheet." + new_theme.to_css_class (); + parent_window.gtk_settings.gtk_theme_name = stylesheet; + + // Add remove class + if (_old_color.to_string () in parent_window.css_classes) { + parent_window.remove_css_class (_old_color.to_string ()); + } + parent_window.add_css_class (new_theme.to_string ()); + + // Propagate values + _old_color = new_theme; + color_button_box.color = new_theme; + NoteData.latest_theme = new_theme; + + // Cleanup + ((Jorts.Application)parent_window.application).manager.save_all (); + color_button_box.theme_changed.connect (on_color_changed); + } /** * Switches the .monospace class depending on the note setting @@ -84,7 +114,8 @@ public class Jorts.PopoverView : Gtk.Popover { parent_window.view.textview.monospace = monospace; monospace_box.monospace = monospace; Jorts.NoteData.latest_mono = monospace; - parent_window.changed (); + + ((Jorts.Application)parent_window.application).manager.save_all (); } @@ -104,7 +135,7 @@ public class Jorts.PopoverView : Gtk.Popover { case Zoomkind.ZOOM_OUT: zoom_out (); break; default: zoom_default (); break; } - ((Jorts.Application)parent_window.application).manager.save_all.begin (); + ((Jorts.Application)parent_window.application).manager.save_all (); } /** diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 5432ee61..a5d86fdd 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -33,12 +33,6 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { private PopoverView popover; public TextView textview; - private Themes _old_color; - public Jorts.Themes color { - get { return popover.color;} - set { popover.color = value; on_theme_changed (value);} - } - public NoteData data { owned get { return packaged ();} set { load_data (value);} @@ -47,9 +41,6 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { private static uint debounce_timer_id; - // Connected to by the NoteManager to know it is time to save - public signal void changed (); - private const string ACTION_PREFIX = "app."; private const string ACTION_DELETE = "action_delete"; private const string ACTION_SHOW_EMOJI = "action_show_emoji"; @@ -140,8 +131,6 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { editableheader.changed.connect (on_editable_changed); view.textview.buffer.changed.connect (debounce_save); - popover.theme_changed.connect (on_theme_changed); - // Use the color theme of this sticky note when focused this.notify["is-active"].connect (on_focus_changed); @@ -190,7 +179,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { debounce_timer_id = Timeout.add (Jorts.Constants.DEBOUNCE, () => { debounce_timer_id = 0; - changed (); + ((Jorts.Application)application).manager.save_all (); return GLib.Source.REMOVE; }); } @@ -225,7 +214,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { debug ("Focus changed!"); if (this.is_active) { - var stylesheet = "io.elementary.stylesheet." + color.to_string ().ascii_down (); + var stylesheet = "io.elementary.stylesheet." + popover.color.to_string ().ascii_down (); gtk_settings.gtk_theme_name = stylesheet; } @@ -253,13 +242,15 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { var data = new NoteData ( editableheader.text, - color, + popover.color, content, - view.textview.monospace, + popover.monospace, popover.zoom, width, height); + print (" " + popover.color.to_string ()); + return data; } @@ -276,29 +267,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { popover.zoom = data.zoom; popover.monospace = data.monospace; - color = data.theme; - } - - /** - * Switches stylesheet - * First use appropriate stylesheet, Then switch the theme classes - */ - private void on_theme_changed (Jorts.Themes new_theme) { - debug ("Updating theme to %s".printf (new_theme.to_string ())); - - print (" - " + new_theme.to_nicename ()); - - var stylesheet = "io.elementary.stylesheet." + new_theme.to_css_class (); - this.gtk_settings.gtk_theme_name = stylesheet; - - if (_old_color.to_string () in css_classes) { - remove_css_class (_old_color.to_string ()); - } - - _old_color = new_theme; - add_css_class (new_theme.to_string ()); - NoteData.latest_theme = new_theme; - changed (); + popover.color = data.theme; } private void action_focus_title () {set_focus (editableheader); editableheader.editing = true;} From cc7f9742ab2ff2a168298216c57904e4a8fc9fa2 Mon Sep 17 00:00:00 2001 From: Stella and Charlie <147658063+teamcons@users.noreply.github.com> Date: Thu, 25 Sep 2025 12:06:30 +0200 Subject: [PATCH 19/38] Explicit version and order following fd specs --- data/jorts.desktop.in | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/data/jorts.desktop.in b/data/jorts.desktop.in index ccb40aa8..f81cf19d 100644 --- a/data/jorts.desktop.in +++ b/data/jorts.desktop.in @@ -1,16 +1,17 @@ [Desktop Entry] +Type=Application +Version=1.5 Name=Jorts GenericName=Sticky notes Comment=Write down notes, reminders, random thoughts and other short-term informations Icon=io.github.ellie_commons.jorts Exec=io.github.ellie_commons.jorts -Type=Application +Terminal=false +Actions=NewNote;Preferences; Categories=Office;GTK; Keywords=text;plain;plaintext;notepad;notes;sticky;post-it; -Terminal=false StartupNotify=true SingleMainWindow=false -Actions=NewNote;Preferences; [Desktop Action NewNote] Name=New sticky note From 7531f21c6b1964717ac6d5dbf1bf88f5ef1228a0 Mon Sep 17 00:00:00 2001 From: teamcons_atwork Date: Thu, 25 Sep 2025 12:24:38 +0200 Subject: [PATCH 20/38] Change margins --- src/Widgets/TextView.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Widgets/TextView.vala b/src/Widgets/TextView.vala index 6a9ec448..3b0c9dc2 100644 --- a/src/Widgets/TextView.vala +++ b/src/Widgets/TextView.vala @@ -18,10 +18,10 @@ public class Jorts.TextView : Granite.HyperTextView { construct { buffer = new Gtk.TextBuffer (null); - bottom_margin = 12; - left_margin = 12; - right_margin = 12; - top_margin = 6; + bottom_margin = 10; + left_margin = 10; + right_margin = 10; + top_margin = 5; set_hexpand (true); set_vexpand (true); From e436e505a30e789766a43bf60944e42c0200ca9e Mon Sep 17 00:00:00 2001 From: teamcons_atwork Date: Thu, 25 Sep 2025 12:33:43 +0200 Subject: [PATCH 21/38] Add accels for changing theme --- src/Application.vala | 12 ++++++++++ src/Widgets/ColorBox.vala | 39 +++++++++++++++++++++++++++---- src/Windows/StickyNoteWindow.vala | 32 +++++++++++++++++++++++++ 3 files changed, 79 insertions(+), 4 deletions(-) diff --git a/src/Application.vala b/src/Application.vala index 5ae70eef..f62fc99f 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -97,6 +97,18 @@ public class Jorts.Application : Gtk.Application { set_accels_for_action ("app.action_show_emoji", {"period"}); set_accels_for_action ("app.action_show_menu", {"M"}); + set_accels_for_action ("app.action_theme_1", {"1"}); + set_accels_for_action ("app.action_theme_2", {"2"}); + set_accels_for_action ("app.action_theme_3", {"3"}); + set_accels_for_action ("app.action_theme_4", {"4"}); + set_accels_for_action ("app.action_theme_5", {"5"}); + set_accels_for_action ("app.action_theme_6", {"6"}); + set_accels_for_action ("app.action_theme_7", {"7"}); + set_accels_for_action ("app.action_theme_8", {"8"}); + set_accels_for_action ("app.action_theme_9", {"9"}); + set_accels_for_action ("app.action_theme_0", {"0"}); + + // Force the eOS icon theme, and set the blueberry as fallback, if for some reason it fails for individual notes var granite_settings = Granite.Settings.get_default (); var gtk_settings = Gtk.Settings.get_default (); diff --git a/src/Widgets/ColorBox.vala b/src/Widgets/ColorBox.vala index add06a26..7ed80bbb 100644 --- a/src/Widgets/ColorBox.vala +++ b/src/Widgets/ColorBox.vala @@ -5,11 +5,10 @@ * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) */ -/* -I just dont wanna rewrite the same button over and over - +/** +* A box mimicking the one in elementary OS Appearance settings page +* It shows a row with all the colours */ - public class Jorts.ColorBox : Gtk.Box { private Themes _color = Constants.DEFAULT_THEME; @@ -31,6 +30,7 @@ public class Jorts.ColorBox : Gtk.Box { private Jorts.ColorPill color_button_cocoa; private Jorts.ColorPill color_button_slate; + // TODO: We could loop instead of by-hand definition public ColorBox () { orientation = Gtk.Orientation.HORIZONTAL; @@ -51,6 +51,37 @@ public class Jorts.ColorBox : Gtk.Box { color_button_cocoa = new ColorPill (Jorts.Themes.COCOA); color_button_slate = new ColorPill (Jorts.Themes.SLATE); + color_button_blueberry.tooltip_markup = Granite.markup_accel_tooltip ( + {"1"}, Jorts.Themes.BLUEBERRY.to_nicename ()); + + color_button_lime.tooltip_markup = Granite.markup_accel_tooltip ( + {"2"}, Jorts.Themes.LIME.to_nicename ()); + + color_button_mint.tooltip_markup = Granite.markup_accel_tooltip ( + {"3"}, Jorts.Themes.MINT.to_nicename ()); + + color_button_banana.tooltip_markup = Granite.markup_accel_tooltip ( + {"4"}, Jorts.Themes.BANANA.to_nicename ()); + + color_button_strawberry.tooltip_markup = Granite.markup_accel_tooltip ( + {"5"}, Jorts.Themes.STRAWBERRY.to_nicename ()); + + color_button_orange.tooltip_markup = Granite.markup_accel_tooltip ( + {"6"}, Jorts.Themes.ORANGE.to_nicename ()); + + color_button_bubblegum.tooltip_markup = Granite.markup_accel_tooltip ( + {"7"}, Jorts.Themes.BUBBLEGUM.to_nicename ()); + + color_button_grape.tooltip_markup = Granite.markup_accel_tooltip ( + {"8"}, Jorts.Themes.GRAPE.to_nicename ()); + + color_button_cocoa.tooltip_markup = Granite.markup_accel_tooltip ( + {"9"}, Jorts.Themes.COCOA.to_nicename ()); + + color_button_slate.tooltip_markup = Granite.markup_accel_tooltip ( + {"0"}, Jorts.Themes.SLATE.to_nicename ()); + + color_button_lime.set_group (color_button_blueberry); color_button_mint.set_group (color_button_blueberry); color_button_banana.set_group (color_button_blueberry); diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index a5d86fdd..54574f9d 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -50,6 +50,17 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { private const string ACTION_ZOOM_DEFAULT = "action_zoom_default"; private const string ACTION_ZOOM_IN = "action_zoom_in"; + private const string ACTION_THEME_1 = "action_theme_1"; + private const string ACTION_THEME_2 = "action_theme_2"; + private const string ACTION_THEME_3 = "action_theme_3"; + private const string ACTION_THEME_4 = "action_theme_4"; + private const string ACTION_THEME_5 = "action_theme_5"; + private const string ACTION_THEME_6 = "action_theme_6"; + private const string ACTION_THEME_7 = "action_theme_7"; + private const string ACTION_THEME_8 = "action_theme_8"; + private const string ACTION_THEME_9 = "action_theme_9"; + private const string ACTION_THEME_0 = "action_theme_0"; + public static Gee.MultiMap action_accelerators; private const GLib.ActionEntry[] ACTION_ENTRIES = { @@ -60,6 +71,16 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { { ACTION_ZOOM_OUT, action_zoom_out}, { ACTION_ZOOM_DEFAULT, action_zoom_default}, { ACTION_ZOOM_IN, action_zoom_in}, + { ACTION_THEME_1, action_theme_1}, + { ACTION_THEME_2, action_theme_2}, + { ACTION_THEME_3, action_theme_3}, + { ACTION_THEME_4, action_theme_4}, + { ACTION_THEME_5, action_theme_5}, + { ACTION_THEME_6, action_theme_6}, + { ACTION_THEME_7, action_theme_7}, + { ACTION_THEME_8, action_theme_8}, + { ACTION_THEME_9, action_theme_9}, + { ACTION_THEME_0, action_theme_0}, }; public StickyNoteWindow (Gtk.Application app, NoteData data) { @@ -278,4 +299,15 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { private void action_zoom_out () {popover.zoom_out ();} private void action_zoom_default () {popover.zoom_default ();} private void action_zoom_in () {popover.zoom_in ();} + + private void action_theme_1 () {popover.color = (Jorts.Themes.all ())[0];} + private void action_theme_2 () {popover.color = (Jorts.Themes.all ())[1];} + private void action_theme_3 () {popover.color = (Jorts.Themes.all ())[2];} + private void action_theme_4 () {popover.color = (Jorts.Themes.all ())[3];} + private void action_theme_5 () {popover.color = (Jorts.Themes.all ())[4];} + private void action_theme_6 () {popover.color = (Jorts.Themes.all ())[5];} + private void action_theme_7 () {popover.color = (Jorts.Themes.all ())[6];} + private void action_theme_8 () {popover.color = (Jorts.Themes.all ())[7];} + private void action_theme_9 () {popover.color = (Jorts.Themes.all ())[8];} + private void action_theme_0 () {popover.color = (Jorts.Themes.all ())[9];} } From 3c4f0bbb452abd7b533df0ed2e554ab76bf26d62 Mon Sep 17 00:00:00 2001 From: teamcons_atwork Date: Thu, 25 Sep 2025 12:46:39 +0200 Subject: [PATCH 22/38] Remove headerbar reference and document a bit --- src/Windows/StickyNoteWindow.vala | 61 ++++++++++++++----------------- 1 file changed, 27 insertions(+), 34 deletions(-) diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 54574f9d..196a4ce3 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -6,28 +6,16 @@ */ -/* CONTENT - -Each StickyNoteWindow instance is a sticky note -It takes a NoteData, and creates the UI - -It is connected to settings and reacts to changes - -It sometimes calls Application methods for actions that requires higher oversight level -like creating a new note, or saving - -Notably, it interacts with popover - a SettingsPopover instant, where stuff is more hairy -Both interact through signals and methods. - -A method packages the informations into one NoteData -Theme and Zoom changing are just a matter of adding and removing classes - - +/** +* Represents a Sticky Note, with its own settings and content +* There is a View, which contains the text +* There is a Popover, which manages the per-window settings (Tail wagging the dog situation) +* Can be packaged into a noteData file for convenient storage +* Reports to the NoteManager for saving */ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { public Gtk.Settings gtk_settings; - public Gtk.HeaderBar headerbar; public Gtk.EditableLabel editableheader; public Jorts.NoteView view; private PopoverView popover; @@ -38,7 +26,6 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { set { load_data (value);} } - private static uint debounce_timer_id; private const string ACTION_PREFIX = "app."; @@ -102,7 +89,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { /* HEADERBAR */ /*****************************************/ - this.headerbar = new Gtk.HeaderBar () { + var headerbar = new Gtk.HeaderBar () { show_title_buttons = false }; headerbar.add_css_class (Granite.STYLE_CLASS_FLAT); @@ -132,16 +119,13 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { set_child (view); set_focus (view); - /****************************************/ /* LOADING */ /****************************************/ - on_scribbly_changed (); load_data (data); - /***************************************************/ /* CONNECTS AND BINDS */ /***************************************************/ @@ -169,7 +153,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { "revealed", SettingsBindFlags.INVERT_BOOLEAN); } - } // END OF MAIN CONSTRUCT + } /********************************************/ @@ -177,7 +161,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { /********************************************/ /** - * Show UI elements shorty after the window is shown + * Show Actionbar shortly after the window is shown + * This is more for the Aesthetic */ private void delayed_show () { Timeout.add_once (1000, () => { @@ -190,7 +175,10 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { show.disconnect (delayed_show); } - // Add a debounce so we aren't writing the entire buffer every character input + /** + * Debouncer to avoid writing to disk all the time constantly + * Called when something has changed + */ private void debounce_save () { debug ("Changed! Timer: %s".printf (debounce_timer_id.to_string ())); @@ -205,12 +193,17 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { }); } + /** + * Simple handler for the EditableLabel + */ private void on_editable_changed () { title = editableheader.text + _(" - Jorts"); debounce_save (); } - // Called when a change in settings is detected + /** + * Handler for scribbly mode settings changed + */ private void on_scribbly_changed () { debug ("Scribbly mode changed!"); @@ -226,7 +219,6 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { } } - // /** * Changes the stylesheet accents to the notes color * Add or remove the Redacted font if the setting is active @@ -251,7 +243,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { } /** - * Package the note into a NoteData and pass it back + * Package the note into a NoteData and pass it back. + * Used by NoteManager to pass all informations conveniently for storage */ public NoteData packaged () { debug ("Packaging into a noteData…"); @@ -263,10 +256,10 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { var data = new NoteData ( editableheader.text, - popover.color, - content, - popover.monospace, - popover.zoom, + popover.color, + content, + popover.monospace, + popover.zoom, width, height); @@ -276,7 +269,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { } /** - * Propagate the content of a NoteData into the various UI elements + * Propagate the content of a NoteData into the various UI elements. Used when creating a new window */ private void load_data (NoteData data) { debug ("Loading noteData…"); From 5028a8bc4328930b166bdfccbe9ab286a8c46197 Mon Sep 17 00:00:00 2001 From: teamcons_atwork Date: Thu, 25 Sep 2025 13:01:36 +0200 Subject: [PATCH 23/38] restore ref --- src/Windows/StickyNoteWindow.vala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 196a4ce3..901e4cea 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -16,6 +16,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { public Gtk.Settings gtk_settings; + public Gtk.HeaderBar headerbar; public Gtk.EditableLabel editableheader; public Jorts.NoteView view; private PopoverView popover; @@ -89,7 +90,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { /* HEADERBAR */ /*****************************************/ - var headerbar = new Gtk.HeaderBar () { + headerbar = new Gtk.HeaderBar () { show_title_buttons = false }; headerbar.add_css_class (Granite.STYLE_CLASS_FLAT); From ab41fb828d6c3aae1688b65b3fce5e4e627de525 Mon Sep 17 00:00:00 2001 From: teamcons Date: Thu, 25 Sep 2025 21:53:25 +0200 Subject: [PATCH 24/38] Correct yolocode for color change accel --- src/Application.vala | 4 ++-- src/Services/Constants.vala | 2 +- src/Widgets/ColorBox.vala | 20 ++++++++++---------- src/Windows/StickyNoteWindow.vala | 6 +++--- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/Application.vala b/src/Application.vala index f62fc99f..6bd9cb6c 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -88,7 +88,7 @@ public class Jorts.Application : Gtk.Application { set_accels_for_action ("app.action_delete", {"W"}); set_accels_for_action ("app.action_save", {"S"}); set_accels_for_action ("app.action_zoom_out", {"minus", "KP_Subtract"}); - set_accels_for_action ("app.action_zoom_default", {"equal", "0", "KP_0"}); + set_accels_for_action ("app.action_zoom_default", {"equal"}); set_accels_for_action ("app.action_zoom_in", {"plus", "KP_Add"}); set_accels_for_action ("app.action_toggle_scribbly", {"H"}); set_accels_for_action ("app.action_toggle_actionbar", {"T"}); @@ -106,7 +106,7 @@ public class Jorts.Application : Gtk.Application { set_accels_for_action ("app.action_theme_7", {"7"}); set_accels_for_action ("app.action_theme_8", {"8"}); set_accels_for_action ("app.action_theme_9", {"9"}); - set_accels_for_action ("app.action_theme_0", {"0"}); + set_accels_for_action ("app.action_theme_0", {"0", "KP_0"}); // Force the eOS icon theme, and set the blueberry as fallback, if for some reason it fails for individual notes diff --git a/src/Services/Constants.vala b/src/Services/Constants.vala index c8b7bd50..7f8eecf7 100644 --- a/src/Services/Constants.vala +++ b/src/Services/Constants.vala @@ -36,7 +36,7 @@ namespace Jorts.Constants { /*************************************************/ // Shortcuts - const string[] ACCELS_ZOOM_DEFAULT = { "equal", "0", "KP_0" }; + const string[] ACCELS_ZOOM_DEFAULT = { "equal" }; const string[] ACCELS_ZOOM_IN = { "plus", "KP_Add" }; const string[] ACCELS_ZOOM_OUT = { "minus", "KP_Subtract" }; diff --git a/src/Widgets/ColorBox.vala b/src/Widgets/ColorBox.vala index 7ed80bbb..bf511336 100644 --- a/src/Widgets/ColorBox.vala +++ b/src/Widgets/ColorBox.vala @@ -41,11 +41,11 @@ public class Jorts.ColorBox : Gtk.Box { //TRANSLATORS: Shown as a tooltip when people hover a color theme color_button_blueberry = new ColorPill (Jorts.Themes.BLUEBERRY); - color_button_lime = new ColorPill (Jorts.Themes.LIME); color_button_mint = new ColorPill (Jorts.Themes.MINT); + color_button_lime = new ColorPill (Jorts.Themes.LIME); color_button_banana = new ColorPill (Jorts.Themes.BANANA); - color_button_strawberry = new ColorPill (Jorts.Themes.STRAWBERRY); color_button_orange = new ColorPill (Jorts.Themes.ORANGE); + color_button_strawberry = new ColorPill (Jorts.Themes.STRAWBERRY); color_button_bubblegum = new ColorPill (Jorts.Themes.BUBBLEGUM); color_button_grape = new ColorPill (Jorts.Themes.GRAPE); color_button_cocoa = new ColorPill (Jorts.Themes.COCOA); @@ -54,20 +54,20 @@ public class Jorts.ColorBox : Gtk.Box { color_button_blueberry.tooltip_markup = Granite.markup_accel_tooltip ( {"1"}, Jorts.Themes.BLUEBERRY.to_nicename ()); - color_button_lime.tooltip_markup = Granite.markup_accel_tooltip ( - {"2"}, Jorts.Themes.LIME.to_nicename ()); - color_button_mint.tooltip_markup = Granite.markup_accel_tooltip ( - {"3"}, Jorts.Themes.MINT.to_nicename ()); + {"2"}, Jorts.Themes.MINT.to_nicename ()); + + color_button_lime.tooltip_markup = Granite.markup_accel_tooltip ( + {"3"}, Jorts.Themes.LIME.to_nicename ()); color_button_banana.tooltip_markup = Granite.markup_accel_tooltip ( {"4"}, Jorts.Themes.BANANA.to_nicename ()); - color_button_strawberry.tooltip_markup = Granite.markup_accel_tooltip ( - {"5"}, Jorts.Themes.STRAWBERRY.to_nicename ()); - color_button_orange.tooltip_markup = Granite.markup_accel_tooltip ( - {"6"}, Jorts.Themes.ORANGE.to_nicename ()); + {"5"}, Jorts.Themes.ORANGE.to_nicename ()); + + color_button_strawberry.tooltip_markup = Granite.markup_accel_tooltip ( + {"6"}, Jorts.Themes.STRAWBERRY.to_nicename ()); color_button_bubblegum.tooltip_markup = Granite.markup_accel_tooltip ( {"7"}, Jorts.Themes.BUBBLEGUM.to_nicename ()); diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 901e4cea..8b079c84 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -48,7 +48,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { private const string ACTION_THEME_8 = "action_theme_8"; private const string ACTION_THEME_9 = "action_theme_9"; private const string ACTION_THEME_0 = "action_theme_0"; - + public static Gee.MultiMap action_accelerators; private const GLib.ActionEntry[] ACTION_ENTRIES = { @@ -154,7 +154,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { "revealed", SettingsBindFlags.INVERT_BOOLEAN); } - } + } /********************************************/ @@ -166,7 +166,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { * This is more for the Aesthetic */ private void delayed_show () { - Timeout.add_once (1000, () => { + Timeout.add_once (1000, () => { Application.gsettings.bind ( "hide-bar", view.actionbar, From d49db401394d733f6bff015ceba7a007c2c5288a Mon Sep 17 00:00:00 2001 From: teamcons Date: Thu, 25 Sep 2025 22:02:23 +0200 Subject: [PATCH 25/38] Fix accel clash --- data/jorts.metainfo.xml.in | 1 + src/Application.vala | 22 +++++++++++----------- src/Widgets/ColorBox.vala | 20 ++++++++++---------- 3 files changed, 22 insertions(+), 21 deletions(-) diff --git a/data/jorts.metainfo.xml.in b/data/jorts.metainfo.xml.in index 34eaf541..7a260ff5 100644 --- a/data/jorts.metainfo.xml.in +++ b/data/jorts.metainfo.xml.in @@ -103,6 +103,7 @@
    • Added a reset-settings commandline option. Could be handy.
    • Ctrl+L to focus note title
    • Ctrl+M to open note settings now
    • +
    • Alt+Number to change theme quickly
    • Some UI elements show up after being shown, for a sleek vibe
    • New note setting: Monospace. Could be for accessibility, could be for ascii doodles
    • Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs
    • diff --git a/src/Application.vala b/src/Application.vala index 6bd9cb6c..480416cb 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -88,7 +88,7 @@ public class Jorts.Application : Gtk.Application { set_accels_for_action ("app.action_delete", {"W"}); set_accels_for_action ("app.action_save", {"S"}); set_accels_for_action ("app.action_zoom_out", {"minus", "KP_Subtract"}); - set_accels_for_action ("app.action_zoom_default", {"equal"}); + set_accels_for_action ("app.action_zoom_default", {"equal", "0", "KP_0"}); set_accels_for_action ("app.action_zoom_in", {"plus", "KP_Add"}); set_accels_for_action ("app.action_toggle_scribbly", {"H"}); set_accels_for_action ("app.action_toggle_actionbar", {"T"}); @@ -97,16 +97,16 @@ public class Jorts.Application : Gtk.Application { set_accels_for_action ("app.action_show_emoji", {"period"}); set_accels_for_action ("app.action_show_menu", {"M"}); - set_accels_for_action ("app.action_theme_1", {"1"}); - set_accels_for_action ("app.action_theme_2", {"2"}); - set_accels_for_action ("app.action_theme_3", {"3"}); - set_accels_for_action ("app.action_theme_4", {"4"}); - set_accels_for_action ("app.action_theme_5", {"5"}); - set_accels_for_action ("app.action_theme_6", {"6"}); - set_accels_for_action ("app.action_theme_7", {"7"}); - set_accels_for_action ("app.action_theme_8", {"8"}); - set_accels_for_action ("app.action_theme_9", {"9"}); - set_accels_for_action ("app.action_theme_0", {"0", "KP_0"}); + set_accels_for_action ("app.action_theme_1", {"1"}); + set_accels_for_action ("app.action_theme_2", {"2"}); + set_accels_for_action ("app.action_theme_3", {"3"}); + set_accels_for_action ("app.action_theme_4", {"4"}); + set_accels_for_action ("app.action_theme_5", {"5"}); + set_accels_for_action ("app.action_theme_6", {"6"}); + set_accels_for_action ("app.action_theme_7", {"7"}); + set_accels_for_action ("app.action_theme_8", {"8"}); + set_accels_for_action ("app.action_theme_9", {"9"}); + set_accels_for_action ("app.action_theme_0", {"0", "KP_0"}); // Force the eOS icon theme, and set the blueberry as fallback, if for some reason it fails for individual notes diff --git a/src/Widgets/ColorBox.vala b/src/Widgets/ColorBox.vala index bf511336..28b84900 100644 --- a/src/Widgets/ColorBox.vala +++ b/src/Widgets/ColorBox.vala @@ -52,34 +52,34 @@ public class Jorts.ColorBox : Gtk.Box { color_button_slate = new ColorPill (Jorts.Themes.SLATE); color_button_blueberry.tooltip_markup = Granite.markup_accel_tooltip ( - {"1"}, Jorts.Themes.BLUEBERRY.to_nicename ()); + {"1"}, Jorts.Themes.BLUEBERRY.to_nicename ()); color_button_mint.tooltip_markup = Granite.markup_accel_tooltip ( - {"2"}, Jorts.Themes.MINT.to_nicename ()); + {"2"}, Jorts.Themes.MINT.to_nicename ()); color_button_lime.tooltip_markup = Granite.markup_accel_tooltip ( - {"3"}, Jorts.Themes.LIME.to_nicename ()); + {"3"}, Jorts.Themes.LIME.to_nicename ()); color_button_banana.tooltip_markup = Granite.markup_accel_tooltip ( - {"4"}, Jorts.Themes.BANANA.to_nicename ()); + {"4"}, Jorts.Themes.BANANA.to_nicename ()); color_button_orange.tooltip_markup = Granite.markup_accel_tooltip ( - {"5"}, Jorts.Themes.ORANGE.to_nicename ()); + {"5"}, Jorts.Themes.ORANGE.to_nicename ()); color_button_strawberry.tooltip_markup = Granite.markup_accel_tooltip ( - {"6"}, Jorts.Themes.STRAWBERRY.to_nicename ()); + {"6"}, Jorts.Themes.STRAWBERRY.to_nicename ()); color_button_bubblegum.tooltip_markup = Granite.markup_accel_tooltip ( - {"7"}, Jorts.Themes.BUBBLEGUM.to_nicename ()); + {"7"}, Jorts.Themes.BUBBLEGUM.to_nicename ()); color_button_grape.tooltip_markup = Granite.markup_accel_tooltip ( - {"8"}, Jorts.Themes.GRAPE.to_nicename ()); + {"8"}, Jorts.Themes.GRAPE.to_nicename ()); color_button_cocoa.tooltip_markup = Granite.markup_accel_tooltip ( - {"9"}, Jorts.Themes.COCOA.to_nicename ()); + {"9"}, Jorts.Themes.COCOA.to_nicename ()); color_button_slate.tooltip_markup = Granite.markup_accel_tooltip ( - {"0"}, Jorts.Themes.SLATE.to_nicename ()); + {"0"}, Jorts.Themes.SLATE.to_nicename ()); color_button_lime.set_group (color_button_blueberry); From 3a3edeedccfd6f4ceb091680cceaf42d97852833 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sat, 27 Sep 2025 20:12:00 +0200 Subject: [PATCH 26/38] Move and tidy --- po/POTFILES | 1 + src/Services/Constants.vala | 2 +- .../Utils.vala => Utils/ZoomConvert.vala} | 12 +- src/Views/PopoverView.vala | 12 +- src/Widgets/ActionBar.vala | 110 ++++++++++++++++++ src/Widgets/MonospaceBox.vala | 4 +- src/Widgets/ZoomBox.vala | 2 +- src/Windows/StickyNoteWindow.vala | 5 +- src/meson.build | 1 + 9 files changed, 124 insertions(+), 25 deletions(-) rename src/{Services/Utils.vala => Utils/ZoomConvert.vala} (90%) create mode 100644 src/Widgets/ActionBar.vala diff --git a/po/POTFILES b/po/POTFILES index d07f14d4..750763ea 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -5,6 +5,7 @@ src/Widgets/ColorBox.vala src/Widgets/MonospaceBox.vala src/Widgets/ZoomBox.vala src/Objects/Themes.vala +src/Utils/ZoomConvert.vala src/Utils/Random.vala src/Utils/Libportal.vala src/Views/PreferencesView.vala diff --git a/src/Services/Constants.vala b/src/Services/Constants.vala index 7f8eecf7..cde033ee 100644 --- a/src/Services/Constants.vala +++ b/src/Services/Constants.vala @@ -36,7 +36,7 @@ namespace Jorts.Constants { /*************************************************/ // Shortcuts - const string[] ACCELS_ZOOM_DEFAULT = { "equal" }; + const string[] ACCELS_ZOOM_DEFAULT = { "equal", "0", "KP_0" }; const string[] ACCELS_ZOOM_IN = { "plus", "KP_Add" }; const string[] ACCELS_ZOOM_OUT = { "minus", "KP_Subtract" }; diff --git a/src/Services/Utils.vala b/src/Utils/ZoomConvert.vala similarity index 90% rename from src/Services/Utils.vala rename to src/Utils/ZoomConvert.vala index 45e336d1..27c51411 100644 --- a/src/Services/Utils.vala +++ b/src/Utils/ZoomConvert.vala @@ -5,16 +5,6 @@ * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) */ -/* CONTENT -randrange does not include upper bound. - -random_theme(skip_theme) -random_title() -random_emote(skip_emote) -random_note(skip_theme) - -*/ - namespace Jorts.Utils { /*************************************************/ @@ -42,7 +32,7 @@ namespace Jorts.Utils { /*************************************************/ // We cannot use numbers in CSS, so we have to translate a number into a string - public uint8 zoom_to_UIsize (uint8 zoom) { + public uint8 zoom_to_ui_size (uint8 zoom) { switch (zoom) { case 20: return 24; case 40: return 26; diff --git a/src/Views/PopoverView.vala b/src/Views/PopoverView.vala index d66ef0a2..db6edc22 100644 --- a/src/Views/PopoverView.vala +++ b/src/Views/PopoverView.vala @@ -51,10 +51,8 @@ public class Jorts.PopoverView : Gtk.Popover { monospace_box = new Jorts.MonospaceBox (); font_size_box = new Jorts.ZoomBox (); - /* APPENDS */ view.append (color_button_box); view.append (monospace_box); - //view.append (new Gtk.Separator (Gtk.Orientation.HORIZONTAL)); view.append (font_size_box); child = view; @@ -69,7 +67,7 @@ public class Jorts.PopoverView : Gtk.Popover { /** * Switches stylesheet * First use appropriate stylesheet, Then switch the theme classes - */ + */ private void on_color_changed (Jorts.Themes new_theme) { debug ("Updating theme to %s".printf (new_theme.to_string ())); @@ -125,7 +123,7 @@ public class Jorts.PopoverView : Gtk.Popover { /** * Called when a signal from the popover says stuff got changed - */ + */ private void on_zoom_changed (Jorts.Zoomkind zoomkind) { debug ("Zoom changed!"); @@ -159,7 +157,7 @@ public class Jorts.PopoverView : Gtk.Popover { /** * Wrapper to check an increase doesnt go below limit - */ + */ public void zoom_out () { if ((_old_zoom - 20) >= Jorts.Constants.ZOOM_MIN) { zoom = _old_zoom - 20; @@ -170,7 +168,7 @@ public class Jorts.PopoverView : Gtk.Popover { /** * Switch zoom classes, then reflect in the UI and tell the application - */ + */ private void do_set_zoom (uint8 new_zoom) { debug ("Setting zoom: " + zoom.to_string ()); @@ -180,7 +178,7 @@ public class Jorts.PopoverView : Gtk.Popover { parent_window.add_css_class (Jorts.Utils.zoom_to_class ( new_zoom)); // Adapt headerbar size to avoid weird flickering - parent_window.headerbar.height_request = Jorts.Utils.zoom_to_UIsize (_old_zoom); + parent_window.headerbar.height_request = Jorts.Utils.zoom_to_ui_size (_old_zoom); // Reflect the number in the popover font_size_box.zoom = new_zoom; diff --git a/src/Widgets/ActionBar.vala b/src/Widgets/ActionBar.vala new file mode 100644 index 00000000..6ee9cb8f --- /dev/null +++ b/src/Widgets/ActionBar.vala @@ -0,0 +1,110 @@ +/* + * SPDX-License-Identifier: GPL-3.0-or-later + * SPDX-FileCopyrightText: 2017-2024 Lains + * 2025 Stella & Charlie (teamcons.carrd.co) + * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) + */ + +/** +* We use Granite.Bin to subclass ActionBar. +* Everything is kept there but most widgets are public +*/ + public class Jorts.ActionBar : Granite.Bin { + + public Gtk.ActionBar actionbar; + public Gtk.MenuButton emoji_button; + public Gtk.EmojiChooser emojichooser_popover; + public Gtk.MenuButton menu_button; + + construct { + + /* **** LEFT **** */ + var new_item = new Gtk.Button () { + icon_name = "list-add-symbolic", + width_request = 32, + height_request = 32, + tooltip_markup = Granite.markup_accel_tooltip ( + {"n"}, + _("New sticky note") + ) + }; + new_item.action_name = Application.ACTION_PREFIX + Application.ACTION_NEW; + new_item.add_css_class ("themedbutton"); + + delete_item = new Gtk.Button () { + icon_name = "edit-delete-symbolic", + width_request = 32, + height_request = 32, + tooltip_markup = Granite.markup_accel_tooltip ( + {"w"}, + _("Delete sticky note") + ) + }; + delete_item.add_css_class ("themedbutton"); + + /* **** RIGHT **** */ + emojichooser_popover = new Gtk.EmojiChooser (); + + emoji_button = new Gtk.MenuButton () { + icon_name = Jorts.Utils.random_emote (), + width_request = 32, + height_request = 32, + tooltip_markup = Granite.markup_accel_tooltip ( + {"period"}, + _("Insert emoji") + ) + }; + emoji_button.add_css_class ("themedbutton"); + emoji_button.popover = emojichooser_popover; + + menu_button = new Gtk.MenuButton () { + icon_name = "open-menu-symbolic", + width_request = 32, + height_request = 32, + tooltip_markup = Granite.markup_accel_tooltip ( + {"M"}, + _("Preferences for this sticky note") + ) + }; + menu_button.direction = Gtk.ArrowType.UP; + menu_button.add_css_class ("themedbutton"); + + /* **** Widget **** */ + actionbar = new Gtk.ActionBar () { + hexpand = true + }; + actionbar.revealed = false; + actionbar.pack_start (new_item); + actionbar.pack_start (delete_item); + actionbar.pack_end (menu_button); + actionbar.pack_end (emoji_button); + + var handle = new Gtk.WindowHandle () { + child = actionbar + }; + + child = handle; + + // Randomize-skip emoji icon + emojichooser_popover.show.connect (on_emoji_popover); + } + + /** + * Allow control of when to respect the hide-bar setting + * StickyNoteWindow will decide itself whether to show immediately or not + */ + public void reveal_bind () { + Application.gsettings.bind ("hide-bar", actionbar, "revealed", SettingsBindFlags.INVERT_BOOLEAN); + } + + // Skip the current icon to avoid picking it twice + private void on_emoji_popover () { + debug ("Emote requested!"); + + emoji_button.set_icon_name ( + Jorts.Utils.random_emote ( + emoji_button.get_icon_name () + ) + ); + } +} diff --git a/src/Widgets/MonospaceBox.vala b/src/Widgets/MonospaceBox.vala index 895d4542..040d1a71 100644 --- a/src/Widgets/MonospaceBox.vala +++ b/src/Widgets/MonospaceBox.vala @@ -55,9 +55,7 @@ public class Jorts.MonospaceBox : Gtk.Box { mono_monospace_toggle.notify["active"].connect (on_monospace_changed); } - public void on_monospace_changed () { monospace_changed (mono_monospace_toggle.active); } - -} \ No newline at end of file +} diff --git a/src/Widgets/ZoomBox.vala b/src/Widgets/ZoomBox.vala index 8ff7bd27..0f82a336 100644 --- a/src/Widgets/ZoomBox.vala +++ b/src/Widgets/ZoomBox.vala @@ -67,4 +67,4 @@ public class Jorts.ZoomBox : Gtk.Box { zoom_default_button.clicked.connect (() => {this.zoom_changed (Zoomkind.DEFAULT_ZOOM);}); zoom_in_button.clicked.connect (() => {this.zoom_changed (Zoomkind.ZOOM_IN);}); } -} \ No newline at end of file +} diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 8b079c84..219b61ad 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -101,6 +101,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { editableheader = new Gtk.EditableLabel ("") { xalign = 0.5f, halign = Gtk.Align.CENTER, + valign = Gtk.Align.CENTER, tooltip_markup = Granite.markup_accel_tooltip ( {"L"}, _("Click to edit the title") @@ -123,7 +124,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { /****************************************/ /* LOADING */ /****************************************/ - + on_scribbly_changed (); load_data (data); @@ -271,7 +272,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { /** * Propagate the content of a NoteData into the various UI elements. Used when creating a new window - */ + */ private void load_data (NoteData data) { debug ("Loading noteData…"); diff --git a/src/meson.build b/src/meson.build index 985c81cf..4befe8d3 100644 --- a/src/meson.build +++ b/src/meson.build @@ -3,6 +3,7 @@ sources = files ( 'Objects' / 'Themes.vala', 'Objects' / 'NoteData.vala', + 'Utils' / 'ZoomConvert.vala', 'Utils' / 'Random.vala', 'Utils' / 'Libportal.vala', From 02c8fd874fd23dc41eea0a7b5986c426a964e528 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sat, 27 Sep 2025 20:21:11 +0200 Subject: [PATCH 27/38] move stuff around --- data/icons/{ => default}/128.svg | 0 data/icons/{ => default}/16.svg | 0 data/icons/{ => default}/24.svg | 0 data/icons/{ => default}/32.svg | 0 data/icons/{ => default}/48.svg | 0 data/icons/{ => default}/64.svg | 0 data/icons/{ => default}/hicolor/128.png | Bin data/icons/{ => default}/hicolor/16.png | Bin data/icons/{ => default}/hicolor/24.png | Bin data/icons/{ => default}/hicolor/256.png | Bin data/icons/{ => default}/hicolor/32.png | Bin data/icons/{ => default}/hicolor/48.png | Bin data/icons/{ => default}/hicolor/512.png | Bin data/icons/{ => default}/hicolor/64.png | Bin data/icons/{ => default}/hicolor@2/128@2.png | Bin data/icons/{ => default}/hicolor@2/16@2.png | Bin data/icons/{ => default}/hicolor@2/24@2.png | Bin data/icons/{ => default}/hicolor@2/32@2.png | Bin data/icons/{ => default}/hicolor@2/48@2.png | Bin data/icons/{ => default}/hicolor@2/64@2.png | Bin data/icons/{ => default}/scalable.svg | 0 21 files changed, 0 insertions(+), 0 deletions(-) rename data/icons/{ => default}/128.svg (100%) rename data/icons/{ => default}/16.svg (100%) rename data/icons/{ => default}/24.svg (100%) rename data/icons/{ => default}/32.svg (100%) rename data/icons/{ => default}/48.svg (100%) rename data/icons/{ => default}/64.svg (100%) rename data/icons/{ => default}/hicolor/128.png (100%) rename data/icons/{ => default}/hicolor/16.png (100%) rename data/icons/{ => default}/hicolor/24.png (100%) rename data/icons/{ => default}/hicolor/256.png (100%) rename data/icons/{ => default}/hicolor/32.png (100%) rename data/icons/{ => default}/hicolor/48.png (100%) rename data/icons/{ => default}/hicolor/512.png (100%) rename data/icons/{ => default}/hicolor/64.png (100%) rename data/icons/{ => default}/hicolor@2/128@2.png (100%) rename data/icons/{ => default}/hicolor@2/16@2.png (100%) rename data/icons/{ => default}/hicolor@2/24@2.png (100%) rename data/icons/{ => default}/hicolor@2/32@2.png (100%) rename data/icons/{ => default}/hicolor@2/48@2.png (100%) rename data/icons/{ => default}/hicolor@2/64@2.png (100%) rename data/icons/{ => default}/scalable.svg (100%) diff --git a/data/icons/128.svg b/data/icons/default/128.svg similarity index 100% rename from data/icons/128.svg rename to data/icons/default/128.svg diff --git a/data/icons/16.svg b/data/icons/default/16.svg similarity index 100% rename from data/icons/16.svg rename to data/icons/default/16.svg diff --git a/data/icons/24.svg b/data/icons/default/24.svg similarity index 100% rename from data/icons/24.svg rename to data/icons/default/24.svg diff --git a/data/icons/32.svg b/data/icons/default/32.svg similarity index 100% rename from data/icons/32.svg rename to data/icons/default/32.svg diff --git a/data/icons/48.svg b/data/icons/default/48.svg similarity index 100% rename from data/icons/48.svg rename to data/icons/default/48.svg diff --git a/data/icons/64.svg b/data/icons/default/64.svg similarity index 100% rename from data/icons/64.svg rename to data/icons/default/64.svg diff --git a/data/icons/hicolor/128.png b/data/icons/default/hicolor/128.png similarity index 100% rename from data/icons/hicolor/128.png rename to data/icons/default/hicolor/128.png diff --git a/data/icons/hicolor/16.png b/data/icons/default/hicolor/16.png similarity index 100% rename from data/icons/hicolor/16.png rename to data/icons/default/hicolor/16.png diff --git a/data/icons/hicolor/24.png b/data/icons/default/hicolor/24.png similarity index 100% rename from data/icons/hicolor/24.png rename to data/icons/default/hicolor/24.png diff --git a/data/icons/hicolor/256.png b/data/icons/default/hicolor/256.png similarity index 100% rename from data/icons/hicolor/256.png rename to data/icons/default/hicolor/256.png diff --git a/data/icons/hicolor/32.png b/data/icons/default/hicolor/32.png similarity index 100% rename from data/icons/hicolor/32.png rename to data/icons/default/hicolor/32.png diff --git a/data/icons/hicolor/48.png b/data/icons/default/hicolor/48.png similarity index 100% rename from data/icons/hicolor/48.png rename to data/icons/default/hicolor/48.png diff --git a/data/icons/hicolor/512.png b/data/icons/default/hicolor/512.png similarity index 100% rename from data/icons/hicolor/512.png rename to data/icons/default/hicolor/512.png diff --git a/data/icons/hicolor/64.png b/data/icons/default/hicolor/64.png similarity index 100% rename from data/icons/hicolor/64.png rename to data/icons/default/hicolor/64.png diff --git a/data/icons/hicolor@2/128@2.png b/data/icons/default/hicolor@2/128@2.png similarity index 100% rename from data/icons/hicolor@2/128@2.png rename to data/icons/default/hicolor@2/128@2.png diff --git a/data/icons/hicolor@2/16@2.png b/data/icons/default/hicolor@2/16@2.png similarity index 100% rename from data/icons/hicolor@2/16@2.png rename to data/icons/default/hicolor@2/16@2.png diff --git a/data/icons/hicolor@2/24@2.png b/data/icons/default/hicolor@2/24@2.png similarity index 100% rename from data/icons/hicolor@2/24@2.png rename to data/icons/default/hicolor@2/24@2.png diff --git a/data/icons/hicolor@2/32@2.png b/data/icons/default/hicolor@2/32@2.png similarity index 100% rename from data/icons/hicolor@2/32@2.png rename to data/icons/default/hicolor@2/32@2.png diff --git a/data/icons/hicolor@2/48@2.png b/data/icons/default/hicolor@2/48@2.png similarity index 100% rename from data/icons/hicolor@2/48@2.png rename to data/icons/default/hicolor@2/48@2.png diff --git a/data/icons/hicolor@2/64@2.png b/data/icons/default/hicolor@2/64@2.png similarity index 100% rename from data/icons/hicolor@2/64@2.png rename to data/icons/default/hicolor@2/64@2.png diff --git a/data/icons/scalable.svg b/data/icons/default/scalable.svg similarity index 100% rename from data/icons/scalable.svg rename to data/icons/default/scalable.svg From 6f32e51a4e0c1ab265c23370f60d74613e28dc2e Mon Sep 17 00:00:00 2001 From: teamcons Date: Sat, 27 Sep 2025 20:54:12 +0200 Subject: [PATCH 28/38] let it build --- src/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index 4befe8d3..be1d9a1a 100644 --- a/src/meson.build +++ b/src/meson.build @@ -11,7 +11,6 @@ sources = files ( 'Services' / 'Storage.vala', 'Services' / 'NoteManager.vala', 'Services' / 'Themer.vala', - 'Services' / 'Utils.vala', 'Widgets' / 'TextView.vala', 'Widgets' / 'ColorPill.vala', From 7f7dbad169daf3c49179573b63c469d4c521a8ed Mon Sep 17 00:00:00 2001 From: teamcons Date: Sat, 27 Sep 2025 21:12:26 +0200 Subject: [PATCH 29/38] add halloween theme --- data/icons/halloween/hicolor/128.png | Bin 0 -> 14012 bytes data/icons/halloween/hicolor/16.png | Bin 0 -> 834 bytes data/icons/halloween/hicolor/24.png | Bin 0 -> 1438 bytes data/icons/halloween/hicolor/32.png | Bin 0 -> 2298 bytes data/icons/halloween/hicolor/48.png | Bin 0 -> 3914 bytes data/icons/halloween/hicolor/64.png | Bin 0 -> 6055 bytes data/icons/halloween/hicolor@2/128@2.png | Bin 0 -> 33788 bytes data/icons/halloween/hicolor@2/16@2.png | Bin 0 -> 2131 bytes data/icons/halloween/hicolor@2/24@2.png | Bin 0 -> 3821 bytes data/icons/halloween/hicolor@2/32@2.png | Bin 0 -> 6408 bytes data/icons/halloween/hicolor@2/48@2.png | Bin 0 -> 10373 bytes data/icons/halloween/hicolor@2/64@2.png | Bin 0 -> 15766 bytes data/icons/halloween/scalable.svg | 483 +++++++++++++++++++++++ data/meson.build | 7 +- 14 files changed, 487 insertions(+), 3 deletions(-) create mode 100644 data/icons/halloween/hicolor/128.png create mode 100644 data/icons/halloween/hicolor/16.png create mode 100644 data/icons/halloween/hicolor/24.png create mode 100644 data/icons/halloween/hicolor/32.png create mode 100644 data/icons/halloween/hicolor/48.png create mode 100644 data/icons/halloween/hicolor/64.png create mode 100644 data/icons/halloween/hicolor@2/128@2.png create mode 100644 data/icons/halloween/hicolor@2/16@2.png create mode 100644 data/icons/halloween/hicolor@2/24@2.png create mode 100644 data/icons/halloween/hicolor@2/32@2.png create mode 100644 data/icons/halloween/hicolor@2/48@2.png create mode 100644 data/icons/halloween/hicolor@2/64@2.png create mode 100644 data/icons/halloween/scalable.svg diff --git a/data/icons/halloween/hicolor/128.png b/data/icons/halloween/hicolor/128.png new file mode 100644 index 0000000000000000000000000000000000000000..d93da3fadd1bc37c9c8e587775aacbedcf7d05ce GIT binary patch literal 14012 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 UF!9#UlV=bzl8O@5V#Y!L2kI3l-T(jq literal 0 HcmV?d00001 diff --git a/data/icons/halloween/hicolor/16.png b/data/icons/halloween/hicolor/16.png new file mode 100644 index 0000000000000000000000000000000000000000..6b5244ded5628839e59142176f29e615befc2e98 GIT binary patch literal 834 zcmV-I1HJr-P)pF8FWQhbW?9;ba!ELWdL_~cP?peYja~^aAhuUa%Y?FJQ@H10?$cA zK~y-6rITG~Q)d8%pYNRSB#k{yV;bA0f3c;bh)UJA6U1RfOGU+>={AKGNP>CT@@$kJB0ap@Ym5)MYzU81e!Ipzne z2~_zBlzRx2dsw+)HKETtxIE#b?XLnRK01jZrA{s`EuO%1dVJ1TYro;f*&y*qic4oS zMmJsO<)2}K&n5|%@1*PJe!gn{lo{fzraZKr}+Z3ocf7{#MG7Ji~?XF?b zO45BJ$gvY0sF@Mw4L6xglmcHK`FUQtd-_Q1Y&P?sk5_4#`Ec3Pwws?DNA;omc zAY!HQW-L_ZttYxJkh+E;HL_fiY|~(9V7#ZkcdkJKq!yEX(K&1D@)gVUTqOXBCfxsh zWfZeBaodh3d*8`4K4o1cGle5duNMgCk}jYUsYLq0Sjf5tAl_H!Hwn@f6mSl7RR910 M07*qoM6N<$g6?XEo&W#< literal 0 HcmV?d00001 diff --git a/data/icons/halloween/hicolor/24.png b/data/icons/halloween/hicolor/24.png new file mode 100644 index 0000000000000000000000000000000000000000..7286c6286dea8775fb6ecc9631419e7aff46e180 GIT binary patch literal 1438 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 Uc9O$+0000007*qoM6N<$f|>a}$N&HU literal 0 HcmV?d00001 diff --git a/data/icons/halloween/hicolor/48.png b/data/icons/halloween/hicolor/48.png new file mode 100644 index 0000000000000000000000000000000000000000..e05dba09289f00c6664d2ec590c5f2847124adfd GIT binary patch literal 3914 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 literal 0 HcmV?d00001 diff --git a/data/icons/halloween/hicolor@2/128@2.png b/data/icons/halloween/hicolor@2/128@2.png new file mode 100644 index 0000000000000000000000000000000000000000..940794b4fd9fd5f3e820828e645c6c1cc73e15bf GIT binary patch literal 33788 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 literal 0 HcmV?d00001 diff --git a/data/icons/halloween/hicolor@2/16@2.png b/data/icons/halloween/hicolor@2/16@2.png new file mode 100644 index 0000000000000000000000000000000000000000..66baabc35ae94e57196512a009e745c484bed240 GIT binary patch literal 2131 zcmV-Z2(0&sP)ajL176=lqP|e5LG|{QAom8N};8whzLOe zwN*jtLd#M@14>KPQkE($L6jw-kS36d5E6%gX$Z0*-iVjy?b*-I_FL||GyU*vCk7e` z6p0TVX>_mV=*<5==bSm`jL=&1We(#@MF-4JE^Mw5^R;BDp_r`%_K5&7G+AxXZ7TL& z-lkiQm5F0r@JyXpRZtndu53>6MM4@uaU#$G4JcQQ^>+-u5bqv(d|j*FIVGF6z~&k; zKU!IMT}6HQ6_w|#7Qwm&7~bFsA)wM@jJ19cv|itSB`BV*6wxf?UK`L=V2;eI~ zR4v3`5JqSnLNj|xWCCniBcx#%KD0&*e1ryca%fs#%>D`>&^_;eF#^d!IC2mH2(1wU z-IY3W-VK8(Cv(`KaIfs@T7sBVv8?_6{^FKKU5C{XL zWm@C=a~6;%V42v$6t+O190#;QJ2~WnRm{5hZiFGhmT09xxyJ<*Qc`fvIwC8+ge=$zZhHH6V_7C=EnL7i*8Uc??bn#rA#9Hfq{f{9Flqt_hoBvi zK~oxN$3dRFob1Zm*|dH?v9{#&{`T7Yakg(n^&S39eCxcMX%2TkNExi#u?zhxO68C%St)_`p1bs zc_)e8&(8oiJbq4Ias^L6{3n!BtXjU9uP!a_z6Mie}~W#N_l;%_BCF zBt9}qNwknlR-a8c7@%%WB^R$=3Bazs2M8`cA4?iV$|ZWN1xhNud39~{`uo^$!=9rj z*HAU5l*KFNlg&Ep-tj(t9Z7b-*w4zVZz1!-y+_?YJ48~-ysONaC1zp6Ts*c#+sECE z1UF2||!@V5sp$;s>_jDXYa(SVq=$ zX&LN6yZLy~N}&c~c*c^M*xZK$X&S`rBRiByymDlf(L_(`O4 z)ZX#T^afqeKSZ+mP0GSPLSAb|T#QU)Nu;u5b4Sy#)*8|i=#gREfdMjODY`r2`?3?x z`gQGkp9yePyWYFGUNlZ5(@ShyGT8nxLmgcRDe)DAa5E_k%cgzvy(C-SqC6TT;I;BW z3n_@kpVM>e@n* zi8SM5S<I)2DVnHoQu{PH^8K*4~AD>?s^-qz)?>A|v4588Z z%rEke(fLLO7#SKTlX4ED==l@@OYv5JEV;vLo7JGb;fMz*^MKx|@^HLnojIH(*^-S`u94@tQRV{&zw6JVTR7r*nq~`o>;OPdLx7 zYtwIhCINt_YsEaNS*isUoS>(ffDDQrE!cHso9>(;`@er3{}(#SabRv(Yv=#~002ov JPDHLkV1lgF`w0L5 literal 0 HcmV?d00001 diff --git a/data/icons/halloween/hicolor@2/24@2.png b/data/icons/halloween/hicolor@2/24@2.png new file mode 100644 index 0000000000000000000000000000000000000000..578472c0790aae9ec0b2a1546d3c846c10af58ac GIT binary patch literal 3821 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 Wvz#K!0`T(y000022`I@$C-w0^T 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 U+J{_VEdT%j07*qoM6N<$g603MGynhq literal 0 HcmV?d00001 diff --git a/data/icons/halloween/scalable.svg b/data/icons/halloween/scalable.svg new file mode 100644 index 00000000..8d8a172a --- /dev/null +++ b/data/icons/halloween/scalable.svg @@ -0,0 +1,483 @@ + + + + diff --git a/data/meson.build b/data/meson.build index 4bd85417..73be8b2f 100644 --- a/data/meson.build +++ b/data/meson.build @@ -29,23 +29,24 @@ i18n.merge_file( #======== ICONS ======== # Install our icons in all the required sizes +variant = 'halloween' icon_sizes = ['16', '24', '32', '48', '64', '128'] foreach i : icon_sizes install_data( - 'icons' / 'hicolor' / i + '.png', + 'icons' / variant / 'hicolor' / i + '.png', install_dir: get_option('datadir') / 'icons' / 'hicolor' / i + 'x' + i / 'apps', rename: meson.project_name() + '.png' ) install_data( - 'icons' / 'hicolor@2' / i + '@2.png', + 'icons' / variant / 'hicolor@2' / i + '@2.png', install_dir: get_option('datadir') / 'icons' / 'hicolor' / i + 'x' + i + '@2' / 'apps', rename: meson.project_name() + '.png' ) endforeach install_data( - 'icons' / 'scalable.svg', + 'icons' / variant / 'scalable.svg', install_dir: get_option('datadir') / 'icons' / 'scalable' / 'apps', rename: meson.project_name() + '.svg' ) \ No newline at end of file From 04dc485b69c5d16bfae81f12ae1832d03748d640 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 28 Sep 2025 22:47:13 +0200 Subject: [PATCH 30/38] move headerbar into the view --- src/Application.vala | 1 + src/Views/NoteView.vala | 38 +++++++++++++++++++++-------- src/Views/PopoverView.vala | 20 ++++++++-------- src/Windows/StickyNoteWindow.vala | 40 +++++++------------------------ 4 files changed, 48 insertions(+), 51 deletions(-) diff --git a/src/Application.vala b/src/Application.vala index 480416cb..729616ac 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -55,6 +55,7 @@ public class Jorts.Application : Gtk.Application { public const string ACTION_PREFIX = "app."; public const string ACTION_QUIT = "action_quit"; public const string ACTION_NEW = "action_new"; + public const string ACTION_DELETE = "action_delete"; public const string ACTION_TOGGLE_SCRIBBLY = "action_toggle_scribbly"; public const string ACTION_TOGGLE_ACTIONBAR = "action_toggle_actionbar"; public const string ACTION_SHOW_PREFERENCES = "action_show_preferences"; diff --git a/src/Views/NoteView.vala b/src/Views/NoteView.vala index 68bf2370..59e8f3c1 100644 --- a/src/Views/NoteView.vala +++ b/src/Views/NoteView.vala @@ -6,7 +6,8 @@ */ public class Jorts.NoteView : Gtk.Box { - + public Gtk.HeaderBar headerbar; + public Gtk.EditableLabel editablelabel; public Jorts.TextView textview; public Gtk.ActionBar actionbar; @@ -21,11 +22,32 @@ orientation = VERTICAL; spacing = 0; - // Define the text thingy - var scrolled = new Gtk.ScrolledWindow (); + + headerbar = new Gtk.HeaderBar () { + show_title_buttons = false + }; + headerbar.add_css_class (Granite.STYLE_CLASS_FLAT); + headerbar.add_css_class ("headertitle"); + + // Defime the label you can edit. Which is editable. + editablelabel = new Gtk.EditableLabel ("") { + xalign = 0.5f, + halign = Gtk.Align.CENTER, + valign = Gtk.Align.CENTER, + tooltip_markup = Granite.markup_accel_tooltip ( + {"L"}, + _("Click to edit the title") + ) + }; + editablelabel.add_css_class (Granite.STYLE_CLASS_TITLE_LABEL); + headerbar.set_title_widget (editablelabel); + + textview = new Jorts.TextView (); + var scrolled = new Gtk.ScrolledWindow () { + child = textview + }; - scrolled.set_child (textview); var new_item = new Gtk.Button () { icon_name = "list-add-symbolic", @@ -49,8 +71,7 @@ ) }; delete_item.add_css_class ("themedbutton"); - - + delete_item.action_name = Application.ACTION_PREFIX + Application.ACTION_DELETE; var emojichooser_popover = new Gtk.EmojiChooser (); @@ -66,10 +87,6 @@ emoji_button.add_css_class ("themedbutton"); emoji_button.popover = emojichooser_popover; - - - - menu_button = new Gtk.MenuButton () { icon_name = "open-menu-symbolic", width_request = 32, @@ -95,6 +112,7 @@ child = actionbar }; + append (headerbar); append (scrolled); append (handle); //set_focus_child (textview); diff --git a/src/Views/PopoverView.vala b/src/Views/PopoverView.vala index db6edc22..92d53a1e 100644 --- a/src/Views/PopoverView.vala +++ b/src/Views/PopoverView.vala @@ -96,16 +96,16 @@ public class Jorts.PopoverView : Gtk.Popover { /** * Switches the .monospace class depending on the note setting - */ + */ private void on_monospace_changed (bool monospace) { debug ("Updating monospace to %s".printf (monospace.to_string ())); if (monospace) { - parent_window.editableheader.add_css_class ("monospace"); + parent_window.view.editablelabel.add_css_class ("monospace"); } else { - if ("monospace" in parent_window.editableheader.css_classes) { - parent_window.editableheader.remove_css_class ("monospace"); + if ("monospace" in parent_window.view.editablelabel.css_classes) { + parent_window.view.editablelabel.remove_css_class ("monospace"); } } @@ -128,17 +128,17 @@ public class Jorts.PopoverView : Gtk.Popover { debug ("Zoom changed!"); switch (zoomkind) { - case Zoomkind.ZOOM_IN: zoom_in (); break; - case Zoomkind.DEFAULT_ZOOM: zoom_default (); break; - case Zoomkind.ZOOM_OUT: zoom_out (); break; - default: zoom_default (); break; + case Zoomkind.ZOOM_IN: zoom_in (); break; // vala-lint=double-spaces + case Zoomkind.DEFAULT_ZOOM: zoom_default (); break; // vala-lint=double-spaces + case Zoomkind.ZOOM_OUT: zoom_out (); break; // vala-lint=double-spaces + default: zoom_default (); break; // vala-lint=double-spaces } ((Jorts.Application)parent_window.application).manager.save_all (); } /** * Wrapper to check an increase doesnt go above limit - */ + */ public void zoom_in () { if ((_old_zoom + 20) <= Jorts.Constants.ZOOM_MAX) { zoom = _old_zoom + 20; @@ -178,7 +178,7 @@ public class Jorts.PopoverView : Gtk.Popover { parent_window.add_css_class (Jorts.Utils.zoom_to_class ( new_zoom)); // Adapt headerbar size to avoid weird flickering - parent_window.headerbar.height_request = Jorts.Utils.zoom_to_ui_size (_old_zoom); + parent_window.view.headerbar.height_request = Jorts.Utils.zoom_to_ui_size (_old_zoom); // Reflect the number in the popover font_size_box.zoom = new_zoom; diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 219b61ad..f7661729 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -16,8 +16,6 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { public Gtk.Settings gtk_settings; - public Gtk.HeaderBar headerbar; - public Gtk.EditableLabel editableheader; public Jorts.NoteView view; private PopoverView popover; public TextView textview; @@ -30,7 +28,6 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { private static uint debounce_timer_id; private const string ACTION_PREFIX = "app."; - private const string ACTION_DELETE = "action_delete"; private const string ACTION_SHOW_EMOJI = "action_show_emoji"; private const string ACTION_SHOW_MENU = "action_show_menu"; private const string ACTION_FOCUS_TITLE = "action_focus_title"; @@ -52,7 +49,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { public static Gee.MultiMap action_accelerators; private const GLib.ActionEntry[] ACTION_ENTRIES = { - { ACTION_DELETE, action_delete}, + { Application.ACTION_DELETE, action_delete}, { ACTION_SHOW_EMOJI, action_show_emoji}, { ACTION_SHOW_MENU, action_show_menu}, { ACTION_FOCUS_TITLE, action_focus_title}, @@ -90,29 +87,10 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { /* HEADERBAR */ /*****************************************/ - headerbar = new Gtk.HeaderBar () { - show_title_buttons = false - }; - headerbar.add_css_class (Granite.STYLE_CLASS_FLAT); - headerbar.add_css_class ("headertitle"); - - - // Defime the label you can edit. Which is editable. - editableheader = new Gtk.EditableLabel ("") { - xalign = 0.5f, - halign = Gtk.Align.CENTER, - valign = Gtk.Align.CENTER, - tooltip_markup = Granite.markup_accel_tooltip ( - {"L"}, - _("Click to edit the title") - ) - }; - editableheader.add_css_class (Granite.STYLE_CLASS_TITLE_LABEL); - headerbar.set_title_widget (editableheader); - this.set_titlebar (headerbar); + // No + titlebar = new Gtk.Grid () {visible = false}; view = new NoteView (); - view.delete_item.action_name = ACTION_PREFIX + ACTION_DELETE; textview = view.textview; popover = new Jorts.PopoverView (this); @@ -135,7 +113,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { debug ("Built UI. Lets do connects and binds"); // Save when title or text have changed - editableheader.changed.connect (on_editable_changed); + view.editablelabel.changed.connect (on_editable_changed); view.textview.buffer.changed.connect (debounce_save); // Use the color theme of this sticky note when focused @@ -199,7 +177,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { * Simple handler for the EditableLabel */ private void on_editable_changed () { - title = editableheader.text + _(" - Jorts"); + title = view.editablelabel.text + _(" - Jorts"); debounce_save (); } @@ -257,7 +235,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { this.get_default_size (out width, out height); var data = new NoteData ( - editableheader.text, + view.editablelabel.text, popover.color, content, popover.monospace, @@ -277,8 +255,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { debug ("Loading noteData…"); set_default_size (data.width, data.height); - editableheader.text = data.title; - title = editableheader.text + _(" - Jorts"); + view.editablelabel.text = data.title; + title = view.editablelabel.text + _(" - Jorts"); view.textview.buffer.text = data.content; popover.zoom = data.zoom; @@ -286,7 +264,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { popover.color = data.theme; } - private void action_focus_title () {set_focus (editableheader); editableheader.editing = true;} + private void action_focus_title () {set_focus (view.editablelabel); view.editablelabel.editing = true;} private void action_show_emoji () {view.emoji_button.activate ();} private void action_show_menu () {view.menu_button.activate ();} private void action_delete () {((Jorts.Application)this.application).manager.delete_note (this);} From 4233f0e0124773fd0b7f97b1c537d74d35f02c10 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 28 Sep 2025 23:03:22 +0200 Subject: [PATCH 31/38] Move monospacing into noteview --- src/Views/NoteView.vala | 36 ++++++++++++++++++++++++------------ src/Views/PopoverView.vala | 13 ++----------- 2 files changed, 26 insertions(+), 23 deletions(-) diff --git a/src/Views/NoteView.vala b/src/Views/NoteView.vala index 59e8f3c1..033bc331 100644 --- a/src/Views/NoteView.vala +++ b/src/Views/NoteView.vala @@ -6,23 +6,26 @@ */ public class Jorts.NoteView : Gtk.Box { - public Gtk.HeaderBar headerbar; - public Gtk.EditableLabel editablelabel; - public Jorts.TextView textview; - public Gtk.ActionBar actionbar; + public Gtk.HeaderBar headerbar; + public Gtk.EditableLabel editablelabel; + public Jorts.TextView textview; + public Gtk.ActionBar actionbar; - public Gtk.Button delete_item; + public Gtk.MenuButton emoji_button; + public Gtk.EmojiChooser emojichooser_popover; - public Gtk.MenuButton emoji_button; - public Gtk.EmojiChooser emojichooser_popover; + public Gtk.MenuButton menu_button; - public Gtk.MenuButton menu_button; + + public bool monospace { + get { return textview.monospace;} + set { mono_set (value);} + } construct { orientation = VERTICAL; spacing = 0; - headerbar = new Gtk.HeaderBar () { show_title_buttons = false }; @@ -42,13 +45,11 @@ editablelabel.add_css_class (Granite.STYLE_CLASS_TITLE_LABEL); headerbar.set_title_widget (editablelabel); - textview = new Jorts.TextView (); var scrolled = new Gtk.ScrolledWindow () { child = textview }; - var new_item = new Gtk.Button () { icon_name = "list-add-symbolic", width_request = 32, @@ -61,7 +62,7 @@ new_item.action_name = Application.ACTION_PREFIX + Application.ACTION_NEW; new_item.add_css_class ("themedbutton"); - delete_item = new Gtk.Button () { + var delete_item = new Gtk.Button () { icon_name = "edit-delete-symbolic", width_request = 32, height_request = 32, @@ -147,4 +148,15 @@ ); } + private void mono_set (bool if_mono) { + if (if_mono) { + editablelabel.add_css_class ("monospace"); + } else { + if ("monospace" in editablelabel.css_classes) { + editablelabel.remove_css_class ("monospace"); + } + } + textview.monospace = if_mono; + } + } diff --git a/src/Views/PopoverView.vala b/src/Views/PopoverView.vala index 92d53a1e..f7ad8928 100644 --- a/src/Views/PopoverView.vala +++ b/src/Views/PopoverView.vala @@ -100,20 +100,11 @@ public class Jorts.PopoverView : Gtk.Popover { private void on_monospace_changed (bool monospace) { debug ("Updating monospace to %s".printf (monospace.to_string ())); - if (monospace) { - parent_window.view.editablelabel.add_css_class ("monospace"); - - } else { - if ("monospace" in parent_window.view.editablelabel.css_classes) { - parent_window.view.editablelabel.remove_css_class ("monospace"); - } - - } - parent_window.view.textview.monospace = monospace; + parent_window.view.monospace = monospace; monospace_box.monospace = monospace; Jorts.NoteData.latest_mono = monospace; - ((Jorts.Application)parent_window.application).manager.save_all (); + ((Jorts.Application)parent_window.application).manager.save_all (); } From a46c9505727d7394da936b3c2bec9afaa5ced9ef Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 28 Sep 2025 23:48:03 +0200 Subject: [PATCH 32/38] Use a dedicated ActionBar --- po/POTFILES | 3 +- src/Views/NoteView.vala | 73 +++---------------------------- src/Widgets/ActionBar.vala | 8 ++-- src/Windows/StickyNoteWindow.vala | 4 +- src/meson.build | 1 + 5 files changed, 16 insertions(+), 73 deletions(-) diff --git a/po/POTFILES b/po/POTFILES index 750763ea..18f9ca1a 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -2,8 +2,9 @@ src/Views/NoteView.vala src/Widgets/TextView.vala src/Views/PopoverView.vala src/Widgets/ColorBox.vala -src/Widgets/MonospaceBox.vala src/Widgets/ZoomBox.vala +src/Widgets/MonospaceBox.vala +src/Widgets/ActionBar.vala src/Objects/Themes.vala src/Utils/ZoomConvert.vala src/Utils/Random.vala diff --git a/src/Views/NoteView.vala b/src/Views/NoteView.vala index 033bc331..79402b5e 100644 --- a/src/Views/NoteView.vala +++ b/src/Views/NoteView.vala @@ -9,14 +9,12 @@ public Gtk.HeaderBar headerbar; public Gtk.EditableLabel editablelabel; public Jorts.TextView textview; - public Gtk.ActionBar actionbar; + public Jorts.ActionBar actionbar; public Gtk.MenuButton emoji_button; public Gtk.EmojiChooser emojichooser_popover; - public Gtk.MenuButton menu_button; - public bool monospace { get { return textview.monospace;} set { mono_set (value);} @@ -50,72 +48,14 @@ child = textview }; - var new_item = new Gtk.Button () { - icon_name = "list-add-symbolic", - width_request = 32, - height_request = 32, - tooltip_markup = Granite.markup_accel_tooltip ( - {"n"}, - _("New sticky note") - ) - }; - new_item.action_name = Application.ACTION_PREFIX + Application.ACTION_NEW; - new_item.add_css_class ("themedbutton"); - - var delete_item = new Gtk.Button () { - icon_name = "edit-delete-symbolic", - width_request = 32, - height_request = 32, - tooltip_markup = Granite.markup_accel_tooltip ( - {"w"}, - _("Delete sticky note") - ) - }; - delete_item.add_css_class ("themedbutton"); - delete_item.action_name = Application.ACTION_PREFIX + Application.ACTION_DELETE; - - var emojichooser_popover = new Gtk.EmojiChooser (); - - emoji_button = new Gtk.MenuButton () { - icon_name = Jorts.Utils.random_emote (), - width_request = 32, - height_request = 32, - tooltip_markup = Granite.markup_accel_tooltip ( - {"period"}, - _("Insert emoji") - ) - }; - emoji_button.add_css_class ("themedbutton"); - emoji_button.popover = emojichooser_popover; - - menu_button = new Gtk.MenuButton () { - icon_name = "open-menu-symbolic", - width_request = 32, - height_request = 32, - tooltip_markup = Granite.markup_accel_tooltip ( - {"M"}, - _("Preferences for this sticky note") - ) - }; - menu_button.direction = Gtk.ArrowType.UP; - menu_button.add_css_class ("themedbutton"); - - actionbar = new Gtk.ActionBar () { - hexpand = true - }; - actionbar.revealed = false; - actionbar.pack_start (new_item); - actionbar.pack_start (delete_item); - actionbar.pack_end (menu_button); - actionbar.pack_end (emoji_button); - - var handle = new Gtk.WindowHandle () { - child = actionbar - }; + actionbar = new Jorts.ActionBar (); + emoji_button = actionbar.emoji_button; + emojichooser_popover = actionbar.emojichooser_popover; + menu_button = actionbar.menu_button; append (headerbar); append (scrolled); - append (handle); + append (actionbar); //set_focus_child (textview); @@ -158,5 +98,4 @@ } textview.monospace = if_mono; } - } diff --git a/src/Widgets/ActionBar.vala b/src/Widgets/ActionBar.vala index 6ee9cb8f..662ce252 100644 --- a/src/Widgets/ActionBar.vala +++ b/src/Widgets/ActionBar.vala @@ -15,6 +15,7 @@ public Gtk.MenuButton emoji_button; public Gtk.EmojiChooser emojichooser_popover; public Gtk.MenuButton menu_button; + public Gtk.WindowHandle handle; construct { @@ -31,7 +32,7 @@ new_item.action_name = Application.ACTION_PREFIX + Application.ACTION_NEW; new_item.add_css_class ("themedbutton"); - delete_item = new Gtk.Button () { + var delete_item = new Gtk.Button () { icon_name = "edit-delete-symbolic", width_request = 32, height_request = 32, @@ -41,6 +42,7 @@ ) }; delete_item.add_css_class ("themedbutton"); + delete_item.action_name = Application.ACTION_PREFIX + Application.ACTION_DELETE; /* **** RIGHT **** */ emojichooser_popover = new Gtk.EmojiChooser (); @@ -79,7 +81,7 @@ actionbar.pack_end (menu_button); actionbar.pack_end (emoji_button); - var handle = new Gtk.WindowHandle () { + handle = new Gtk.WindowHandle () { child = actionbar }; @@ -94,7 +96,7 @@ * StickyNoteWindow will decide itself whether to show immediately or not */ public void reveal_bind () { - Application.gsettings.bind ("hide-bar", actionbar, "revealed", SettingsBindFlags.INVERT_BOOLEAN); + Application.gsettings.bind ("hide-bar", this.actionbar, "revealed", SettingsBindFlags.INVERT_BOOLEAN); } // Skip the current icon to avoid picking it twice diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index f7661729..29e0b511 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -129,7 +129,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { } else { Application.gsettings.bind ( "hide-bar", - view.actionbar, + view.actionbar.actionbar, "revealed", SettingsBindFlags.INVERT_BOOLEAN); } @@ -148,7 +148,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { Timeout.add_once (1000, () => { Application.gsettings.bind ( "hide-bar", - view.actionbar, + view.actionbar.actionbar, "revealed", SettingsBindFlags.INVERT_BOOLEAN); }); diff --git a/src/meson.build b/src/meson.build index be1d9a1a..fcd3c0b9 100644 --- a/src/meson.build +++ b/src/meson.build @@ -17,6 +17,7 @@ sources = files ( 'Widgets' / 'ColorBox.vala', 'Widgets' / 'ZoomBox.vala', 'Widgets' / 'MonospaceBox.vala', + 'Widgets' / 'ActionBar.vala', 'Views' / 'PopoverView.vala', 'Views' / 'PreferencesView.vala', From 2e95bac5bb3e8eaea04fb2f5133b35b57f732b69 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 28 Sep 2025 23:52:50 +0200 Subject: [PATCH 33/38] Move popover widgets in a dedicated folder --- po/POTFILES | 6 +++--- src/Widgets/{ => PopoverWidgets}/ColorBox.vala | 0 src/Widgets/{ => PopoverWidgets}/ColorPill.vala | 0 src/Widgets/{ => PopoverWidgets}/MonospaceBox.vala | 0 src/Widgets/{ => PopoverWidgets}/ZoomBox.vala | 0 src/meson.build | 11 ++++++----- 6 files changed, 9 insertions(+), 8 deletions(-) rename src/Widgets/{ => PopoverWidgets}/ColorBox.vala (100%) rename src/Widgets/{ => PopoverWidgets}/ColorPill.vala (100%) rename src/Widgets/{ => PopoverWidgets}/MonospaceBox.vala (100%) rename src/Widgets/{ => PopoverWidgets}/ZoomBox.vala (100%) diff --git a/po/POTFILES b/po/POTFILES index 18f9ca1a..de619e83 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -1,10 +1,10 @@ src/Views/NoteView.vala src/Widgets/TextView.vala src/Views/PopoverView.vala -src/Widgets/ColorBox.vala -src/Widgets/ZoomBox.vala -src/Widgets/MonospaceBox.vala src/Widgets/ActionBar.vala +src/Widgets/PopoverWidgets/ColorBox.vala +src/Widgets/PopoverWidgets/MonospaceBox.vala +src/Widgets/PopoverWidgets/ZoomBox.vala src/Objects/Themes.vala src/Utils/ZoomConvert.vala src/Utils/Random.vala diff --git a/src/Widgets/ColorBox.vala b/src/Widgets/PopoverWidgets/ColorBox.vala similarity index 100% rename from src/Widgets/ColorBox.vala rename to src/Widgets/PopoverWidgets/ColorBox.vala diff --git a/src/Widgets/ColorPill.vala b/src/Widgets/PopoverWidgets/ColorPill.vala similarity index 100% rename from src/Widgets/ColorPill.vala rename to src/Widgets/PopoverWidgets/ColorPill.vala diff --git a/src/Widgets/MonospaceBox.vala b/src/Widgets/PopoverWidgets/MonospaceBox.vala similarity index 100% rename from src/Widgets/MonospaceBox.vala rename to src/Widgets/PopoverWidgets/MonospaceBox.vala diff --git a/src/Widgets/ZoomBox.vala b/src/Widgets/PopoverWidgets/ZoomBox.vala similarity index 100% rename from src/Widgets/ZoomBox.vala rename to src/Widgets/PopoverWidgets/ZoomBox.vala diff --git a/src/meson.build b/src/meson.build index fcd3c0b9..f07181b9 100644 --- a/src/meson.build +++ b/src/meson.build @@ -13,17 +13,18 @@ sources = files ( 'Services' / 'Themer.vala', 'Widgets' / 'TextView.vala', - 'Widgets' / 'ColorPill.vala', - 'Widgets' / 'ColorBox.vala', - 'Widgets' / 'ZoomBox.vala', - 'Widgets' / 'MonospaceBox.vala', 'Widgets' / 'ActionBar.vala', + 'Widgets' / 'PopoverWidgets' / 'ColorPill.vala', + 'Widgets' / 'PopoverWidgets' / 'ColorBox.vala', + 'Widgets' / 'PopoverWidgets' / 'MonospaceBox.vala', + 'Widgets' / 'PopoverWidgets' / 'ZoomBox.vala', + 'Views' / 'PopoverView.vala', 'Views' / 'PreferencesView.vala', 'Views' / 'NoteView.vala', - 'Windows' / 'PreferenceWindow.vala', + 'Windows' / 'PreferenceWindow.vala', 'Windows' / 'StickyNoteWindow.vala', 'Application.vala', From c75c5fb2d0ea90c6c0c9fae1fdefd600a4db0f3b Mon Sep 17 00:00:00 2001 From: teamcons Date: Mon, 29 Sep 2025 19:03:54 +0200 Subject: [PATCH 34/38] ensure RedactedScript --- io.github.ellie_commons.jorts.flathub.yml | 2 +- io.github.ellie_commons.jorts.yml | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/io.github.ellie_commons.jorts.flathub.yml b/io.github.ellie_commons.jorts.flathub.yml index 51d775fa..90fceab3 100644 --- a/io.github.ellie_commons.jorts.flathub.yml +++ b/io.github.ellie_commons.jorts.flathub.yml @@ -26,7 +26,7 @@ cleanup: - '*.a' modules: -# Needed for the Scribbly mode + # Needed for the Scribbly mode - name: RedactedScript buildsystem: simple build-commands: diff --git a/io.github.ellie_commons.jorts.yml b/io.github.ellie_commons.jorts.yml index a29edc0c..305040bc 100644 --- a/io.github.ellie_commons.jorts.yml +++ b/io.github.ellie_commons.jorts.yml @@ -23,6 +23,29 @@ cleanup: - '*.a' modules: + # Needed for the Scribbly mode + # It should be present by default on elementary OS, but better not assume it is the case + - name: RedactedScript + buildsystem: simple + build-commands: + - install -Dm0644 RedactedScript-Regular.ttf -t ${FLATPAK_DEST}/share/fonts + - install -Dm0644 OFL.txt -t ${FLATPAK_DEST}/share/doc/redacted-font + - install -Dm0644 AUTHORS.txt -t ${FLATPAK_DEST}/share/doc/redacted-font + - install -Dm0644 README.md -t ${FLATPAK_DEST}/share/doc/redacted-font + sources: + - type: file + url: https://github.com/christiannaths/redacted-font/raw/63e542017bab347ba9be54d7d99b99d4754c3d97/RedactedScript/fonts/ttf/RedactedScript-Regular.ttf + sha256: 1ebaab9642a2f43fa33f449760469903143fd1d08b2433eb6c15e28602d9360d + - type: file + url: https://raw.githubusercontent.com/christiannaths/redacted-font/284dfb0397d1911c3388f72389f08b3c13446134/OFL.txt + sha256: ed836da2ff14b9b2d04001057e03c0531afdd2626bf66a612b17124589f58efa + - type: file + url: https://raw.githubusercontent.com/christiannaths/redacted-font/284dfb0397d1911c3388f72389f08b3c13446134/AUTHORS.txt + sha256: 84977eeb6e582a6d10bea0eda40e1c6dfdc8904309c6011932a9e2632c727043 + - type: file + url: https://raw.githubusercontent.com/christiannaths/redacted-font/284dfb0397d1911c3388f72389f08b3c13446134/README.md + sha256: e594f7f6bf03f7b11897d219184e215466cdfb9a8268b54cb7d5a626482dd722 + - name: jorts buildsystem: meson sources: From 185b2aabe0531fa5e6de09f633c2482d7e15677a Mon Sep 17 00:00:00 2001 From: teamcons Date: Mon, 29 Sep 2025 21:07:33 +0200 Subject: [PATCH 35/38] Simplify a bit the scribble handling and introduce an editablelabel --- data/Application.css | 3 +- po/POTFILES | 1 + src/Views/NoteView.vala | 41 +++++++++------- src/Widgets/EditableLabel.vala | 78 +++++++++++++++++++++++++++++++ src/Widgets/TextView.vala | 66 ++++++++++++++++---------- src/Windows/StickyNoteWindow.vala | 54 ++++++++++----------- src/meson.build | 1 + 7 files changed, 174 insertions(+), 70 deletions(-) create mode 100644 src/Widgets/EditableLabel.vala diff --git a/data/Application.css b/data/Application.css index fc7fe9ce..2d20487c 100644 --- a/data/Application.css +++ b/data/Application.css @@ -66,8 +66,7 @@ actionbar .themedbutton:focus { } /* Obfuscate note */ -window.scribbly textview, -window.scribbly editablelabel { +.scribbly { font-family: "Redacted Script"; } diff --git a/po/POTFILES b/po/POTFILES index de619e83..9732ea56 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -1,4 +1,5 @@ src/Views/NoteView.vala +src/Widgets/EditableLabel.vala src/Widgets/TextView.vala src/Views/PopoverView.vala src/Widgets/ActionBar.vala diff --git a/src/Views/NoteView.vala b/src/Views/NoteView.vala index 79402b5e..b1c170d7 100644 --- a/src/Views/NoteView.vala +++ b/src/Views/NoteView.vala @@ -7,7 +7,7 @@ public class Jorts.NoteView : Gtk.Box { public Gtk.HeaderBar headerbar; - public Gtk.EditableLabel editablelabel; + public Jorts.EditableLabel editablelabel; public Jorts.TextView textview; public Jorts.ActionBar actionbar; @@ -20,6 +20,21 @@ set { mono_set (value);} } + public bool scribbly { + get { return textview.scribbly;} + set { scribbly_set (value);} + } + + public string title { + owned get { return editablelabel.text;} + set { editablelabel.text = value;} + } + + public string content { + owned get { return textview.text;} + set { textview.text = value;} + } + construct { orientation = VERTICAL; spacing = 0; @@ -31,16 +46,7 @@ headerbar.add_css_class ("headertitle"); // Defime the label you can edit. Which is editable. - editablelabel = new Gtk.EditableLabel ("") { - xalign = 0.5f, - halign = Gtk.Align.CENTER, - valign = Gtk.Align.CENTER, - tooltip_markup = Granite.markup_accel_tooltip ( - {"L"}, - _("Click to edit the title") - ) - }; - editablelabel.add_css_class (Granite.STYLE_CLASS_TITLE_LABEL); + editablelabel = new Jorts.EditableLabel (); headerbar.set_title_widget (editablelabel); textview = new Jorts.TextView (); @@ -89,13 +95,12 @@ } private void mono_set (bool if_mono) { - if (if_mono) { - editablelabel.add_css_class ("monospace"); - } else { - if ("monospace" in editablelabel.css_classes) { - editablelabel.remove_css_class ("monospace"); - } - } + editablelabel.monospace = if_mono; textview.monospace = if_mono; } + + private void scribbly_set (bool if_scribbly) { + editablelabel.scribbly = if_scribbly; + textview.scribbly = if_scribbly; + } } diff --git a/src/Widgets/EditableLabel.vala b/src/Widgets/EditableLabel.vala new file mode 100644 index 00000000..14ad5f9c --- /dev/null +++ b/src/Widgets/EditableLabel.vala @@ -0,0 +1,78 @@ +/* + * SPDX-License-Identifier: GPL-3.0-or-later + * SPDX-FileCopyrightText: 2017-2024 Lains + * 2025 Stella & Charlie (teamcons.carrd.co) + * 2025 Contributions from the ellie_Commons community (github.com/ellie-commons/) + */ + +/** +* A subclass of Gtk.EditableLabel, incorporating some conveniences +*/ +public class Jorts.EditableLabel : Granite.Bin { + + private Gtk.EditableLabel editablelabel; + public signal void changed (); + + public string text { + owned get { return editablelabel.text;} + set { editablelabel.text = value;} + } + + public bool editing { + get { return editablelabel.editing;} + set { editablelabel.editing = value;} + } + + public bool monospace { + get { return "monospace" in this.css_classes;} + set { mono_set (value);} + } + + public bool scribbly { + get { return "scribbly" in this.css_classes;} + set { scribbly_set (value);} + } + + construct { + editablelabel = new Gtk.EditableLabel ("") { + xalign = 0.5f, + halign = Gtk.Align.CENTER, + valign = Gtk.Align.CENTER, + tooltip_markup = Granite.markup_accel_tooltip ( + {"L"}, + _("Click to edit the title") + ) + }; + editablelabel.add_css_class (Granite.STYLE_CLASS_TITLE_LABEL); + child = editablelabel; + + editablelabel.changed.connect (repeat_change); + } + + /** + * Not using a lambda as they tend to memory leak + */ + private void repeat_change () {changed ();} + + private void mono_set (bool if_mono) { + if (if_mono) { + this.add_css_class ("monospace"); + + } else { + if ("monospace" in this.css_classes) { + this.remove_css_class ("monospace"); + } + } + } + + private void scribbly_set (bool if_scribbly) { + if (if_scribbly) { + this.add_css_class ("scribbly"); + + } else { + if ("scribbly" in this.css_classes) { + this.remove_css_class ("scribbly"); + } + } + } +} diff --git a/src/Widgets/TextView.vala b/src/Widgets/TextView.vala index 3b0c9dc2..5acd473a 100644 --- a/src/Widgets/TextView.vala +++ b/src/Widgets/TextView.vala @@ -11,34 +11,52 @@ */ public class Jorts.TextView : Granite.HyperTextView { - public string text { - owned get {return buffer.text;} - set {buffer.text = value;} - } + public string text { + owned get {return buffer.text;} + set {buffer.text = value;} + } - construct { - buffer = new Gtk.TextBuffer (null); - bottom_margin = 10; - left_margin = 10; - right_margin = 10; - top_margin = 5; + public bool scribbly { + get { return "scribbly" in this.css_classes;} + set { scribbly_set (value);} + } - set_hexpand (true); - set_vexpand (true); - set_wrap_mode (Gtk.WrapMode.WORD_CHAR); - } + construct { + buffer = new Gtk.TextBuffer (null); + bottom_margin = 10; + left_margin = 10; + right_margin = 10; + top_margin = 5; + + set_hexpand (true); + set_vexpand (true); + set_wrap_mode (Gtk.WrapMode.WORD_CHAR); + + //Application.gsettings.bind ("scribbly-mode-active", this, "scribbly", SettingsBindFlags.DEFAULT); + } + + public void paste () { + var clipboard = Gdk.Display.get_default ().get_clipboard (); + clipboard.read_text_async.begin ((null), (obj, res) => { + + try { + var pasted_text = clipboard.read_text_async.end (res); + this.buffer.text = pasted_text; - public void paste () { - var clipboard = Gdk.Display.get_default ().get_clipboard (); - clipboard.read_text_async.begin ((null), (obj, res) => { - try { + } catch (Error e) { + print ("Cannot access clipboard: " + e.message); + } + }); + } - var pasted_text = clipboard.read_text_async.end (res); - this.buffer.text = pasted_text; + private void scribbly_set (bool if_scribbly) { + if (if_scribbly) { + this.add_css_class ("scribbly"); - } catch (Error e) { - print ("Cannot access clipboard: " + e.message); - } - }); + } else { + if ("scribbly" in this.css_classes) { + this.remove_css_class ("scribbly"); + } } + } } diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 29e0b511..cf45b65e 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -120,8 +120,10 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { this.notify["is-active"].connect (on_focus_changed); //The application tells us the squiffly state has changed! + on_scribbly_changed (); Application.gsettings.changed["scribbly-mode-active"].connect (on_scribbly_changed); + // Respect animation settings for showing ui elements if (Gtk.Settings.get_default ().gtk_enable_animations && (!Application.gsettings.get_boolean ("hide-bar"))) { show.connect_after (delayed_show); @@ -182,43 +184,45 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { } /** - * Handler for scribbly mode settings changed + * Changes the stylesheet accents to the notes color + * Add or remove the Redacted font if the setting is active + */ + private void on_focus_changed () { + debug ("Focus changed!"); + + if (this.is_active) { + var stylesheet = "io.elementary.stylesheet." + popover.color.to_string ().ascii_down (); + gtk_settings.gtk_theme_name = stylesheet; + } + } + + /** + * Connect-disconnect the whole manage text being scribbled */ private void on_scribbly_changed () { debug ("Scribbly mode changed!"); if (Application.gsettings.get_boolean ("scribbly-mode-active")) { - if (this.is_active == false) { - this.add_css_class ("scribbly"); - } + this.notify["is-active"].connect (focus_scribble_unscribble); } else { - if (this.is_active == false) { - this.remove_css_class ("scribbly"); - } + this.notify["is-active"].disconnect (focus_scribble_unscribble); + view.scribbly = false; } } /** - * Changes the stylesheet accents to the notes color - * Add or remove the Redacted font if the setting is active + * Handler connected only when scribbly mode is active + * It just hides or show depending on focus */ - private void on_focus_changed () { - debug ("Focus changed!"); + private void focus_scribble_unscribble () { + debug ("Scribbly mode changed!"); if (this.is_active) { - var stylesheet = "io.elementary.stylesheet." + popover.color.to_string ().ascii_down (); - gtk_settings.gtk_theme_name = stylesheet; - } + view.scribbly = false; - if (Application.gsettings.get_boolean ("scribbly-mode-active")) { - if (this.is_active) { - this.remove_css_class ("scribbly"); - } else { - this.add_css_class ("scribbly"); - } - } else if ("scribbly" in this.css_classes) { - this.remove_css_class ("scribbly"); + } else { + view.scribbly = true; } } @@ -229,15 +233,13 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { public NoteData packaged () { debug ("Packaging into a noteData…"); - var content = this.view.textview.buffer.text; - int width ; int height; this.get_default_size (out width, out height); var data = new NoteData ( - view.editablelabel.text, + view.title, popover.color, - content, + view.content, popover.monospace, popover.zoom, width, diff --git a/src/meson.build b/src/meson.build index f07181b9..1a98e85a 100644 --- a/src/meson.build +++ b/src/meson.build @@ -12,6 +12,7 @@ sources = files ( 'Services' / 'NoteManager.vala', 'Services' / 'Themer.vala', + 'Widgets' / 'EditableLabel.vala', 'Widgets' / 'TextView.vala', 'Widgets' / 'ActionBar.vala', From bbd27a81978ec26bb55dac6d169f26171cd29298 Mon Sep 17 00:00:00 2001 From: teamcons Date: Mon, 29 Sep 2025 21:08:29 +0200 Subject: [PATCH 36/38] Quicker delay --- src/Windows/StickyNoteWindow.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index cf45b65e..8eb3c098 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -147,7 +147,7 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { * This is more for the Aesthetic */ private void delayed_show () { - Timeout.add_once (1000, () => { + Timeout.add_once (750, () => { Application.gsettings.bind ( "hide-bar", view.actionbar.actionbar, From 8ca74638a75cffb87b0f3f1a4f8ba4651c57bc97 Mon Sep 17 00:00:00 2001 From: teamcons Date: Mon, 29 Sep 2025 21:16:02 +0200 Subject: [PATCH 37/38] make sure there is no leftover state from toggling scribbly mode --- src/Windows/StickyNoteWindow.vala | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Windows/StickyNoteWindow.vala b/src/Windows/StickyNoteWindow.vala index 8eb3c098..06a39cd9 100644 --- a/src/Windows/StickyNoteWindow.vala +++ b/src/Windows/StickyNoteWindow.vala @@ -204,6 +204,8 @@ public class Jorts.StickyNoteWindow : Gtk.ApplicationWindow { if (Application.gsettings.get_boolean ("scribbly-mode-active")) { this.notify["is-active"].connect (focus_scribble_unscribble); + view.scribbly = true; + } else { this.notify["is-active"].disconnect (focus_scribble_unscribble); From 1fbd3bc31043a1cb5aec421f9ecfe72b8efc62ba Mon Sep 17 00:00:00 2001 From: teamcons Date: Mon, 29 Sep 2025 21:52:05 +0200 Subject: [PATCH 38/38] update PO files --- po/POTFILES | 3 +- po/bn.po | 322 +++++++++++++------------- po/cs.po | 326 +++++++++++++------------- po/da.po | 324 +++++++++++++------------- po/de.po | 324 +++++++++++++------------- po/el.po | 324 +++++++++++++------------- po/es.po | 326 +++++++++++++------------- po/extra/bn.po | 204 ++++++++-------- po/extra/cs.po | 206 +++++++++-------- po/extra/da.po | 206 +++++++++-------- po/extra/de.po | 206 +++++++++-------- po/extra/el.po | 207 +++++++++-------- po/extra/es.po | 206 +++++++++-------- po/extra/extra.pot | 204 ++++++++-------- po/extra/fi.po | 206 +++++++++-------- po/extra/fil.po | 204 ++++++++-------- po/extra/fr.po | 206 +++++++++-------- po/extra/hi.po | 204 ++++++++-------- po/extra/it.po | 206 +++++++++-------- po/extra/ja.po | 206 +++++++++-------- po/extra/lt.po | 206 +++++++++-------- po/extra/nb.po | 206 +++++++++-------- po/extra/nl.po | 206 +++++++++-------- po/extra/no.po | 204 ++++++++-------- po/extra/pl.po | 206 +++++++++-------- po/extra/pt.po | 206 +++++++++-------- po/extra/pt_br.po | 206 +++++++++-------- po/extra/ru.po | 206 +++++++++-------- po/extra/sk.po | 206 +++++++++-------- po/extra/sv.po | 206 +++++++++-------- po/extra/tr.po | 206 +++++++++-------- po/extra/uk.po | 206 +++++++++-------- po/extra/zh.po | 206 +++++++++-------- po/fi.po | 326 +++++++++++++------------- po/fil.po | 322 +++++++++++++------------- po/fr.po | 320 ++++++++++++------------- po/hi.po | 322 +++++++++++++------------- po/io.github.ellie_commons.jorts.pot | 320 ++++++++++++------------- po/it.po | 320 ++++++++++++------------- po/ja.po | 320 ++++++++++++------------- po/lt.po | 322 +++++++++++++------------- po/nb.po | 326 +++++++++++++------------- po/nl.po | 326 +++++++++++++------------- po/no.po | 334 ++++++++++++++------------- po/pl.po | 324 +++++++++++++------------- po/pt.po | 326 +++++++++++++------------- po/pt_br.po | 326 +++++++++++++------------- po/ru.po | 320 ++++++++++++------------- po/sk.po | 326 +++++++++++++------------- po/sv.po | 326 +++++++++++++------------- po/tr.po | 324 +++++++++++++------------- po/uk.po | 326 +++++++++++++------------- po/zh.po | 326 +++++++++++++------------- 53 files changed, 6988 insertions(+), 6790 deletions(-) diff --git a/po/POTFILES b/po/POTFILES index 9732ea56..b565b1d4 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -13,5 +13,4 @@ src/Utils/Libportal.vala src/Views/PreferencesView.vala src/Windows/StickyNoteWindow.vala src/Windows/PreferenceWindow.vala -src/Application.vala -src/Services/Utils.vala \ No newline at end of file +src/Application.vala \ No newline at end of file diff --git a/po/bn.po b/po/bn.po index 540bb9c7..4714f019 100644 --- a/po/bn.po +++ b/po/bn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,393 +17,315 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "নতুন স্টিকি নোট" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "স্টিকি নোট মুছুন" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "ইমোজি sert োকান" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "এই স্টিকি নোটের জন্য পছন্দগুলি" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "ডিফল্ট জুম স্তর" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "জুম আউট" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "ডিফল্ট জুম স্তর" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "জুম ইন" -#: src/Objects/Themes.vala:58 src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "ব্লুবেরি" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "পুদিনা" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "চুন" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "কলা" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "কমলা" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "স্ট্রবেরি" -#: src/Objects/Themes.vala:64 src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 src/Objects/Themes.vala:68 msgid "Slate" msgstr "স্লেট" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "আঙ্গুর" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "কোকো" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "" - -#: src/Views/PreferencesView.vala:54 -msgid "" -"If enabled, unfocused sticky notes become unreadable to protect their " -"content from peeking eyes (Ctrl+H)" -msgstr "" - -#: src/Views/PreferencesView.vala:74 -msgid "Hide buttons" -msgstr "" - -#: src/Views/PreferencesView.vala:76 -msgid "" -"If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will " -"still function (Ctrl+T)" -msgstr "" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "" - -#: src/Windows/StickyNoteWindow.vala:97 src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr "" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "" - -#. ****************************************** -#. HEADERBAR BS -#. ****************************************** -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "এই স্টিকি নোটের জন্য পছন্দগুলি" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "আমার সমস্ত খুব ভাল বন্ধু" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "আমার সুপার ভাল গোপন রেসিপি" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "আমার টোডো তালিকা" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "কাউকে না বলার জন্য সুপার সিক্রেট" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "আমার মুদি তালিকা" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "এলোমেলো ঝরনা চিন্তা" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "আমার ফেভ ফ্যানফিক্স" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "আমার ফেভ ডাইনোসর" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "আমার দুষ্ট মাস্টারমাইন্ড পরিকল্পনা" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "আজ কি আমাকে হাসিয়ে দিয়েছে" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "হ্যালো ওয়ার্ল্ড!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "নতুন স্টিকি, নতুন আমাকে" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "লুকানো জলদস্যু ধন" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "ভুলে যাবেন না, কখনও" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "প্রিয় ডায়েরি," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "একটি সুন্দর দিন দিন! " -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "আমার মেডস শিডিউল" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "গৃহস্থালী কাজ" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "আমার বিড়ালের কাছে ওড" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "আমার কুকুর প্রিয় খেলনা" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "আমার পাখি কত শীতল" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "শেষ কুকি সম্পর্কে সন্দেহভাজন" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "শব্দগুলি আমার তোতা জানে" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "দুর্দান্ত এবং মজার প্রশংসা" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "ঠিক আছে, এখানে শুনুন," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "আমার স্বপ্নের পোকেমন দল" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "আমার ছোট নোট" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "আশ্চর্য উপহারের তালিকা" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "বুদ্ধিদীপ্ত নোট" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "পার্টিতে আনতে" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "আমার আশ্চর্যজনক মিক্সটেপ" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "ন্যাপকিন স্ক্রিবলস" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "আমার ফেভ গানগুলি পাশাপাশি গান" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "কখন কোন উদ্ভিদ জল" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "শীর্ষ 10 এনিমে বিশ্বাসঘাতকতা" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "আমার কুকুর প্রিয় খেলনা" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "আমার কুকুর প্রিয় খেলনা" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "" -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -414,6 +336,86 @@ msgid "" "Have a great day!🎇\n" msgstr "" +#: src/Utils/Libportal.vala:16 src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "" + +#: src/Utils/Libportal.vala:29 src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "" + +#: src/Views/PreferencesView.vala:54 +msgid "" +"If enabled, unfocused sticky notes become unreadable to protect their " +"content from peeking eyes (Ctrl+H)" +msgstr "" + +#: src/Views/PreferencesView.vala:74 +msgid "Hide buttons" +msgstr "" + +#: src/Views/PreferencesView.vala:76 +msgid "" +"If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will " +"still function (Ctrl+T)" +msgstr "" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "" + +#: src/Windows/StickyNoteWindow.vala:83 src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr "" + +#. ****************************************** +#. HEADERBAR BS +#. ****************************************** +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "এই স্টিকি নোটের জন্য পছন্দগুলি" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "" + #~ msgid "Bubblegum" #~ msgstr "বুবলগাম" diff --git a/po/cs.po b/po/cs.po index 89a8c454..9aa589a9 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,398 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Kliknutím upravíte název" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Nová samolepicí poznámka" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Odstranění samolepicí poznámky" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Vložte emoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Předvolby pro tuto samolepicí poznámku" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Výchozí písmo" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Kliknutím použijete výchozí písmo textu" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Klikněte pro použití jednosazbového písma" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Zvětšení" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Výchozí úroveň přiblížení" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Přiblížení" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Borůvky" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Mátový" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Lime" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banán" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Orange" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Jahoda" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Břidlice" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Hrozny" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Kakao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Odeslání požadavku do systému" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Znepřehledněte poznámky" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Pokud je tato funkce povolena, stanou se nesoustředěné samolepicí poznámky nečitelnými, aby byl jejich obsah chráněn před pohledy zvědavců." - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Skrytí panelu tlačítek" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Pokud je tato možnost povolena, skryje spodní lištu v samolepicích poznámkách. Klávesové zkratky budou stále funkční (Ctrl+T)." - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Nastavení automatického spuštění" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Nastavení Jorts na spuštění s počítačem" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Odstranění autostartu" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Odebrat Jorts z autostartu systému" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Povolit spuštění při přihlášení" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Můžete požádat systém o automatické spuštění této aplikace." - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Podpořte nás!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Zavřít" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Zavřít předvolby" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Šortky" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Kliknutím upravíte název" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "Předvolby pro všechny samolepicí poznámky" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Předvolby" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Všichni moji nejlepší přátelé" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Můj super dobrý tajný recept" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Můj seznam úkolů" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Super tajemství, které nesmíte nikomu říct" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Můj seznam potravin" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Náhodné myšlenky ze sprchy" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Moje oblíbené fanouškovské texty" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Moji oblíbení dinosauři" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Můj ďábelský plán" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Co mě dnes rozesmálo" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Ahoj světe!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Nové lepidlo, nové já" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Skrytý pirátský poklad" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Nezapomenout, nikdy" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Milý deníčku," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Hezký den! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Můj rozpis léků" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Domácí práce" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Óda na mou kočku" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Oblíbené hračky mých psů" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Jak skvělí jsou moji ptáci" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Podezřelí v aféře Last Cookie" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Slova, která moji papoušci znají" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Skvělé a vtipné komplimenty, které můžete rozdávat" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Dobře, poslouchejte," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Můj vysněný tým Pokémonů" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Moje malé poznámky" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Seznam dárků s překvapením" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Poznámky k brainstormingu" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Přinést na večírek" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Můj úžasný mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Ubrousky scribblys" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Moje oblíbené písničky, které si zpívám" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Kdy zalévat kterou rostlinu" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "10 nejlepších zrad v anime" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Úžasné ascii umění!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Pro grilování" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Oblíbené hračky mých psů" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Nejlepší ingredience pro salát" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Knihy ke čtení" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Místa k návštěvě" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Koníčky k vyzkoušení" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Kdo by vyhrál proti Gokuovi" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "K výsadbě na zahradě" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Jídla tento týden" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Objednávka pizzy pro každého" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Dnešní péče o sebe" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Důležité afirmace, které je třeba si zapamatovat" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Nejúžasnější aplikace pro Linux" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Oblíbené hračky mých psů" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Moje nejvtipnější vtipy" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Dokonalá snídaně má..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Gratulujeme!🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -419,6 +342,87 @@ msgstr "" "Přeji krásný den!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Odebrat Jorts z autostartu systému" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Nastavení Jorts na spuštění s počítačem" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Odeslání požadavku do systému" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Znepřehledněte poznámky" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Pokud je tato funkce povolena, stanou se nesoustředěné samolepicí poznámky nečitelnými, aby byl jejich obsah chráněn před pohledy zvědavců." + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Skrytí panelu tlačítek" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Pokud je tato možnost povolena, skryje spodní lištu v samolepicích poznámkách. Klávesové zkratky budou stále funkční (Ctrl+T)." + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Nastavení automatického spuštění" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Odstranění autostartu" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Povolit spuštění při přihlášení" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Můžete požádat systém o automatické spuštění této aplikace." + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Podpořte nás!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Zavřít" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Zavřít předvolby" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Šortky" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "Předvolby pro všechny samolepicí poznámky" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Předvolby" + #~ msgid "Bubblegum" #~ msgstr "Žvýkačka" diff --git a/po/da.po b/po/da.po index 3856d53e..1165e2e3 100644 --- a/po/da.po +++ b/po/da.po @@ -8,397 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Klik for at redigere titlen" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Ny sticky note" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Slet klistermærke" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Indsæt emoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Indstillinger for denne huskeseddel" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Nulstil til standard" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Klik for at bruge standardskrifttype" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Klik for at bruge monospaced font" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Zoom ud" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Standard zoomniveau" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Zoom ind" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Blåbær" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Mynte" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Kalk" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banan" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Orange" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Jordbær" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Skifer" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Drue" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Kakao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Anmodning til systemet sendt" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Gør ufokuserede noter ulæselige" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Hvis det er aktiveret, bliver ufokuserede klistermærker ulæselige for at beskytte deres indhold mod nysgerrige blikke." - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Skjul knapbjælke" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Hvis den er aktiveret, skjules den nederste bjælke i klistermærker. Tastaturgenveje vil stadig fungere (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Indstil autostart" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Indstil Jorts til at starte med computeren" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Fjern autostart" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Fjern Jorts fra systemets autostart" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Tillad at starte ved login" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Du kan bede systemet om at starte denne applikation automatisk" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Støt os!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Luk" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Luk indstillinger" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Jorts" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Klik for at redigere titlen" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -msgid "Preferences for your Jorts" -msgstr "Præferencer for dine Jorts" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Indstillinger" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Alle mine allerbedste venner" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Min supergode hemmelige opskrift" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Min todo-liste" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Superhemmelighed, som du ikke må fortælle nogen" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Min indkøbsliste" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Tilfældige tanker om brusebad" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Mine favorit-fanfics" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Mine yndlingsdinosaurer" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Min onde mastermind-plan" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Hvad fik mig til at smile i dag" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Hej verden!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Nyt klistermærke, ny mig" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Skjult piratskat" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "For ikke at glemme, nogensinde" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Kære dagbog," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Hav en god dag! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Min medicinplan" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Huslige pligter" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ode til min kat" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Mine hundes yndlingslegetøj" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Hvor seje mine fugle er" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Mistænkte i sagen om den sidste cookie" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Ord, som mine papegøjer kender" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Seje og sjove komplimenter at give" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Okay, hør her," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Mit drømme-Pokemon-hold" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Mine små noter" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Overraskende gaveliste" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Noter til brainstorming" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "At tage med til festen" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Mit fantastiske mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Servietskriblerier" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Mine yndlingssange til at synge med på" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Hvornår skal hvilken plante vandes?" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Top 10 over forræderi i anime" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Fantastisk ascii-kunst!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Til grillen" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Mine hundes yndlingslegetøj" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "De bedste ingredienser til salat" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Bøger at læse" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Steder at besøge" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Hobbyer at prøve af" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Hvem ville vinde over Goku?" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "At plante i haven" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Måltider i denne uge" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Alles pizzabestilling" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "I dag skal du lave selvpleje" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Vigtige bekræftelser at huske" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "De fedeste linux-apps" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Mine hundes yndlingslegetøj" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Mine sjoveste vittigheder" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Den perfekte morgenmad har..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Tillykke! 🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -418,6 +342,86 @@ msgstr "" "Hav en god dag!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Fjern Jorts fra systemets autostart" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Indstil Jorts til at starte med computeren" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Anmodning til systemet sendt" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Gør ufokuserede noter ulæselige" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Hvis det er aktiveret, bliver ufokuserede klistermærker ulæselige for at beskytte deres indhold mod nysgerrige blikke." + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Skjul knapbjælke" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Hvis den er aktiveret, skjules den nederste bjælke i klistermærker. Tastaturgenveje vil stadig fungere (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Indstil autostart" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Fjern autostart" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Tillad at starte ved login" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Du kan bede systemet om at starte denne applikation automatisk" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Støt os!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Luk" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Luk indstillinger" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Jorts" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +msgid "Preferences for your Jorts" +msgstr "Præferencer for dine Jorts" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Indstillinger" + #~ msgid "Bubblegum" #~ msgstr "Bubblegum" diff --git a/po/de.po b/po/de.po index e85fdc13..94b594df 100644 --- a/po/de.po +++ b/po/de.po @@ -7,393 +7,319 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Klicken, um den Titel zu bearbeiten" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Neue Haftnotiz" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Haftnotiz löschen" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Emoji einfügen" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Einstellungen für diesen Haftnotizblock" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 msgid "Default" msgstr "Standard" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" -msgstr "Klicken Sie auf , um die Standardschriftart zu verwenden" +msgstr "Klicken um die Standardschriftart zu verwenden" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" -msgstr "Klicken Sie hier, um die Schriftart Monospaced zu verwenden" +msgstr "Klicken Sie um die Schriftart Monospaced zu verwenden" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Verkleinern" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Standard-Zoomstufe" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Vergrößern" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Blaubeere" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Minze" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Limette" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banane" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Orange" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Erdbeere" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Schiefer" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Weintrauben" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Kakao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Anfrage an das System gesendet" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Unscharfe Notizen unlesbar machen" - -#: src/Views/PreferencesView.vala:54 -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Wenn diese Funktion aktiviert ist, werden unscharfe Haftnotizen unlesbar, um ihren Inhalt vor neugierigen Blicken zu schützen (Strg+H)" - -#: src/Views/PreferencesView.vala:74 -msgid "Hide buttons" -msgstr "Schaltflächenleiste ausblenden" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Wenn aktiviert, wird die untere Leiste in Haftnotizen ausgeblendet. Die Tastaturkürzel funktionieren weiterhin (Strg+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Autostart einstellen" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Jorts so einstellen, dass er mit dem Computer startet" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Autostart entfernen" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Jorts aus dem System-Autostart entfernen" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Starten bei der Anmeldung zulassen" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Sie können das System auffordern, diese Anwendung automatisch zu starten" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Uns unterstützen!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Schließen Sie" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Einstellungen schließen" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Jorts" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Klicken, um den Titel zu bearbeiten" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -msgid "Preferences for your Jorts" -msgstr "Präferenzen für deine Jorts!" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Präferenzen" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Alle meine allerbesten Freunde" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Mein super gutes Geheimrezept" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Meine ToDo-Liste" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Supergeheimnis, das niemandem verraten werden darf" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Meine Lebensmittelliste" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Zufällige Gedanken zum Duschen" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Meine Lieblingsfanfics" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Meine Lieblingsdinosaurier" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Mein böser genialer Plan" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Was mich heute zum Lächeln gebracht hat" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Hallo Welt!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Neuer Kleber, neues Ich" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Versteckter Piratenschatz" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Nicht vergessen, niemals" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Liebes Tagebuch," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Einen schönen Tag noch! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Mein Medikamentenplan" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Aufgaben im Haushalt" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ode an meine Katze" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Lieblingsspielzeug meiner Hunde" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Wie cool meine Vögel sind" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Verdächtige in der Last-Cookie-Affäre" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Worte, die meine Papageien kennen" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Coole und lustige Komplimente zum Verteilen" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Ok, hören Sie zu," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Mein Traum-Pokemon-Team" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Meine kleinen Notizen" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Liste der Überraschungsgeschenke" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Brainstorming-Notizen" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Zum Mitbringen zur Party" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Mein erstaunliches Mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Serviette scribblys" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Meine Lieblingslieder zum Mitsingen" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Wann ist welche Pflanze zu gießen?" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Top 10 der Anime-Verräter" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Erstaunliche Ascii-Kunst!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Für den Grill" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 msgid "My favourite bands" msgstr "Meine Lieblingsbands" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Beste Zutaten für Salat" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Bücher zum Lesen" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Zu besuchende Orte" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Hobbys zum Ausprobieren" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Wer würde gegen Goku gewinnen?" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Zum Einpflanzen in den Garten" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Mahlzeiten diese Woche" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Die Pizzabestellung für alle" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Heute Selbstfürsorge zu tun" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Wichtige Affirmationen zum Merken" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Die coolsten Linux-Anwendungen" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Meine Lieblingsbands" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Meine lustigsten Witze" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Das perfekte Frühstück hat..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Herzlichen Glückwunsch!🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -413,6 +339,84 @@ msgstr "" "Habt einen tollen Tag!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Jorts aus dem System-Autostart entfernen" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Jorts so einstellen, dass er mit dem Computer startet" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Anfrage an das System gesendet" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Unscharfe Notizen unlesbar machen" + +#: src/Views/PreferencesView.vala:54 +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Wenn diese Funktion aktiviert ist, werden unscharfe Haftnotizen unlesbar, um ihren Inhalt vor neugierigen Blicken zu schützen (Strg+H)" + +#: src/Views/PreferencesView.vala:74 +msgid "Hide buttons" +msgstr "Schaltflächenleiste ausblenden" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Wenn aktiviert, wird die untere Leiste in Haftnotizen ausgeblendet. Die Tastaturkürzel funktionieren weiterhin (Strg+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Autostart einstellen" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Autostart entfernen" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Starten bei der Anmeldung zulassen" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Sie können das System auffordern, diese Anwendung automatisch zu starten" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Uns unterstützen!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Schließen Sie" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Einstellungen schließen" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Jorts" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +msgid "Preferences for your Jorts" +msgstr "Präferenzen für deine Jorts!" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Präferenzen" + #~ msgid "Bubblegum" #~ msgstr "Kaugummi" diff --git a/po/el.po b/po/el.po index 52a60b21..348a735c 100644 --- a/po/el.po +++ b/po/el.po @@ -7,398 +7,322 @@ msgstr "" "Last-Translator: Orionas Kakomoiroglou <209243298+OrionasKakomoiroglou@users.noreply.github.com>\n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-06-02 19:29+0300\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" "X-Generator: Gtranslator 46.0\n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Κάντε κλικ για να επεξεργαστείτε τον τίτλο" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Νέα σημείωση" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Διαγραφή σημείωσης" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Εισαγωγή emoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Προτιμήσεις για αυτή τη σημείωση" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Επαναφορά στις προεπιλεγμένες ρυθμίσεις" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Κάντε κλικ για να χρησιμοποιήσετε την προεπιλεγμένη γραμματοσειρά κειμένου" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Κάντε κλικ για να χρησιμοποιήσετε γραμματοσειρά με μονό διάστημα" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Σμίκρυνση" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Προεπιλεγμένο επίπεδο μεγέθυνσης" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Μεγέθυνση" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Μύρτιλλο" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Μέντα" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Μοσχολέμονο" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Μπανάνα" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Πορτοκάλι" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Φράουλα" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Γρανίτης" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Σταφύλι" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Κακάο" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Αποστολή αιτήματος στο σύστημα" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Κάντε τις μη εστιασμένες σημειώσεις δυσανάγνωστες" - -#: src/Views/PreferencesView.vala:54 -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Εάν είναι επιλεγμένο, οι σημειώσεις στο παρασκήνιο γίνονται δυσανάγνωστες για να προστατεύσουν το περιεχόμενό τους από αδιάκριτους (Ctrl+H)" - -#: src/Views/PreferencesView.vala:74 -msgid "Hide buttons" -msgstr "Απόκρυψη κουμπιών" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "" -"Εάν είναι επιλεγμένο, αποκρύπτει την κάτω μπάρα στο παράθυρο σημειώσεων. \n" -"Οι συντομεύσεις πληκτρολογίου εξακολουθούν να λειτουργούν κανονικά (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Ορισμός αυτόματης εκκίνησης" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Ρυθμίστε το Jorts για να ξεκινήσει με τον υπολογιστή" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Κατάργηση της αυτόματης εκκίνησης" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Κατάργηση του Jorts από την αυτόματη εκκίνηση του συστήματος" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Επιτρέψτε το άνοιγμα κατά την εκκίνηση" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Μπορείτε να ζητήσετε από το σύστημα να εκκινήσει αυτόματα αυτή την εφαρμογή." - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Υποστηρίξτε μας!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Κλείστε το" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Κλείστε τις προτιμήσεις" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Τζορτς" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Κάντε κλικ για να επεξεργαστείτε τον τίτλο" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -msgid "Preferences for your Jorts" -msgstr "Ρυθμίσεις του Jorts" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Προτιμήσεις" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Όλοι οι κολλητοί μου" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Η φανταστική μυστική μου συνταγή" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Η λίστα υποχρεώσεών μου" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Άκρως απόρρητο· μην το πεις πουθενά" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Η λίστα με τα ψώνια μου" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Σκέψεις που μου κατέβηκαν στο μυαλό" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Μια φορά και έναν καιρό..." -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Οι αγαπημένοι μου δεινόσαυροι" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Το μυστικό ύπουλό μου σχέδιο" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Τι με έκανε να χαρώ σήμερα" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Γεια σου κόσμε!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Νέα σημείωση για μια νέα αρχή" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Οδηγίες για να βρείτε τον κρυμμένο πειρατικό θησαυρό" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Για να μην ξεχαστούν" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Αγαπητό μου ημερολόγιο," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Καλημέρα! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Πρόγραμμα Φαρμάκων" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Δουλειές Σπιτιού" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Σενάριο: «Η Ιφιγένεια εν Γατίδι»" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Τα Αγαπημένα Παιχνίδια του Σκύλου μου" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Πόσο Όμορφα Είναι τα Καναρίνια μου" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Ύποπτοι στην υπόθεση «Ποιος έφαγε το τελευταίο μπισκότο;»" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Λίστα Λέξεων που Ξέρουν τα Παπαγαλάκια μου" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Τυφλοσούρτης Δημιουργικών και Αστείων Κομπλιμέντων" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Ακούσατε, Ακούσατε!" -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Ομάδες που ονειρεύομαι να φτάσουν Α' Εθνική" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Οι μικρές μου σημειώσεις" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Λίστα δώρων-έκπληξη" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Καταιγισμός ιδεών" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Τι να φέρω στο πάρτι" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Η φανταστική μου playlist" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Σημειώσεις από Χαρτοπετσέτες" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Τα αγαπημένα μου τραγούδια για να τραγουδώ" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Πότε να ποτίζω τα φυτά μου" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Οι 10 καλύτερες ατάκες" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Απίθανα σχέδια με γράμματα!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Λίστα Ψησίματος" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 msgid "My favourite bands" msgstr "Τα αγαπημένα μου συγκροτήματα" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Καλύτερα συστατικά για σαλάτα" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Βιβλία για ανάγνωση" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Μέρη για επίσκεψη" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Χόμπι για να δοκιμάσετε" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Ποιος θα κέρδιζε τον Goku" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Για να φυτέψετε στον κήπο" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Γεύματα αυτή την εβδομάδα" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Η παραγγελία πίτσας του καθενός" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Σήμερα αυτοφροντίδα για να κάνετε" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Σημαντικές επιβεβαιώσεις που πρέπει να θυμάστε" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Οι πιο cool εφαρμογές linux" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Τα αγαπημένα μου συγκροτήματα" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Τα πιο αστεία αστεία μου" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Το τέλειο πρωινό έχει..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥ΟΥΑΟΥ, ΤΑ ΣΥΓΧΑΡΗΤΗΡΙΑ ΜΟΥ🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -418,6 +342,86 @@ msgstr "" "Καλημέρα! 🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Κατάργηση του Jorts από την αυτόματη εκκίνηση του συστήματος" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Ρυθμίστε το Jorts για να ξεκινήσει με τον υπολογιστή" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Αποστολή αιτήματος στο σύστημα" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Κάντε τις μη εστιασμένες σημειώσεις δυσανάγνωστες" + +#: src/Views/PreferencesView.vala:54 +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Εάν είναι επιλεγμένο, οι σημειώσεις στο παρασκήνιο γίνονται δυσανάγνωστες για να προστατεύσουν το περιεχόμενό τους από αδιάκριτους (Ctrl+H)" + +#: src/Views/PreferencesView.vala:74 +msgid "Hide buttons" +msgstr "Απόκρυψη κουμπιών" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "" +"Εάν είναι επιλεγμένο, αποκρύπτει την κάτω μπάρα στο παράθυρο σημειώσεων. \n" +"Οι συντομεύσεις πληκτρολογίου εξακολουθούν να λειτουργούν κανονικά (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Ορισμός αυτόματης εκκίνησης" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Κατάργηση της αυτόματης εκκίνησης" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Επιτρέψτε το άνοιγμα κατά την εκκίνηση" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Μπορείτε να ζητήσετε από το σύστημα να εκκινήσει αυτόματα αυτή την εφαρμογή." + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Υποστηρίξτε μας!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Κλείστε το" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Κλείστε τις προτιμήσεις" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Τζορτς" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +msgid "Preferences for your Jorts" +msgstr "Ρυθμίσεις του Jorts" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Προτιμήσεις" + #~ msgid "Bubblegum" #~ msgstr "Τσιχλόφουσκα" diff --git a/po/es.po b/po/es.po index d88a6832..da1296e2 100644 --- a/po/es.po +++ b/po/es.po @@ -8,398 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Haga clic para editar el título" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Nueva nota adhesiva" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Eliminar nota adhesiva" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "inserte emoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Preferencias para esta nota pegajosa" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Restablecer valores por defecto" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Haga clic para utilizar la fuente de texto predeterminada" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Haga clic para utilizar la fuente monoespaciada" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Alejar" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Nivel de zoom predeterminado" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Acercar" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Arándano" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Menta" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Lima" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Plátano" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Naranja" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Fresa" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Pizarra" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Uva" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Cacao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Solicitud al sistema enviada" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Hacer ilegibles las notas desenfocadas" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Si se activan, las notas adhesivas desenfocadas se vuelven ilegibles para proteger su contenido de miradas indiscretas" - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Ocultar barra de botones" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Si está activada, oculta la barra inferior de las notas adhesivas. Los atajos de teclado seguirán funcionando (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Configurar arranque automático" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Configurar Jorts para iniciar con el ordenador" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Quitar el arranque automático" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Eliminar Jorts del arranque automático del sistema" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Permitir el inicio de sesión" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Puede solicitar al sistema que inicie esta aplicación automáticamente" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "¡Apóyenos!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Cerrar" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Cerrar preferencias" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Pantalones cortos" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Haga clic para editar el título" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "Preferencias para esta nota pegajosa" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Preferencias" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Todes mis mejores amigues" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Mi receta secreta súper buena" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Mi lista de tareas" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Supersecreto para no contárselo a nadie" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Mi lista de la compra" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Pensamientos aleatorios en la ducha" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Mis fanfics favoritos" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Mis dinosaurios favoritos" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Mi malvado plan maestro" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Lo que me ha hecho sonreír hoy" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "¡Hola, mundo!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Nueva pegatina, nuevo yo" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Ubicación del tesoro pirata escondido" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "No olvidar" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Querido diario:" -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Que tengas un buen día. :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Mi horario de medicación" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Tareas domésticas" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Oda a mi gato" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Los juguetes favoritos de mis perros" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Qué guays son mis pájaros" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Sospechosos en el asunto de la última galleta" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Palabras que conocen mis loros" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Elogios chulos y divertidos" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "A ver, escucha," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "El equipo Pokemon de mis sueños" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Mis pequeñas notas" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Lista de regalos sorpresa" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Notas de lluvia de ideas" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Para llevar a la fiesta" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Mi increíble mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Garabatos en una servilleta" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Mis canciones favoritas para cantar" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "cuándo regar qué planta" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Top 10 traiciones de anime" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "¡Increíble arte ascii!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Para la barbacoa" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Los juguetes favoritos de mis perros" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Los mejores ingredientes para la ensalada" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Libros para leer" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Lugares de interés" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Aficiones para probar" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "¿Quién ganaría contra Goku" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Para plantar en el jardín" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Comidas de la semana" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "El pedido de pizza de todos" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Hoy autocuidado que hacer" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Afirmaciones importantes para recordar" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Las mejores aplicaciones para Linux" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Los juguetes favoritos de mis perros" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Mis chistes más divertidos" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "El desayuno perfecto tiene..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW ¡Felicidades!🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -419,6 +342,87 @@ msgstr "" "Que tengáis un gran día!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Eliminar Jorts del arranque automático del sistema" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Configurar Jorts para iniciar con el ordenador" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Solicitud al sistema enviada" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Hacer ilegibles las notas desenfocadas" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Si se activan, las notas adhesivas desenfocadas se vuelven ilegibles para proteger su contenido de miradas indiscretas" + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Ocultar barra de botones" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Si está activada, oculta la barra inferior de las notas adhesivas. Los atajos de teclado seguirán funcionando (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Configurar arranque automático" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Quitar el arranque automático" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Permitir el inicio de sesión" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Puede solicitar al sistema que inicie esta aplicación automáticamente" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "¡Apóyenos!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Cerrar" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Cerrar preferencias" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Pantalones cortos" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "Preferencias para esta nota pegajosa" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Preferencias" + #~ msgid "Bubblegum" #~ msgstr "Chicle" diff --git a/po/extra/bn.po b/po/extra/bn.po index b3fb2d2b..be9dc114 100644 --- a/po/extra/bn.po +++ b/po/extra/bn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,29 +17,29 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "জোর্টস" -#: data/jorts.desktop.in:4 data/jorts.metainfo.xml.in:43 +#: data/jorts.desktop.in:6 data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "স্টিকি নোট" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "" "Write down notes, reminders, random thoughts and other short-term " "informations" msgstr "নোট, অনুস্মারক, এলোমেলো চিন্তাভাবনা এবং অন্যান্য স্বল্পমেয়াদী তথ্য লিখুন" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "পাঠ্য; সমতল; প্লেইনটেক্সট; নোটপ্যাড; নোটস; স্টিকি; পোস্ট-ইট;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "নতুন স্টিকি নোট" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 msgid "Show Preferences" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 আলোর জোর্টস" #: data/jorts.metainfo.xml.in:101 @@ -188,352 +188,356 @@ msgid "Ctrl+M to open note settings now" msgstr "" #: data/jorts.metainfo.xml.in:106 -msgid "Some UI elements show up after being shown, for a sleek vibe" +msgid "Alt+Number to change theme quickly" msgstr "" #: data/jorts.metainfo.xml.in:107 +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "" + +#: data/jorts.metainfo.xml.in:108 msgid "" "New note setting: Monospace. Could be for accessibility, could be for ascii " "doodles" msgstr "" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "" "Cleaner, nicer code under the hood. Probably marginally enhanced " "performances or less edge bugs" msgstr "" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "" "Better commented text and code, for translators and eventual contributors" msgstr "" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "" "Bugfix: Fix Jorts lingering in the background not opening anymore if all " "windows were closed (#77)" msgstr "" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "" "Bugfix: Whole window being grabbable interfered with text editing. Only " "actionbar and header are, now (#75, #76)" msgstr "" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "হুডের নীচে ক্লিনার কোডের জন্য এখানে এবং সেখানে পরিবর্তন হয়" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "" "Bugfix: When toggled off, the actionbar would leave an empty space. It is " "now fixed - With now a flashier animation to boot." msgstr "" -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 আলোর জোর্টস" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 msgid "Fixed blurrinness in high-scaled display" msgstr "" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "" "Last minute bugfix, somehow accels did not work when the Preferences were " "focused" msgstr "" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 msgid "A lovely temporary icon by @wpkelso" msgstr "" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "উন্নত অনুবাদ" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 আলোর জোর্টস" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "উন্নত অনুবাদ" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "উন্নত অনুবাদ" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 আলোর জোর্টস" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "" "Between this and the GTK4 port, there is very little left from old " "Notejot... We could say it is a v3" msgstr "" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "" "Make the app more universal: Other DEs do not keep window dimensions, so " "reimplement save and restore" msgstr "" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "উন্নত অনুবাদ" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "উন্নত অনুবাদ" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 আলোর জোর্টস" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "" "Thanks to RyoNakano reworking japanese translations, Japanese speakers will " "feel more at home now" msgstr "" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 msgid "Scribble mode exclusively in the preferences now" msgstr "" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "" "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.1.2 অবিস্মরণীয় জোর্টস" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "" "New feature: Preferences dialog! Right-click on the app icon to see the " "option" msgstr "" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "" "For translators: Translations have been separated in 2: One for the UI one " "for the extra content" msgstr "" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "উন্নত অনুবাদ" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 আলোর জোর্টস" -#: data/jorts.metainfo.xml.in:245 data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "আরও ভাল অনুবাদ কভারেজ" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "নতুন বৈশিষ্ট্য: স্কুইগলি মোড! " -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "" "New feature: Emoji picker button! I know there is one on right-click, but " "buttons are more accessible!" msgstr "নতুন বৈশিষ্ট্য: ইমোজি পিকার বোতাম! " -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "" "সরঞ্জামদণ্ডের বোতামটি আপনি যখনই ক্লিক করেন তখন একটি এলোমেলো ইমোট প্রদর্শন করে!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "" "New feature: Jorts does a monthly backup. Should there be any issue you can " "recover data!" msgstr "নতুন বৈশিষ্ট্য: জোর্টস একটি মাসিক ব্যাকআপ করে। " -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "মূল স্টোরেজটি দূষিত হওয়া উচিত, জোর্টস ব্যাকআপ থেকে লোড করার চেষ্টা করে" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "কিছু নতুন মজাদার/বুদ্ধিমান ডিফল্ট শিরোনাম" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "হুডের নীচে ক্লিনার কোডের জন্য এখানে এবং সেখানে পরিবর্তন হয়" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 অবিস্মরণীয় জোর্টস" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "অ্যাকশনবার বোতামগুলিতে ত্রাণ যুক্ত করুন" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "বাগফিক্স: এজ কেস যেখানে থিম বা জুম সঠিকভাবে সংরক্ষণ করা হয়েছে" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "বাগফিক্স: মাল্টিটাস্কিংয়ে শিরোনাম সঠিকভাবে সেট করা হয়নি" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "বাগফিক্স: আইকন অসঙ্গতি আইকন থিমগুলি" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "বাগফিক্স: থিমিং অসঙ্গতিগুলি অ্যাক্রোস স্টিকিগুলি" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 লন্ড্রি থেকে টাটকা! " -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "ক্লিয়ারার অ্যাপমেনু বর্ণনা" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "আরও ধারাবাহিক তাদের" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "বাগফিক্স: মুছুন শর্টকাটটি প্রতিক্রিয়াহীন ছিল" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "বাগফিক্স: স্ক্রিনশট দেখাচ্ছে না" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 লন্ড্রি থেকে টাটকা!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "প্রতি নোট জুম অন্তর্ভুক্ত! " -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "" "Latest set zoom, aka what is most comfortable to you, stays as default for " "new notes" @@ -541,67 +545,67 @@ msgstr "" "সর্বশেষ সেট জুম, ওরফে আপনার কাছে সবচেয়ে আরামদায়ক কী, নতুন নোটগুলির জন্য ডিফল্ট " "হিসাবে থাকে" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "আরও ভাল পঠনযোগ্যতা (ডাব্লুসিএজি এএ বা এএএ থিমের উপর নির্ভর করে)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "এছাড়াও কিছুটা ভাল খুঁজছেন থিম। " -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "উন্নত অনুবাদ" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "আরও ভাল শর্টকাট এবং সরঞ্জামগুলি" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "একটি বাগ ঠিক করা হয়েছে যেখানে জোর্টস লাইট সিস্টেম থিমে থাকে" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 অ্যাপসেন্টার রিলিজ" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 রিলিজ: স্লেট এবং বুবলগাম" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "নোটজোটের একটি প্রাচীন তবে ভাল প্রিয় সংস্করণটির পুনর্জীবন" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "অ্যাপটির নাম এখন জোর্টস। " -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 সুন্দর ছোট রঙ" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "আধুনিক লিনাক্স টেকনোলজিস এবং প্যাকেজিং ফর্ম্যাটগুলির উপরে নির্মিত" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "থিম পরিবর্তন করার সময় মসৃণ রূপান্তর" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "নতুন স্টিকি একটি এলোমেলো মজাদার ছোট শিরোনাম এবং রঙ" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "কয়েকটি প্রাথমিক অনুবাদ অন্তর্ভুক্ত, এবং আরও অনেক কিছু" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "ইমেল এবং লিঙ্কগুলি ক্লিকযোগ্য! " -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "" "পাঠ্য পূর্বাবস্থায় ফিরে, পুনরায় সমর্থন করে এবং আপনি ইমোজিস ব্যবহার করতে পারেন :)" diff --git a/po/extra/cs.po b/po/extra/cs.po index d5c26f72..84fbbba9 100644 --- a/po/extra/cs.po +++ b/po/extra/cs.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Šortky" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Samolepicí poznámky" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Zapisujte si poznámky, připomínky, náhodné myšlenky a další krátkodobé informace." -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "text;prostý;prostý text;poznámkový blok;poznámky;samolepicí;post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Nová samolepicí poznámka" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Předvolby" @@ -150,7 +150,7 @@ msgstr "Dialogové okno předvoleb v tmavém režimu" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Světelné šortky" #: data/jorts.metainfo.xml.in:101 @@ -174,392 +174,396 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M pro otevření nastavení poznámky" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Rychlá změna tématu pomocí kombinace kláves Alt+Číslo" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Některé prvky uživatelského rozhraní se zobrazí až po zobrazení, aby působily elegantně." -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Nastavení nové poznámky: Monospace. Mohlo by to být kvůli přístupnosti, mohlo by to být pro ascii čmáranice." -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Čistší a hezčí kód pod kapotou. Pravděpodobně mírně zvýšený výkon nebo méně chyb na hraně." -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Lépe komentovaný text a kód pro překladatele a případné přispěvatele" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Oprava chyby: Oprava neotevírání Jortsů, které se zdržují na pozadí, pokud byla všechna okna zavřena (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Star Platinum Jorts" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Oprava chyby: Celé okno, které lze grabovat, zasahovalo do úprav textu. Nyní je to možné pouze u akčního panelu a záhlaví (#75, #76)." -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Přidány další náhodné názvy" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Tlačítka pro přidání/odebrání autostartu" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Další zástupné znaky pro názvy" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Tu a tam změny pod kapotou pro čistší kód" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Oprava chyby: Při vypnutí akčního panelu zůstávalo prázdné místo. Nyní je to opraveno - a navíc je nyní k dispozici efektnější animace." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Světelné šortky" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Přidání malé cool animace při zapnutí/vypnutí panelu akcí" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Opravena neostrost v zobrazení s vysokým měřítkem kvůli Flathub BS" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Přidány snímky obrazovky ve vysokém rozlišení" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Oprava chyby na poslední chvíli, nějak nefungovaly akcelerátory, když byly zaměřeny Předvolby" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Trochu úklidu pro FR a DE, když už jsme u toho" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Hvězdičky pro hosty:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Edice Pride: Krásná dočasná ikona od @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Aktualizované překlady" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Světelné šortky" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Úspora paměti a zápisů na disk přidáním vhodného odkladu." -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Aktualizované překlady" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Aktualizované překlady" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Změny pro flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Nic zajímavého" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Drobné změny snímku obrazovky" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Písňové a taneční šortky" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Flathub verze, s velkou pomocí od @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Světelné šortky" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Krásná nová ikona díky @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Mezi tímto a portem GTK4 toho ze starého Notejotu zbylo jen velmi málo... Dalo by se říct, že je to v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Udělejte aplikaci univerzálnější: Ostatní DE nezachovávají rozměry oken, takže je třeba znovu implementovat ukládání a obnovení." -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Aktualizované překlady" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Aktualizované překlady" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Světelné šortky" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Díky tomu, že RyoNakano přepracoval překlady do japonštiny, budou se nyní japonsky mluvící lidé cítit více jako doma." -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Respektování nastavení redukce animací" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "režim scribbly byl přesunut do nového dialogu předvoleb" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Přidat předvolbu: nyní můžete skrýt spodní lištu! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Oprava chyby: Oprava přesouvání prvků při najetí na název poznámky nebo jeho výběru." -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Oprava chyby: Nefungovalo přidávání a mazání akcelerátorů... omlouváme se, už je to opraveno." -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Oprava chyby, kdy náhodné komponenty přeskočily poslední možnou volbu" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Oprava chyby: zkratka pro emoty se nezobrazovala správně" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Lil easter egg" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 Vnitřní šortky" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Nová funkce: Dialogové okno Předvolby! Kliknutím pravým tlačítkem myši na ikonu aplikace se zobrazí možnost" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "režim scribbly byl přesunut do nového dialogu předvoleb" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 #, fuzzy msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Zlepšení pro překladatele: Překlady byly rozděleny na 2 části: Jedna pro uživatelské rozhraní, druhá pro další obsah." -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Pohodlí: Snadnější uchopení a přetažení samolepek" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Oprava chyby: Snímky obrazovky v appcentru byly v nepořádku aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "Aktualizované překlady" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Světelné šortky" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Lepší pokrytí překladů" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Nová funkce: režim scribbly! Skrytí obsahu samolepicích poznámek při rozostření" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Nová funkce: Tlačítko pro výběr emoji! Vím, že je tam jedno na pravé tlačítko myši, ale tlačítka jsou přístupnější!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Tlačítko na panelu nástrojů zobrazí náhodný emotikon při každém kliknutí!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Nová funkce: Jorts provádí měsíční zálohování. V případě jakéhokoli problému můžete data obnovit!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Pokud dojde k poškození hlavního úložiště, pokusí se Jorts načíst ze zálohy." -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Některé nové zábavné/roztomilé výchozí názvy" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Tu a tam změny pod kapotou pro čistší kód" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Nepřenosné šortky" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Přidání reliéfu k tlačítkům na panelu akcí" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Oprava chyby: Případ, kdy se téma nebo zvětšení správně neuložilo" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Oprava chyby: Název v multitaskingu není správně nastaven" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Oprava chyby: Nekonzistence ikon napříč motivy ikon" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Oprava chyby: Nekonzistence v tématech napříč nálepkami" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Čerstvě vyprané! (2: electric boogaloo)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Přehlednější popis menu aplikace" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Konzistentnější tématika" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Oprava chyby: klávesová zkratka pro odstranění byla nezodpovědná" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Oprava chyby: nezobrazuje se snímek obrazovky" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Čerstvě vyprané!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Obsahuje zoom na každou notu! Takže můžete získat větší nebo menší text" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Poslední nastavené zvětšení, tedy to, které je pro vás nejpohodlnější, zůstane jako výchozí pro nové poznámky." -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Lepší čitelnost (WCAG AA nebo AAA v závislosti na tématu)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Také o něco lépe vypadající téma. Ano, ještě více :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Vylepšené překlady" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Lepší zkratky a popisky nástrojů" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Opravena chyba, kdy šortky zůstávaly na světelném systémovém motivu" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "Vydání verze 2.0.1 Appcenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "Vydání verze 2.0.0: Břidlice a žvýkačka" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Oživení staré, ale oblíbené verze Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Aplikace se nyní jmenuje Jorts. Nemůžete ji však nosit" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 krásných malých barev" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Postaveno na moderních technologiích Linuxu a balíčkovacích formátech." -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Plynulý přechod při změně tématu" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Nové stickies mají náhodný zábavný název a barvu" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Několik prvních překladů a další budou následovat" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "E-mail a odkazy jsou klikací! Ctrl+klik pro otevření v poště nebo prohlížeči" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Text podporuje vrácení zpět, opakování a můžete používat emotikony :)" diff --git a/po/extra/da.po b/po/extra/da.po index 85cb034e..09da5984 100644 --- a/po/extra/da.po +++ b/po/extra/da.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Jorts" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Sticky notes" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Skriv noter, påmindelser, tilfældige tanker og andre kortvarige informationer ned." -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "tekst;almindelig;almindelig tekst;notesblok;noter;klistermærke;post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Ny sticky note" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Indstillinger" @@ -149,7 +149,7 @@ msgstr "Indstillingsdialogen i mørk tilstand" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Lysets Jorts" #: data/jorts.metainfo.xml.in:101 @@ -173,388 +173,392 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M for at åbne noteindstillinger nu" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Number for at skifte tema hurtigt" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Nogle UI-elementer dukker op, når de er blevet vist, for at give en elegant stemning" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Ny noteindstilling: Monospace. Kunne være for tilgængelighed, kunne være for ascii-doodles" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Renere og pænere kode under motorhjelmen. Sandsynligvis marginalt forbedret ydeevne eller færre kantfejl" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Bedre kommenteret tekst og kode til oversættere og eventuelle bidragydere" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Fejlrettelse: Jorts, der bliver hængende i baggrunden, åbnes ikke længere, hvis alle vinduer er lukket (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Star Platinum Jorts" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Bugfix: At hele vinduet kunne gribes forstyrrede tekstredigering. Nu er det kun actionbar og header, der er det (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Tilføjet flere tilfældige titler" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Knapper til at tilføje/fjerne autostart" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Nogle flere titelpladsholdere" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Ændringer under motorhjelmen her og der for renere kode" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Bugfix: Når actionbaren var slået fra, efterlod den et tomt rum. Det er nu rettet - med en mere prangende animation til at starte med." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Tilføj en cool lille animation, når du aktiverer/deaktiverer actionbar" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Rettet sløring i højskaleret skærm på grund af Flathub BS" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Tilføjet skærmbilleder i høj opløsning" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Sidste øjebliks bugfix, på en eller anden måde virkede accels ikke, når præferencerne var fokuserede" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Lidt husholdning for FR og DE, mens vi er i gang" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Gæster stjerner:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Pride-udgaven: Et dejligt midlertidigt ikon af @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Opdaterede oversættelser" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Spar hukommelse og diskskrivning ved at tilføje en ordentlig debounce" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Opdaterede oversættelser" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Opdaterede oversættelser" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Ændringer for flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Intet interessant her" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Ups" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Mindre ændringer af skærmbilleder" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Jorts med sange og jorts med dans" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Flathub-version, med stor hjælp fra @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Et dejligt helt nyt ikon takket være @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Mellem denne og GTK4-porten er der meget lidt tilbage fra gamle Notejot... Vi kan sige, at det er en v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Gør appen mere universel: Andre DE'er beholder ikke vinduesdimensioner, så genimplementer gem og gendan" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Opdaterede oversættelser" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Opdaterede oversættelser" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Takket være RyoNakano, der omarbejder japanske oversættelser, vil japansktalende føle sig mere hjemme nu" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Respekter indstillingerne for reduktion af animationer" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "scribbly-tilstand er blevet flyttet til den nye indstillingsdialog" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Tilføj præference: Nu kan du skjule den nederste bjælke! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Bugfix: Fikset elementer, der flytter sig, når en notes titel holdes over eller vælges" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Bugfix: Nye og slettede accels virkede ikke oops sorry det er rettet nu" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Fejlrettelse, hvor tilfældige komponenter sprang det sidste mulige valg over" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Bugfix: Genvej til emotes blev ikke vist korrekt" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Lille påskeæg" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 De indre shorts" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Ny funktion: Indstillingsdialog! Højreklik på app-ikonet for at se indstillingen" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "scribbly-tilstand er blevet flyttet til den nye indstillingsdialog" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Til oversættere: Oversættelserne er blevet opdelt i 2: En til brugergrænsefladen og en til det ekstra indhold." -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Komfort: Lettere at gribe og trække klistermærker" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Bugfix: Skærmbilleder i appcenteret var noget rod aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 msgid "Updated translations" msgstr "Opdaterede oversættelser" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Bedre dækning af oversættelser" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Ny funktion: skribletilstand! Skjul indholdet af klistermærker, når du er ufokuseret" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Ny funktion: Emoji-vælger-knap! Jeg ved godt, at der er en ved højreklik, men knapper er mere tilgængelige!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Knappen i værktøjslinjen viser en tilfældig emote, hver gang du klikker!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Ny funktion: Jorts laver en månedlig backup. Hvis der skulle opstå problemer, kan du gendanne data!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Hvis hovedlageret bliver beskadiget, forsøger Jorts at indlæse fra backup." -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Nogle nye sjove/søde standardtitler" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Ændringer under motorhjelmen her og der for renere kode" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 De uberørbare jorts" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Tilføj relief til actionbar-knapper" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Bugfix: Kanttilfælde, hvor tema eller zoom ikke blev gemt korrekt" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Bugfix: Titel i multitasking indstilles ikke korrekt" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Bugfix: Ikoninkonsistens på tværs af ikontemaer" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Bugfix: Uoverensstemmelser i tematisering på tværs af stickies" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Frisk fra vaskeriet! (2: elektrisk boogaloo)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Tydeligere beskrivelse af appmenu" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Mere konsekvent tematisering" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Bugfix: genvejen til at slette var uansvarlig" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Bugfix: skærmbillede vises ikke" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Frisk fra vaskeriet!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Inkluderer en zoom pr. note! Så du kan få større eller mindre tekst" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Senest indstillede zoom, dvs. det, der er mest behageligt for dig, forbliver som standard for nye noter" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Bedre læsbarhed (WCAG AA eller AAA afhængigt af tema)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Også et lidt flottere tema. Ja endnu mere :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Forbedrede oversættelser" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Bedre genveje og værktøjstips" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Rettet en fejl, hvor Jorts forblev på det lyse systemtema" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Appcenter-udgivelse" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 udgivelse: Skifer og tyggegummi" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Genoplivning af en gammel, men elsket version af Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Appen hedder nu Jorts. Du kan dog ikke bære den" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 dejlige små farver" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Bygget oven på moderne Linux-teknologier og pakkeformater" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Jævn overgang ved skift af tema" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Nye stickies har en tilfældig sjov lille titel og farve" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Et par indledende oversættelser er inkluderet, og flere er på vej" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "E-mail og links er klikbare! Ctrl+Klik for at åbne i mail eller browser" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Tekst understøtter fortryd, gør om, og du kan bruge emojis :)" diff --git a/po/extra/de.po b/po/extra/de.po index 60f8e957..200c936b 100644 --- a/po/extra/de.po +++ b/po/extra/de.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Jorts" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Haftnotizen" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Notizen, Erinnerungen, zufällige Gedanken und andere kurzfristige Informationen aufschreiben" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "Text;einfach;Klartext;Notizblock;Notizen;Haftnotizen;Post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Neue Haftnotiz" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Präferenzen" @@ -147,7 +147,7 @@ msgstr "Der Einstellungsdialog im dunklen Modus" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "3.0.0 Die Jorts des Donner" #: data/jorts.metainfo.xml.in:101 @@ -171,379 +171,383 @@ msgid "Ctrl+M to open note settings now" msgstr "Strg+M, um die Notizeinstellungen jetzt zu öffnen" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Nummer zum schnellen Wechsel des Themas" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Einige UI-Elemente werden erst nach der Anzeige eingeblendet, um einen eleganten Eindruck zu vermitteln." -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Neue Noteneinstellung: Monospace. Könnte für Barrierefreiheit sein, könnte für Ascii-Kritzeleien sein" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Sauberer, schönerer Code unter der Haube. Wahrscheinlich geringfügig verbesserte Leistung oder weniger Randfehler" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Besser kommentierter Text und Code, für Übersetzer und eventuelle Mitwirkende" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Bugfix: Jorts, die im Hintergrund verweilen, werden nicht mehr geöffnet, wenn alle Fenster geschlossen wurden (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Star Platinum Jorts" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Bugfix: Wenn das ganze Fenster gegrabbt werden konnte, störte das die Textbearbeitung. Jetzt nur noch Aktionsleiste und Kopfzeile (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Weitere zufällige Titel hinzugefügt" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Schaltflächen zum Hinzufügen/Entfernen des Autostarts" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Einige weitere Titelplatzhalter" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Änderungen unter der Haube hier und da für saubereren Code" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Bugfix: Wenn die Aktionsleiste ausgeschaltet war, blieb ein leerer Raum zurück. Dies ist nun behoben - mit einer auffälligeren Animation." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "3.2.0 Die Jorts des Resilienz und Liebe" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Hinzufügen einer coolen kleinen Animation beim Aktivieren/Deaktivieren der Aktionsleiste" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Unschärfe in der hochskalierten Anzeige aufgrund von Flathub BS behoben" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Hochauflösende Bildschirmfotos hinzugefügt" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Last-Minute-Bugfix, irgendwie funktionierten die Akkus nicht, wenn die Voreinstellungen fokussiert waren" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Ein bisschen Hausarbeit für FR und DE, wenn wir schon dabei sind" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Gäste Sterne:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Stolz-Edition: Eine schöne temporäre Ikone von @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Aktualisierte Übersetzungen" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 msgid "3.1.3 Jorts of fire and lava" msgstr "2.4.0 Die Jorts des Eis" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Sparen Sie Speicherplatz und Schreibvorgänge auf der Festplatte durch Hinzufügen einer geeigneten Entprellung" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Aktualisierte IT-Übersetzungen dank @albanobattistella!" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Aktualisierte JA-Übersetzungen dank @RyoNakano!" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Änderungsanträge für Flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Nichts Interessantes dabei" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Hups" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Kleinere Änderungen am Screenshot" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Jorts von Liedern und Jorts von Tänzen" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Flathub-Version, mit viel Hilfe von @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 msgid "3.0.0 Jorts of Thunder" msgstr "3.0.0 Die Jorts des Donner" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Ein schönes neues Symbol dank @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Zwischen dieser und der GTK4-Portierung ist nur noch sehr wenig vom alten Notejot übrig... Wir könnten sagen, es ist eine v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Machen Sie die Anwendung universeller: Andere DEs behalten die Fensterabmessungen nicht bei, daher sollte das Speichern und Wiederherstellen neu implementiert werden." -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 msgid "Updated RU translations thanks to @camellan!" msgstr "Aktualisierte IT-Übersetzungen dank @camellan!" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 msgid "Updated screenshots" msgstr "Aktualisierte Übersetzungen" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 msgid "2.4.0 The Jorts of Ice" msgstr "2.4.0 Die Jorts des Eis" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Dank RyoNakano, der die japanischen Übersetzungen überarbeitet hat, werden sich Japaner jetzt wohler fühlen" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Einstellungen zur Reduzierung von Animationen respektieren" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 msgid "Scribble mode exclusively in the preferences now" msgstr "Der Schreibmodus wurde in den neuen Einstellungsdialog verschoben." -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Einstellung hinzufügen: Jetzt können Sie die untere Leiste ausblenden! (Strg+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Fehlerkorrektur: Elemente werden nicht mehr verschoben, wenn der Mauszeiger über den Titel einer Notiz bewegt oder diese ausgewählt wird." -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Bugfix: Neue und gelöschte Akkus funktionierten nicht oops sorry das ist jetzt behoben" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Behebung eines Fehlers, bei dem zufällige Komponenten die letzte mögliche Auswahl übersprungen haben" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Bugfix: Shortcut für Emotes wurde nicht richtig angezeigt" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Kleines Osterei" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 Die Innenhose" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Neue Funktion: Einstellungsdialog! Klicken Sie mit der rechten Maustaste auf das App-Symbol, um die Option zu sehen" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "Der Schreibmodus wurde in den neuen Einstellungsdialog verschoben." -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Verbesserung für Übersetzer: Die Übersetzungen wurden in 2 aufgeteilt: Eine für die Benutzeroberfläche und eine für den zusätzlichen Inhalt" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Komfort: Leichteres Greifen und Ziehen von Stickies" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Bugfix: Screenshots im Appcenter waren unübersichtlich aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 msgid "Updated translations" msgstr "Aktualisierte Übersetzungen" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Die Jorts des Lichts" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Bessere Übersetzungsabdeckung" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Neue Funktion: Scribbly-Modus! Inhalt von Haftnotizen ausblenden, wenn nicht fokussiert" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Neue Funktion: Emoji-Auswahltaste! Ich weiß, es gibt eine auf der rechten Maustaste, aber Tasten sind besser zugänglich!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Die Schaltfläche in der Symbolleiste zeigt jedes Mal, wenn du klickst, ein zufälliges Emote an!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Neue Funktion: Jorts macht ein monatliches Backup. Sollte es ein Problem geben, können Sie Daten wiederherstellen!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Sollte der Hauptspeicher beschädigt sein, versucht Jorts, vom Backup zu laden" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Einige neue lustige/niedliche Standardtitel" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Änderungen unter der Haube hier und da für saubereren Code" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Die unverkäuflichen Jorts" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Relief zu Aktionsleistenschaltflächen hinzufügen" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Bugfix: Randfall, bei dem das Thema oder der Zoom nicht richtig gespeichert wurde" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Bugfix: Titel im Multitasking nicht korrekt gesetzt" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Bugfix: Icon-Inkonsistenz bei verschiedenen Icon-Themen" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Bugfix: Theming-Ungereimtheiten bei Stickies" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Frisch aus der Wäsche! (2: elektrischer Boogaloo)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Übersichtlichere Beschreibung des Anwendungsmenüs" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Einheitlichere Thematisierung" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Bugfix: Die Verknüpfung \"Löschen\" war nicht zu verantworten" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Bugfix: Bildschirmfoto wird nicht angezeigt" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Frisch aus der Wäsche!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Enthält einen Zoom pro Note! So können Sie den Text größer oder kleiner machen" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Der zuletzt eingestellte Zoom, d.h. der für Sie bequemste, bleibt als Standard für neue Notizen erhalten" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Bessere Lesbarkeit (WCAG AA oder AAA je nach Thema)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Auch etwas besser aussehende Thema. Ja sogar noch mehr :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Verbesserte Übersetzungen" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Bessere Shortcuts und Tooltips" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Ein Fehler wurde behoben, bei dem Jorts auf dem hellen Systemthema blieb" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "Version 2.0.1 Appcenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 Veröffentlichung: Schiefer und Bubblegum" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Wiederbelebung einer alten, aber sehr beliebten Version von Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Die App heißt jetzt Jorts. Sie können sie jedoch nicht tragen" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 schöne kleine Farben" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Aufbauend auf modernen Linux-Technologien und Paketformaten" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Reibungsloser Übergang beim Themenwechsel" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Neue Stickies haben einen zufälligen, lustigen Titel und eine Farbe" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Einige erste Übersetzungen sind enthalten, weitere werden folgen" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "E-Mails und Links sind klickbar! Strg+Klick zum Öffnen in Mail oder Browser" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Text unterstützt Rückgängig machen, Wiederherstellen, und Sie können Emojis verwenden :)" diff --git a/po/extra/el.po b/po/extra/el.po index 8718dd4e..eee8ec57 100644 --- a/po/extra/el.po +++ b/po/extra/el.po @@ -7,34 +7,34 @@ msgstr "" "Last-Translator: Orionas Kakomoiroglou <209243298+OrionasKakomoiroglou@users.noreply.github.com>\n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-06-02 19:23+0300\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "X-Generator: Gtranslator 46.0\n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Jorts" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Σημειώσεις" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Γράψτε σημειώσεις, υπενθυμίσεις, σκέψεις που σας κατέβηκαν στο μυαλό και άλλες πληροφορίες" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "κείμενο;απλό;απλό κείμενο;σημειωματάριο;σημειώσεις;αυτοκόλλητο;post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Νέα σημείωση" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Ρυθμίσεις" @@ -146,7 +146,8 @@ msgid "The preferences dialog in dark mode" msgstr "Οι ρυθμίσεις στη σκοτεινή λειτουργία" #: data/jorts.metainfo.xml.in:99 -msgid "3.4.0 Jorts of Autumn" +#, fuzzy +msgid "3.4.0 Scary Jorts of Boo" msgstr "3.4.0 Jorts του φθινοπώρου" #: data/jorts.metainfo.xml.in:101 @@ -170,392 +171,396 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M για να ανοίξετε τις ρυθμίσεις σημειώσεων τώρα" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Αριθμός για γρήγορη αλλαγή θέματος" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Ορισμένα στοιχεία του UI εμφανίζονται αφού εμφανιστούν, για μια κομψή ατμόσφαιρα" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Νέα ρύθμιση σημειώσεων: Monospace. Θα μπορούσε να είναι για την προσβασιμότητα, θα μπορούσε να είναι για ασσύριους σκιτσογράφους." -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Καθαρότερος, καλύτερος κώδικας κάτω από το καπό. Πιθανώς οριακά βελτιωμένες επιδόσεις ή λιγότερα σφάλματα στις άκρες." -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Καλύτερα σχολιασμένο κείμενο και κώδικας, για τους μεταφραστές και τους ενδεχόμενους συνεισφέροντες" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Διόρθωση σφάλματος: Διόρθωση των Jorts που παραμένουν στο παρασκήνιο και δεν ανοίγουν πια αν όλα τα παράθυρα ήταν κλειστά (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Star Platinum Jorts" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Διόρθωση σφάλματος: Η δυνατότητα σύλληψης ολόκληρου του παραθύρου παρεμπόδιζε την επεξεργασία κειμένου. Μόνο η μπάρα ενεργειών και η κεφαλίδα είναι τώρα (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Προστέθηκαν περισσότεροι τυχαίοι τίτλοι" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Κουμπιά για προσθήκη/αφαίρεση αυτόματης εκκίνησης" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Μερικά ακόμη εικονικά στοιχεία τίτλου" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Αλλαγές στο παρασκήνιο για καθαρότερο κώδικα" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Διόρθωση σφάλματος: Όταν απενεργοποιούνταν, η γραμμή ενεργειών άφηνε κενό χώρο. Τώρα έχει διορθωθεί - με μια πιο φανταχτερή κινούμενη εικόνα για εκκίνηση." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "🌈 3.2.0 Τζορτζ της Ανθεκτικότητας και της Αγάπης" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Έγινε προσθήκη εφέ κίνησης όταν ενεργοποιείτε/απενεργοποιείτε τη μπάρα" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Διορθώθηκε η θολούρα στις οθόνες υψηλής ανάλυσης λόγω χαζομάρων του Flathub" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Προστέθηκαν στιγμιότυπα υψηλής ανάλυσης" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Διόρθωση σφάλματος της τελευταίας στιγμής, κατά κάποιο τρόπο τα accels δεν λειτουργούσαν όταν οι Προτιμήσεις ήταν εστιασμένες" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Λίγο νοικοκυριό για την FR και την DE, ενώ είναι σε αυτό" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Αστέρια επισκεπτών:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Έκδοση Υπερηφάνειας: Ένα υπέροχο προσωρινό εικονίδιο από το @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Ενημερωμένες ελληνικές μεταφράσεις χάρη στον @OrionasKakomoiroglou!" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 msgid "3.1.3 Jorts of fire and lava" msgstr "3.1.3 Τζορτζ από φωτιά και λάβα" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Εξοικονόμηση μνήμης και εγγραφών στο δίσκο προσθέτοντας ένα σωστό debounce" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Ενημερωμένες ιταλικές μεταφράσεις χάρη στο @albanobattistella!" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Ενημερωμένες ιαπωνικές μεταφράσεις χάρη στο @RyoNakano!" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Τροποποιήσεις για flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Τίποτα το ενδιαφέρον" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Μικρές τροποποιήσεις στα στιγμιότυπα" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Jorts τραγουδιών και Jorts χορού" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Έκδοση Flathub, με πολλή βοήθεια από το @RyoNakano!" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 msgid "3.0.0 Jorts of Thunder" msgstr "3.0.0 Jorts of Thunder" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Ένα υπέροχο ολοκαίνουργιο εικονίδιο χάρη στο @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Μεταξύ αυτού και της μετακόμισης στο GTK4, έχουν μείνει ελάχιστα από το παλιό Notejot... Είναι άνετα ένα v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "" "Η εφαρμογή έγινε πιο γενικευμένη: Μερικά γραφικά περιβάλλοντα δε συγκρατούν τα μεγέθη των παραθύρων, \n" "οπότε έγινε υλοποίηση εκ νέου για την αποθήκευση και την επαναφορά μεγέθους" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 msgid "Updated RU translations thanks to @camellan!" msgstr "Ενημερωμένες ρωσικές μεταφράσεις χάρη στο @camellan!" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 msgid "Updated screenshots" msgstr "Ενημερωμένα στιγμιότυπα" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 msgid "2.4.0 The Jorts of Ice" msgstr "2.4.0 Τα Jorts του πάγου" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "" "Ευχαριστούμε RyoNakano για την επεξεργασία των ιαπωνικών μεταφράσεων, \n" "οι ιαπωνόφωνοι θα αισθάνονται τώρα πιο άνετα" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Σεβασμός στη ρύθμιση μειωμένων εφέ" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 msgid "Scribble mode exclusively in the preferences now" msgstr "" "Η λειτουργία μουτζούρας βρίσκεται πλέον αποκλειστικά \n" "στις νέες ρυθμίσεις" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Προσθήκη προτίμησης: τώρα μπορείτε να αποκρύψετε την κάτω μπάρα! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "" "Διόρθωση: Διορθώθηκε η μετακίνηση των στοιχείων όταν ο τίτλος μιας σημείωσης \n" "επιλέγεται ή ο δείκτης του ποντικιού βρίσκεται από πάνω" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "" "Διόρθωση: Οι επιτάχυνσεις δημιουργίας και διαγραφής δεν λειτουργούσαν, \n" "χίλια συγγνώμη, τώρα είναι διορθωμένο." -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Διόρθωση σφάλματος όπου τυχαία στοιχεία παρέλειπαν την τελευταία δυνατή επιλογή" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Διόρθωση: η συντόμευση για emoji δεν εμφανιζόταν σωστά" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Προσθήκη easter egg" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 Το εσωτερικό σορτς" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Νέα λειτουργία: Ρυθμίσεις! Κάντε δεξί κλικ στο εικονίδιο της εφαρμογής για να δείτε τις προτιμήσεις" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "Η λειτουργία μουτζούρας μετακινήθηκε στις νέες ρυθμίσεις" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Διευκόλυνση μετάφρασης: Οι μεταφράσεις έσπασαν σε 2 αρχεία: ένα για το γραφικό περιβάλλον και ένα για τις πληροφορίες" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Περισσότερη άνεση: Ευκολία στην μετακίνηση σημειώσεων" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Διόρθωση: Τα στιγμιότυπα στο appcenter ήταν ένα χάος" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 msgid "Updated translations" msgstr "Ενημερωμένες μεταφράσεις" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Οι Jorts του φωτός" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Καλύτερη μεταφραστική κάλυψη" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Νέα λειτουργία: Λειτουργία Μουτζούρας! Απόκρυψη του κειμένου των μη εστιασμένων σημειώσεων" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Νέα λειτουργία: Emoji! Ναι, μπορείτε και μέσω του δεξιού κλικ, αλλά τα κουμπιά είναι καλύτερα!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Το κουμπί στη μπάρα εργαλείων εμφανίζει ένα τυχαίο emoji κάθε φορά που κάνετε κλικ!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "" "Νέα λειτουργία: Το Jorts κάνει ένα μηνιαίο αντίγραφο ασφαλείας. Ό,τι και να γίνει, \n" "μπορείτε να ανακτήσετε τα δεδομένα!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "" "Εάν ο αποθηκευτικός χώρος αλλοιωθεί, το Jorts θα προσπαθήσει να φορτώσει \n" "τα δεδομένα από το αντίγραφο ασφαλείας" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Νέοι διασκεδαστικοί/χαριτωμένοι προεπιλεγμένοι τίτλοι" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Αλλαγές στο παρασκήνιο για καθαρότερο κώδικα" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Τα άθικτα τζορτς" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Προσθήκη αλληλεπίδρασης κατά το κλικ στα κουμπιά της μπάρας" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Διόρθωση: Σε σπάνιες περιπτώσεις το θέμα ή το ζουμ δεν αποθηκεύονταν σωστά" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Διόρθωση: Ο τίτλος στο multitasking δεν είχε οριστεί σωστά" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Διόρθωση: Ασυμφωνία εικονιδίων ανάμεσα σε διάφορα θέματα εικονιδίων" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Διόρθωση: Ασυμφωνία θεμάτων μεταξύ σημειώσεων" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Φρέσκο από το πλυντήριο! (2: electric boogaloo)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Καλύτερη περιγραφή στο μενού εφαρμογών" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Πιο συνεπής θεματολογία" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Διόρθωση: η συντόμευση διαγραφής δεν αποκρινόταν" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Διόρθωση: δεν εμφανίζονταν τα στιγμιότυπα" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Μόλις βγήκε από το πλυντήριο!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Ζουμ ανά σημείωση! Έτσι μπορείτε να έχετε μεγαλύτερο ή μικρότερο κείμενο" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Το τελευταίο ρυθμισμένο ζουμ (αυτό που σας βολεύει περισσότερο) παραμένει ως προεπιλογή για τις νέες σημειώσεις." -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Καλύτερη αναγνωσιμότητα (WCAG AA ή AAA ανάλογα με το θέμα)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Ελαφρώς καλύτερο θέμα. Ναι, πολύ καλύτερο :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Βελτιωμένες μεταφράσεις" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Καλύτερες συντομεύσεις και υποδείξεις" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Διορθώθηκε ένα σφάλμα όπου το Jorts παρέμενε στη φωτεινή λειτουργία" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Έκδοση Appcenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 Έκδοση: Slate και Bubblegum" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Αναβίωση μιας αρχαίας αλλά αγαπημένης έκδοσης του Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Η εφαρμογή τώρα ονομάζεται Jorts. Όμως, δεν πρόκειται για ρούχο!" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 υπέροχα χρώματα" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Χτίστηκε πάνω σε σύγχρονες τεχνολογίες Linux και μορφές συσκευασίας" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Ομαλή μετάβαση κατά την αλλαγή θέματος" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Οι νέες σημειώσεις έχουν έναν τυχαίο διασκεδαστικό τίτλο και χρώμα" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Μερικές αρχικές μεταφράσεις περιλαμβάνονται, σύντομα θα προστεθούν και άλλες" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "Τα email και οι σύνδεσμοι μπορούν να πατηθούν! Ctrl+Κλικ για να τους ανοίξετε στο mail ή στον περιηγητή" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Το κείμενο υποστηρίζει αναίρεση, επανάληψη και μπορείτε να χρησιμοποιήσετε emojis :)" diff --git a/po/extra/es.po b/po/extra/es.po index b0dc4b58..31807d5b 100644 --- a/po/extra/es.po +++ b/po/extra/es.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Pantalones cortos" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Notas adhesivas" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Anotar notas, recordatorios, pensamientos aleatorios y otras informaciones a corto plazo." -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "texto;sin formato;texto sin formato;bloc;notas;adhesivo;post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Nueva nota adhesiva" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Preferencias" @@ -150,7 +150,7 @@ msgstr "El diálogo de preferencias en modo oscuro" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Los Jorts de luz" #: data/jorts.metainfo.xml.in:101 @@ -174,392 +174,396 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M para abrir la configuración de notas ahora" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Número para cambiar de tema rápidamente" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Algunos elementos de la interfaz de usuario aparecen después de ser mostrados, para dar un toque elegante." -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Nuevo ajuste de nota: Monospace. Podría ser para la accesibilidad, podría ser para garabatos ascii" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Código más limpio y agradable bajo el capó. Probablemente un rendimiento marginalmente mejorado o menos bugs en los bordes." -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Texto y código mejor comentados, para traductores y eventuales colaboradores." -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Corrección de errores: Corrección de Jorts que permanecían en segundo plano y ya no se abrían si se cerraban todas las ventanas (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Pantalones cortos Star Platinum" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Bugfix: Que toda la ventana fuera agarrable interfería con la edición de texto. Ahora sólo lo son la barra de acciones y la cabecera (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Añadidos más títulos aleatorios" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Botones para añadir/eliminar el arranque automático" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Algunos títulos más" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Cambios aquí y allá para un código más limpio" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Corrección de errores: Cuando se desactivaba, la barra de acciones dejaba un espacio vacío. Ya está solucionado, con una animación más llamativa." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Los Jorts de luz" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Añadir una pequeña animación al activar/desactivar la barra de acción" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Corregido el desenfoque en la visualización a gran escala debido a Flathub BS" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Añadidas capturas de pantalla de alta resolución" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Corrección de errores de última hora, de alguna manera los accels no funcionaban cuando las Preferencias estaban enfocadas." -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "De paso, un poco de orden para FR y DE" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Estrellas invitadas:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Edición Pride: Un precioso icono temporal de @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Traducciones actualizadas" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Los Jorts de luz" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Ahorre memoria y escrituras en disco añadiendo un rebote adecuado" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Traducciones actualizadas" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Traducciones actualizadas" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Enmiendas para el flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Nada interesante aquí" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Vaya" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Pequeñas modificaciones en las capturas de pantalla" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Jorts de canciones y Jorts de baile" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Versión Flathub, con mucha ayuda de @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Los Jorts de luz" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Un precioso icono nuevo gracias a @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Entre esto y el port de GTK4, queda muy poco del viejo Notejot... Podríamos decir que es una v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Hacer la aplicación más universal: Otros DEs no mantienen las dimensiones de las ventanas, así que reimplementa guardar y restaurar." -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Traducciones actualizadas" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Traducciones actualizadas" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Los Jorts de luz" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Gracias a RyoNakano, que ha revisado las traducciones al japonés, los japoneses se sentirán más a gusto." -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Respetar los ajustes de reducción de animaciones" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "el modo scribbly se ha trasladado al nuevo diálogo de preferencias" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Añadir preferencia: ¡ahora puedes ocultar la barra inferior! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Corrección de errores: Se ha corregido el desplazamiento de elementos al pasar el ratón por encima o seleccionar el título de una nota." -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Corrección de errores: No funcionaban las funciones de crear y eliminar cuentas, lo siento, ya está solucionado." -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Corrección de errores por la que los componentes aleatorios se saltaban la última opción posible" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Corrección de errores: el acceso directo a los emotes no aparecía correctamente." -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Huevo de Pascua" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 Los pantalones cortos interiores" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Nueva función: Diálogo de preferencias Haga clic con el botón derecho en el icono de la aplicación para ver la opción" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "el modo scribbly se ha trasladado al nuevo diálogo de preferencias" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 #, fuzzy msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Mejora para los traductores: Las traducciones se han separado en 2: Una para la interfaz de usuario y otra para el contenido extra." -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Comodidad: Más fácil de agarrar y arrastrar los stickies" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Bugfix: Las capturas de pantalla en el appcenter eran un desastre aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "Traducciones actualizadas" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Los Jorts de luz" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Mejor cobertura de traducción" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Nueva función: ¡modo garabato! Oculte el contenido de las notas adhesivas cuando esté desenfocado" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Nueva función: Botón para elegir emoji. Sé que hay uno en el botón derecho del ratón, ¡pero los botones son más accesibles!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "El botón de la barra de herramientas muestra un emote aleatorio cada vez que haces clic." -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Nueva función: Jorts hace una copia de seguridad mensual. Si hay algún problema, ¡puedes recuperar los datos!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Si el almacenamiento principal se corrompe, Jorts intenta cargar desde la copia de seguridad" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Algunos nuevos y divertidos títulos por defecto" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Cambios aquí y allá para un código más limpio" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Los pantalones cortos impenetrables" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Añadir relieve a los botones de la barra de acción" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Bugfix: Caso en el que el tema o el zoom no se guardaban correctamente" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Corrección de errores: El título en la multitarea no se establecía correctamente" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Corrección de errores: Incoherencia en los iconos de los distintos temas." -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Corrección de errores: Incoherencias temáticas en las etiquetas" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 ¡Recién salido de la lavandería! (2: boogaloo eléctrico)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Descripción más clara del menú de aplicaciones" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Tematización más coherente" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Corrección de errores: el atajo de supresión no era responsable" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Corrección de errores: no se mostraban las capturas de pantalla" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 ¡Recién salido de la lavandería!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Incluye un zoom por nota Para que puedas ampliar o reducir el texto" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "El último zoom configurado, es decir, el que le resulte más cómodo, se mantiene como predeterminado para las notas nuevas" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Mejor legibilidad (WCAG AA o AAA según el tema)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "También un poco mejor aspecto del tema. Sí, incluso más :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Traducciones mejoradas" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Mejores accesos directos e información sobre herramientas" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Se ha corregido un error por el que Jorts permanecía en el tema del sistema de luz" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Lanzamiento de Appcenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "Versión 2.0.0: Pizarra y chicle" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Recuperación de una versión antigua pero muy apreciada de Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "La aplicación se llama ahora Jorts. Sin embargo, no puedes usarla" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 pequeños colores encantadores" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Construido sobre modernas tecnologías Linux y formatos de empaquetado" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Transición suave al cambiar de tema" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Los nuevos stickies tienen un título y un color divertidos y aleatorios" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Algunas traducciones iniciales incluidas, y más por venir" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "Correo electrónico y enlaces clicables Ctrl+Clic para abrir en el correo o en el navegador" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "El texto permite deshacer, rehacer y utilizar emojis :)" diff --git a/po/extra/extra.pot b/po/extra/extra.pot index 568e0466..bec8a770 100644 --- a/po/extra/extra.pot +++ b/po/extra/extra.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,29 +17,29 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "" -#: data/jorts.desktop.in:4 data/jorts.metainfo.xml.in:43 +#: data/jorts.desktop.in:6 data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "" "Write down notes, reminders, random thoughts and other short-term " "informations" msgstr "" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 msgid "Show Preferences" msgstr "" @@ -152,7 +152,7 @@ msgid "The preferences dialog in dark mode" msgstr "" #: data/jorts.metainfo.xml.in:99 -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "" #: data/jorts.metainfo.xml.in:101 @@ -178,403 +178,407 @@ msgid "Ctrl+M to open note settings now" msgstr "" #: data/jorts.metainfo.xml.in:106 -msgid "Some UI elements show up after being shown, for a sleek vibe" +msgid "Alt+Number to change theme quickly" msgstr "" #: data/jorts.metainfo.xml.in:107 +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "" + +#: data/jorts.metainfo.xml.in:108 msgid "" "New note setting: Monospace. Could be for accessibility, could be for ascii " "doodles" msgstr "" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "" "Cleaner, nicer code under the hood. Probably marginally enhanced " "performances or less edge bugs" msgstr "" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "" "Better commented text and code, for translators and eventual contributors" msgstr "" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "" "Bugfix: Fix Jorts lingering in the background not opening anymore if all " "windows were closed (#77)" msgstr "" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "" "Bugfix: Whole window being grabbable interfered with text editing. Only " "actionbar and header are, now (#75, #76)" msgstr "" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 msgid "Under the hood is a bit cleaner now" msgstr "" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "" "Bugfix: When toggled off, the actionbar would leave an empty space. It is " "now fixed - With now a flashier animation to boot." msgstr "" -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 msgid "Fixed blurrinness in high-scaled display" msgstr "" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "" "Last minute bugfix, somehow accels did not work when the Preferences were " "focused" msgstr "" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 msgid "A lovely temporary icon by @wpkelso" msgstr "" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 msgid "3.1.3 Jorts of fire and lava" msgstr "" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 msgid "Updated IT translations thanks to @albanobattistella!" msgstr "" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 msgid "Updated JA translations thanks to @RyoNakano!" msgstr "" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 msgid "3.0.0 Jorts of Thunder" msgstr "" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "" "Between this and the GTK4 port, there is very little left from old " "Notejot... We could say it is a v3" msgstr "" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "" "Make the app more universal: Other DEs do not keep window dimensions, so " "reimplement save and restore" msgstr "" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 msgid "Updated RU translations thanks to @camellan!" msgstr "" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 msgid "Updated screenshots" msgstr "" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 msgid "2.4.0 The Jorts of Ice" msgstr "" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "" "Thanks to RyoNakano reworking japanese translations, Japanese speakers will " "feel more at home now" msgstr "" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 msgid "Scribble mode exclusively in the preferences now" msgstr "" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "" "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 msgid "2.3.0 The Inner Jorts" msgstr "" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "" "New feature: Preferences dialog! Right-click on the app icon to see the " "option" msgstr "" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "" "For translators: Translations have been separated in 2: One for the UI one " "for the extra content" msgstr "" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 msgid "Updated translations" msgstr "" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "" -#: data/jorts.metainfo.xml.in:245 data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "" "New feature: Emoji picker button! I know there is one on right-click, but " "buttons are more accessible!" msgstr "" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "" "New feature: Jorts does a monthly backup. Should there be any issue you can " "recover data!" msgstr "" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "" "Latest set zoom, aka what is most comfortable to you, stays as default for " "new notes" msgstr "" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "" diff --git a/po/extra/fi.po b/po/extra/fi.po index d0ceb96a..a0be96d5 100644 --- a/po/extra/fi.po +++ b/po/extra/fi.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Jortsit" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Muistilaput" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Kirjoita muistiin muistiinpanoja, muistutuksia, satunnaisia ajatuksia ja muita lyhytaikaisia tietoja." -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "teksti;tavallinen;tavallinen teksti;muistilappu;muistiinpanot;tahmea;post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Uusi muistilappu" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Asetukset" @@ -150,7 +150,7 @@ msgstr "Asetusten valintaikkuna pimeässä tilassa" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Valon Jortsit" #: data/jorts.metainfo.xml.in:101 @@ -174,392 +174,396 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M avaa muistiinpanoasetukset nyt" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Numero vaihtaa teemaa nopeasti" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Jotkin käyttöliittymäelementit näkyvät näyttämisen jälkeen, mikä luo tyylikkään tunnelman." -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Uusi muistiinpanoasetus: Monospace. Voi olla saavutettavuuden vuoksi, voi olla ascii-koodien vuoksi." -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Puhtaampaa ja mukavampaa koodia konepellin alla. Todennäköisesti marginaalisesti parannettu suorituskyky tai vähemmän reunavikoja." -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Paremmin kommentoitua tekstiä ja koodia kääntäjiä ja mahdollisia avustajia varten." -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Bugfix: Korjaa, että taustalla viipyvät Jortsit eivät enää avaudu, jos kaikki ikkunat on suljettu (#77)." -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Star Platinum Jortsit" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Bugfix: Koko ikkunan tarttuminen häiritsi tekstin muokkausta. Vain toimintopalkki ja otsikko ovat nyt (#75, #76)." -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Lisätty lisää satunnaisia otsikoita" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Painikkeet automaattisen käynnistyksen lisäämistä/poistamista varten" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Joitakin lisää otsikon paikannimiä" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Muutoksia konepellin alla siistimmän koodin aikaansaamiseksi täällä ja siellä" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Bugfix: Kun toimintopalkki kytkettiin pois päältä, se jätti tyhjän tilan. Se on nyt korjattu - nyt myös näyttävämpi animaatio." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Valon Jortsit" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Lisää siisti pieni animaatio, kun toimintopalkki otetaan käyttöön/poistetaan käytöstä." -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Korjattu Flathub BS:n aiheuttama epätarkkuus korkeassa skaalassa olevassa näytössä" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Lisätty korkearesoluutioisia kuvakaappauksia" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Viime hetken bugikorjaus, jotenkin akkelit eivät toimineet, kun asetukset olivat keskitettyinä" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "FR:n ja DE:n osalta hieman siivousta samalla kun se on käynnissä." -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Vieraiden tähdet:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Pride Edition: @wpkelso: Ihana väliaikainen kuvake" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Päivitetyt käännökset" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Valon Jortsit" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Säästä muistia ja levykirjoituksia lisäämällä asianmukainen debounce-ominaisuus." -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Päivitetyt käännökset" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Päivitetyt käännökset" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Tarkistukset flathubin osalta" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Täällä ei ole mitään mielenkiintoista" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Hups" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Pieniä muutoksia kuvakaappauksiin" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Laulujortsit ja tanssijortsit" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Flathub-versio, paljon apua @RyoNakano:lta." -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Valon Jortsit" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Ihana upouusi kuvake kiitos @wpkelso:n" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Tämän ja GTK4-portin välillä on hyvin vähän jäljellä vanhasta Notejotista... Voisimme sanoa, että se on v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Tee sovelluksesta yleispätevämpi: Muut DE:t eivät säilytä ikkunan mittoja, joten toteuta tallennus ja palautus uudelleen." -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Päivitetyt käännökset" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Päivitetyt käännökset" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Valon Jortsit" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Kiitos RyoNakanon japaninkielisten käännösten uudistamisen, japaninkieliset tuntevat nyt olonsa kotoisammaksi." -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Kunnioita animaatioiden vähentämisen asetuksia" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "scribbly-tila on siirretty uuteen asetusten valintaikkunaan." -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Lisää mieltymys: nyt voit piilottaa alapalkin! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Bugfix: Korjattu elementtien siirtyminen, kun muistiinpanon otsikko on hiiren alla tai valittu." -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Bugfix: Uudet ja poistettavat akkelit eivät toimineet oops sorry se on korjattu nyt." -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Virheenkorjaus, jossa satunnaiset komponentit ohittivat viimeisen mahdollisen valinnan" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Bugfix: emotesin pikakuvake ei näkynyt oikein" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Lil pääsiäismuna" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 Sisäiset housut" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Uusi ominaisuus: Asetukset-valintaikkuna! Napsauta sovelluksen kuvaketta hiiren kakkospainikkeella nähdäksesi vaihtoehdon." -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "scribbly-tila on siirretty uuteen asetusten valintaikkunaan." -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 #, fuzzy msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Parannus kääntäjille: Käännökset on erotettu kahteen osaan: yksi käyttöliittymälle ja yksi lisäsisällölle." -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Mukavuus: Helpompi tarttua ja vetää tarroja." -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Bugfix: Sovelluskeskuksen kuvakaappaukset olivat sekaisin aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "Päivitetyt käännökset" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Valon Jortsit" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Parempi käännöskattavuus" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Uusi ominaisuus: scribbly-tila! Piilota muistiinpanojen sisältö, kun et ole keskittynyt." -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Uusi ominaisuus: Emoji-valintapainike! Tiedän, että oikealla napsautuksella on sellainen, mutta painikkeet ovat helpommin saatavilla!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Työkalurivin painike näyttää satunnaisen hymiön joka kerta, kun napsautat sitä!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Uusi ominaisuus: Jorts tekee kuukausittaisen varmuuskopion. Jos tulee jokin ongelma, voit palauttaa tiedot!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Jos päätallennustiedosto vioittuu, Jorts yrittää ladata varmuuskopiosta." -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Joitakin uusia hauskoja/söpöjä oletusnimikkeitä" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Muutoksia konepellin alla siistimmän koodin aikaansaamiseksi täällä ja siellä" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Jortsit, jotka eivät ole rypistettävissä." -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Lisää helpotusta toimintopalkin painikkeisiin" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Bugfix: Reunatapaus, jossa teema tai zoom werent tallennettiin oikein" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Korjaus: Otsikko ei asetu oikein monitoiminnossa" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Bugfix: Kuvakkeiden epäjohdonmukaisuus eri kuvaketeemoissa" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Bugfix: Theming epäjohdonmukaisuuksia eri stickieissä" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Tuoreet pesulasta! (2: electric boogaloo)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Selkeämpi sovellusvalikon kuvaus" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Johdonmukaisempi teemoittelu" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Virheenkorjaus: Poista pikakuvake oli vastuuttomana" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Bugfix: kuvakaappaus ei näy" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Juuri pyykistä!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Sisältää nuotti kerrallaan zoomauksen! Voit siis suurentaa tai pienentää tekstiä" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Viimeisin asetettu zoomaus eli se, mikä on sinulle mukavin, pysyy oletuksena uusissa muistiinpanoissa." -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Parempi luettavuus (WCAG AA tai AAA teemasta riippuen)." -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Myös hieman paremman näköinen teema. Kyllä, vielä enemmän :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Parannetut käännökset" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Paremmat pikanäppäimet ja työkaluvihjeet" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Korjattu vika, jossa Jortsit pysyivät vaaleassa järjestelmäteemassa." -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Appcenterin julkaisu" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 Julkaisu: Slate And Bubblegum" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Vanhan mutta hyvin rakastetun Notejot-version elvyttäminen." -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Sovelluksen nimi on nyt Jorts. Et kuitenkaan voi käyttää sitä" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 ihanaa pientä väriä" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Rakennettu nykyaikaisten Linux-tekniikoiden ja pakkausformaattien varaan" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Sujuva siirtyminen teemaa vaihdettaessa" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Uusilla tarralapuilla on satunnainen hauska otsikko ja väri." -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Muutama alustava käännös mukana, ja lisää on tulossa." -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "Sähköposti ja linkit ovat klikattavissa! Ctrl+Klikkaa avataksesi sähköpostin tai selaimen." -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Teksti tukee peruuttamista, uudelleen tekemistä ja voit käyttää hymiöitä :)" diff --git a/po/extra/fil.po b/po/extra/fil.po index 981f7d7a..f7bac672 100644 --- a/po/extra/fil.po +++ b/po/extra/fil.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,15 +17,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "" -#: data/jorts.desktop.in:4 data/jorts.metainfo.xml.in:43 +#: data/jorts.desktop.in:6 data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "malagkit na tala" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "" "Write down notes, reminders, random thoughts and other short-term " "informations" @@ -33,15 +33,15 @@ msgstr "" "isulat ang mga tala, paalala, random na mga saloobin at iba pang mga " "panandaliang impormasyon" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "teksto; plain; plaintext; notepad; tala; malagkit; post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Bagong malagkit na tala" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 msgid "Show Preferences" msgstr "" @@ -166,7 +166,7 @@ msgstr "" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Ang mga jorts ng ilaw" #: data/jorts.metainfo.xml.in:101 @@ -192,360 +192,364 @@ msgid "Ctrl+M to open note settings now" msgstr "" #: data/jorts.metainfo.xml.in:106 -msgid "Some UI elements show up after being shown, for a sleek vibe" +msgid "Alt+Number to change theme quickly" msgstr "" #: data/jorts.metainfo.xml.in:107 +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "" + +#: data/jorts.metainfo.xml.in:108 msgid "" "New note setting: Monospace. Could be for accessibility, could be for ascii " "doodles" msgstr "" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "" "Cleaner, nicer code under the hood. Probably marginally enhanced " "performances or less edge bugs" msgstr "" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "" "Better commented text and code, for translators and eventual contributors" msgstr "" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "" "Bugfix: Fix Jorts lingering in the background not opening anymore if all " "windows were closed (#77)" msgstr "" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "" "Bugfix: Whole window being grabbable interfered with text editing. Only " "actionbar and header are, now (#75, #76)" msgstr "" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "" "Sa ilalim ng pagbabago ng hood dito at doon para sa mas malinis na code" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "" "Bugfix: When toggled off, the actionbar would leave an empty space. It is " "now fixed - With now a flashier animation to boot." msgstr "" -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Ang mga jorts ng ilaw" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 msgid "Fixed blurrinness in high-scaled display" msgstr "" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "" "Last minute bugfix, somehow accels did not work when the Preferences were " "focused" msgstr "" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 msgid "A lovely temporary icon by @wpkelso" msgstr "" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Pinahusay na pagsasalin" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Ang mga jorts ng ilaw" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Pinahusay na pagsasalin" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Pinahusay na pagsasalin" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Ang mga jorts ng ilaw" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "" "Between this and the GTK4 port, there is very little left from old " "Notejot... We could say it is a v3" msgstr "" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "" "Make the app more universal: Other DEs do not keep window dimensions, so " "reimplement save and restore" msgstr "" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Pinahusay na pagsasalin" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Pinahusay na pagsasalin" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Ang mga jorts ng ilaw" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "" "Thanks to RyoNakano reworking japanese translations, Japanese speakers will " "feel more at home now" msgstr "" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 msgid "Scribble mode exclusively in the preferences now" msgstr "" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "" "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.1.2 Ang hindi nababagabag na mga jorts" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "" "New feature: Preferences dialog! Right-click on the app icon to see the " "option" msgstr "" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "" "For translators: Translations have been separated in 2: One for the UI one " "for the extra content" msgstr "" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "Pinahusay na pagsasalin" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Ang mga jorts ng ilaw" -#: data/jorts.metainfo.xml.in:245 data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Mas mahusay na saklaw ng pagsasalin" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Bagong Tampok: scribbly Mode! " -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "" "New feature: Emoji picker button! I know there is one on right-click, but " "buttons are more accessible!" msgstr "Bagong Tampok: Emoji Picker Button! " -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "" "Ang pindutan sa toolbar ay nagpapakita ng isang random na emote tuwing nag -" "click ka!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "" "New feature: Jorts does a monthly backup. Should there be any issue you can " "recover data!" msgstr "Bagong Tampok: Ang Jorts ay gumagawa ng isang buwanang backup. " -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "" "Dapat bang masira ang pangunahing imbakan, sinubukan ni Jorts na mag -load " "mula sa backup" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Ang ilang mga bagong pamagat ng kasiyahan/cute na default" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "" "Sa ilalim ng pagbabago ng hood dito at doon para sa mas malinis na code" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Ang hindi nababagabag na mga jorts" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Magdagdag ng kaluwagan sa mga pindutan ng ActionBar" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "" "Bugfix: Kaso sa Edge kung saan ang tema o mag -zoom ay maayos na na -save " "nang maayos" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Bugfix: Pamagat sa multitasking hindi itinakda nang tama" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Bugfix: Icon hindi pagkakapare -pareho ng mga tema ng icon ng icon" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "" "Bugfix: Ang mga hindi pagkakapare -pareho ng pag -iingat ay mga stickies" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 sariwa sa paglalaba! " -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "mas malinaw na paglalarawan ng Appmenu" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Mas pare -pareho ang pag -theming" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Bugfix: Ang tinanggal na shortcut ay hindi responsable" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Bugfix: hindi nagpapakita ng screenshot" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 sariwa sa labas ng paglalaba!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "May kasamang per-note zoom! " -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "" "Latest set zoom, aka what is most comfortable to you, stays as default for " "new notes" @@ -553,71 +557,71 @@ msgstr "" "Pinakabagong Set Zoom, AKA Ano ang pinaka komportable sa iyo, mananatili " "bilang default para sa mga bagong tala" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "mas mahusay na pagbabasa (WCAG AA o AAA depende sa tema)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Gayundin bahagyang mas mahusay na naghahanap ng tema. " -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Pinahusay na pagsasalin" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Mas mahusay na shortcut at tooltip" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "" "Naayos ang isang bug kung saan nanatili ang mga jorts sa tema ng light system" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Paglabas ng AppCenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 Paglabas: Slate at Bubblegum" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Revival ng isang sinaunang ngunit mahal na bersyon ng NoteJot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Ang app ngayon ay pinangalanan na Jorts. " -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 kaibig -ibig maliit na kulay" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "" "Itinayo sa itaas ng mga modernong teknolohiya ng Linux at mga format ng " "packaging" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Makinis na paglipat kapag nagbabago ng tema" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "" "Ang mga bagong stickies ay may isang random masaya maliit na pamagat at kulay" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Ang ilang mga paunang pagsasalin ay kasama, at higit pa na darating" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "Ang mga email at mga link ay mai -click! " -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "" "Sinusuportahan ng teksto ang undo, redo, at maaari mong gamitin ang emojis :)" diff --git a/po/extra/fr.po b/po/extra/fr.po index 23f74e7e..4d612fe5 100644 --- a/po/extra/fr.po +++ b/po/extra/fr.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Jorts" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Notes autocollantes" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Notez des notes, des rappels, des pensées aléatoires et d'autres informations à court terme." -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "text;plain;plaintext;notepad;notes;sticky;post-it ;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Nouvelle note autocollante" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Préférences" @@ -144,7 +144,7 @@ msgstr "La boîte de dialogue des préférences en mode sombre" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "3.0.0 Les Jorts du Tonnerre" #: data/jorts.metainfo.xml.in:101 @@ -168,381 +168,385 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M pour ouvrir les paramètres de la note maintenant" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Numéro pour changer rapidement de thème" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Certains éléments de l'interface utilisateur s'affichent après avoir été montrés, ce qui donne une impression d'élégance." -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Nouveau format de note : Monospace. Peut-être pour l'accessibilité, peut-être pour les gribouillis en ascii." -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Un code plus propre et plus agréable sous le capot. Probablement des performances légèrement améliorées ou moins de bogues." -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Texte et code mieux commentés, pour les traducteurs et les contributeurs éventuels" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Correction : Correction des Jorts en arrière-plan qui ne s'ouvrent plus si toutes les fenêtres sont fermées (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Jorts Star Platinum" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Correction : Le fait que toute la fenêtre soit saisissable interférait avec l'édition de texte. Seuls la barre d'action et l'en-tête le sont désormais (#75, #76)." -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Ajout de titres aléatoires" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Boutons pour ajouter/supprimer le démarrage automatique" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "D'autres espaces réservés aux titres" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Changements sous le capot ici et là pour un code plus propre" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Correction : Lorsqu'elle était désactivée, la barre d'action laissait un espace vide. C'est maintenant corrigé - avec une animation plus flashy en prime." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Les Jorts de la lumière" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Ajout d'une petite animation sympa lors de l'activation/désactivation de l'actionbar" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Correction de l'effet de flou dans l'affichage à haute échelle dû à Flathub BS" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Ajout de captures d'écran en haute résolution" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Correction d'un bug de dernière minute, les accels ne fonctionnaient pas lorsque les Préférences étaient focalisées." -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Un peu de ménage pour FR et DE à cette occasion" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Guests stars :" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Édition de la fierté : Une belle icône temporaire par @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Mise à jour des traductions EL grâce à @OrionasKakomoiroglou!" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 msgid "3.1.3 Jorts of fire and lava" msgstr "3.1.3 Les Jorts de feu et de lave" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Économisez de la mémoire et des écritures sur le disque en ajoutant un rebond approprié." -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Mise à jour des traductions IT grâce à @albanobattistella!" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Mise à jour des traductions JA grâce à @RyoNakano!" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Amendements pour flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Rien d'intéressant ici" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Modifications mineures des captures d'écran" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Jorts de chansons et Jorts de danse" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Version Flathub, avec l'aide de @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 msgid "3.0.0 Jorts of Thunder" msgstr "3.0.0 Les Jorts du Tonnerre" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Une nouvelle icône grâce à @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Entre ce portage et celui de GTK4, il ne reste plus grand chose de l'ancien Notejot... On peut dire que c'est une v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Rendre l'application plus universelle : D'autres EDs ne conservent pas les dimensions de la fenêtre, il faut donc réimplémenter la sauvegarde et la restauration." -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Mise à jour des traductions RU grâce à @camellan!" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 msgid "Updated screenshots" msgstr "Traductions mises à jour" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.4.0 Les Jorts de Glace" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Grâce à RyoNakano, qui a retravaillé les traductions japonaises, les locuteurs japonais se sentent désormais plus à l'aise." -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Respecter les paramètres de réduction des animations" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 msgid "Scribble mode exclusively in the preferences now" msgstr "le mode gribouillis a été déplacé dans le nouveau dialogue de préférences" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Ajouter une préférence : vous pouvez désormais masquer la barre inférieure ! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Correction : Correction des éléments qui se déplacent lorsque le titre d'une note est survolé ou sélectionné." -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Bugfix : New and delete accels were not working oops sorry it's fixed now" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Correction d'un bug où les composants aléatoires sautaient le dernier choix possible" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Correction : les raccourcis pour les emotes ne s'affichaient pas correctement." -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Petit œuf de Pâques" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 Le short intérieur" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Nouvelle fonctionnalité : Boîte de dialogue des préférences ! Cliquez avec le bouton droit de la souris sur l'icône de l'application pour voir l'option" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "le mode scribouillard a été déplacé dans le nouveau dialogue de préférences" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Amélioration pour les traducteurs : Les traductions ont été séparées en 2 : une pour l'interface utilisateur et une pour le contenu supplémentaire." -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Confort : Plus facile d'attraper et de faire glisser les autocollants" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Bugfix : Les captures d'écran dans l'appcenter étaient un vrai désordre aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 msgid "Updated translations" msgstr "Traductions mises à jour" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Les Jorts de lumière" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Une meilleure couverture de la traduction" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Nouvelle fonctionnalité : mode scribouillard ! Masquer le contenu des notes autocollantes lorsqu'elles ne sont pas focalisées" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Nouvelle fonctionnalité : Bouton de sélection des emoji ! Je sais qu'il y en a un sur le clic droit, mais les boutons sont plus accessibles !" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Le bouton de la barre d'outils affiche une émoticône aléatoire à chaque fois que vous cliquez !" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Nouvelle fonctionnalité : Jorts effectue une sauvegarde mensuelle. En cas de problème, vous pouvez récupérer vos données !" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Si la mémoire principale est corrompue, Jorts tente de la charger à partir de la mémoire de secours." -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Quelques nouveaux titres par défaut amusants/mignons" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Changements sous le capot ici et là pour un code plus propre" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Les jorts indéformables" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Ajouter du relief aux boutons de la barre d'action" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Bugfix : Cas limite où le thème ou le zoom n'étaient pas correctement sauvegardés." -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Bugfix : Le titre dans le multitâche ne s'affiche pas correctement." -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Correction : Incohérence des icônes entre les thèmes d'icônes" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Bugfix : Incohérences dans la présentation des stickies" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Tout juste sorti de la blanchisserie ! (2 : boogaloo électrique)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Description plus claire du menu de l'application" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Une thématique plus cohérente" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Correction : le raccourci de suppression n'était pas responsable." -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Correction : les captures d'écran ne s'affichent pas" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Tout juste sorti de la blanchisserie !" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Inclut un zoom par note ! Vous pouvez ainsi obtenir un texte plus grand ou plus petit" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Le dernier zoom défini, c'est-à-dire celui qui vous convient le mieux, reste par défaut pour les nouvelles notes." -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Meilleure lisibilité (WCAG AA ou AAA selon le thème)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "De plus, le thème est légèrement plus beau. Oui, encore plus :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Amélioration des traductions" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Amélioration des raccourcis et des infobulles" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Correction d'un bug où les Jorts restaient sur le thème léger du système." -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Version Appcenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "Version 2.0.0 : Ardoise et gomme à bulles" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Renouvellement d'une version ancienne mais très appréciée de Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "L'application s'appelle désormais Jorts. Vous ne pouvez cependant pas la porter" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 jolies petites couleurs" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Construit sur la base des technologies Linux modernes et des formats d'emballage" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Transition douce lors d'un changement de thème" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Les nouveaux stickies ont un titre et une couleur aléatoires et amusants." -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Quelques traductions initiales incluses, et d'autres à venir" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "Les e-mails et les liens sont cliquables ! Ctrl+Clic pour ouvrir dans le courrier ou le navigateur" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Le texte permet d'annuler, de refaire et d'utiliser des émojis :)" diff --git a/po/extra/hi.po b/po/extra/hi.po index 21600aed..1ea3a6d9 100644 --- a/po/extra/hi.po +++ b/po/extra/hi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,29 +17,29 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "जोर्ट्स" -#: data/jorts.desktop.in:4 data/jorts.metainfo.xml.in:43 +#: data/jorts.desktop.in:6 data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "चिपचिपा नोट" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "" "Write down notes, reminders, random thoughts and other short-term " "informations" msgstr "नोट्स, रिमाइंडर, यादृच्छिक विचार और अन्य अल्पकालिक सूचना लिखें" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "पाठ; सादा; प्लेनटेक्स्ट; नोटपैड; नोट; स्टिकी; पोस्ट-इट;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "नया चिपचिपा नोट" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 msgid "Show Preferences" msgstr "" @@ -161,7 +161,7 @@ msgstr "" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 प्रकाश के जोर्ट्स" #: data/jorts.metainfo.xml.in:101 @@ -187,351 +187,355 @@ msgid "Ctrl+M to open note settings now" msgstr "" #: data/jorts.metainfo.xml.in:106 -msgid "Some UI elements show up after being shown, for a sleek vibe" +msgid "Alt+Number to change theme quickly" msgstr "" #: data/jorts.metainfo.xml.in:107 +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "" + +#: data/jorts.metainfo.xml.in:108 msgid "" "New note setting: Monospace. Could be for accessibility, could be for ascii " "doodles" msgstr "" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "" "Cleaner, nicer code under the hood. Probably marginally enhanced " "performances or less edge bugs" msgstr "" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "" "Better commented text and code, for translators and eventual contributors" msgstr "" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "" "Bugfix: Fix Jorts lingering in the background not opening anymore if all " "windows were closed (#77)" msgstr "" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "" "Bugfix: Whole window being grabbable interfered with text editing. Only " "actionbar and header are, now (#75, #76)" msgstr "" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "क्लीनर कोड के लिए यहां और वहां हुड में बदलाव के तहत" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "" "Bugfix: When toggled off, the actionbar would leave an empty space. It is " "now fixed - With now a flashier animation to boot." msgstr "" -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 प्रकाश के जोर्ट्स" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 msgid "Fixed blurrinness in high-scaled display" msgstr "" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "" "Last minute bugfix, somehow accels did not work when the Preferences were " "focused" msgstr "" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 msgid "A lovely temporary icon by @wpkelso" msgstr "" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "बेहतर अनुवाद" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 प्रकाश के जोर्ट्स" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "बेहतर अनुवाद" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "बेहतर अनुवाद" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 प्रकाश के जोर्ट्स" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "" "Between this and the GTK4 port, there is very little left from old " "Notejot... We could say it is a v3" msgstr "" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "" "Make the app more universal: Other DEs do not keep window dimensions, so " "reimplement save and restore" msgstr "" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "बेहतर अनुवाद" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "बेहतर अनुवाद" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 प्रकाश के जोर्ट्स" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "" "Thanks to RyoNakano reworking japanese translations, Japanese speakers will " "feel more at home now" msgstr "" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 msgid "Scribble mode exclusively in the preferences now" msgstr "" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "" "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.1.2 अनियंत्रित जोर्ट्स" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "" "New feature: Preferences dialog! Right-click on the app icon to see the " "option" msgstr "" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "" "For translators: Translations have been separated in 2: One for the UI one " "for the extra content" msgstr "" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "बेहतर अनुवाद" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 प्रकाश के जोर्ट्स" -#: data/jorts.metainfo.xml.in:245 data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "बेहतर अनुवाद कवरेज" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "नई सुविधा: स्क्विगली मोड! " -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "" "New feature: Emoji picker button! I know there is one on right-click, but " "buttons are more accessible!" msgstr "नई सुविधा: इमोजी पिकर बटन! " -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "टूलबार में बटन एक यादृच्छिक emote प्रदर्शित करता है जो आप क्लिक करते हैं!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "" "New feature: Jorts does a monthly backup. Should there be any issue you can " "recover data!" msgstr "नई सुविधा: जोर्ट्स एक मासिक बैकअप करता है। " -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "क्या मुख्य भंडारण भ्रष्ट होना चाहिए, जोर्ट्स बैकअप से लोड करने की कोशिश करता है" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "कुछ नए मज़ा/प्यारा डिफ़ॉल्ट शीर्षक" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "क्लीनर कोड के लिए यहां और वहां हुड में बदलाव के तहत" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 अनियंत्रित जोर्ट्स" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "एक्शनबार बटन में राहत जोड़ें" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "बगफिक्स: एज केस जहां थीम या ज़ूम ठीक से बचाया गया" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "बगफिक्स: मल्टीटास्किंग में शीर्षक सही तरीके से सेट नहीं है" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "बगफिक्स: आइकन असंगतता एक्रॉस आइकन थीम" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "बगफिक्स: थीमिंग असंगतता" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 कपड़े धोने से बाहर ताजा! " -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Clearer AppMenu विवरण" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "अधिक सुसंगत थीमिंग" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "बगफिक्स: डिलीट शॉर्टकट अनुत्तरदायी था" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "बगफिक्स: स्क्रीनशॉट नहीं दिखा रहा है" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 कपड़े धोने से बाहर ताजा!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "एक प्रति-नोट ज़ूम शामिल है! " -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "" "Latest set zoom, aka what is most comfortable to you, stays as default for " "new notes" @@ -539,67 +543,67 @@ msgstr "" "नवीनतम सेट ज़ूम, उर्फ ​​क्या आपके लिए सबसे आरामदायक है, नए नोटों के लिए डिफ़ॉल्ट के रूप में " "रहता है" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "बेहतर पठनीयता (WCAG AA या AAA थीम के आधार पर)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "इसके अलावा थोड़ा बेहतर दिखने वाला विषय। " -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "बेहतर अनुवाद" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "बेहतर शॉर्टकट और टूलटिप्स" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "एक बग फिक्स्ड जहां जोर्ट्स लाइट सिस्टम थीम पर रहे" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 AppCenter रिलीज़" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 रिलीज़: स्लेट और बबलगम" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "नोटजोट के एक प्राचीन लेकिन अच्छी तरह से पसंद किए गए संस्करण का पुनरुद्धार" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "ऐप को अब Jorts नाम दिया गया है। " -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 प्यारे छोटे रंग" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "आधुनिक लिनक्स प्रौद्योगिकियों और पैकेजिंग प्रारूपों का निर्माण" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "थीम को बदलते समय चिकनी संक्रमण" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "नई स्टिकियों में एक यादृच्छिक मजेदार छोटा शीर्षक और रंग होता है" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "कुछ प्रारंभिक अनुवाद शामिल थे, और बहुत कुछ आने के लिए" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "ईमेल और लिंक क्लिक करने योग्य हैं! " -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "पाठ पूर्ववत, redo का समर्थन करता है, और आप emojis का उपयोग कर सकते हैं :)" diff --git a/po/extra/it.po b/po/extra/it.po index 57ab47f8..ac887c4d 100644 --- a/po/extra/it.po +++ b/po/extra/it.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Pantaloncini" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "note appiccicose" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Annota note, promemoria, pensieri casuali e altre informazioni a breve termineScrivi note, promemoria, pensieri casuali e altre informazioni a breve termine" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "Testo; pianura; testo in chiaro; blocco note; note; appiccicoso; post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Nuovo post-it" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Preferenze" @@ -150,7 +150,7 @@ msgstr "La finestra di dialogo delle preferenze in modalità scura" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 The Jorts of Light" #: data/jorts.metainfo.xml.in:101 @@ -174,391 +174,395 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M per aprire subito le impostazioni delle note" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Numero per cambiare rapidamente tema" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Alcuni elementi dell'interfaccia utente vengono visualizzati dopo essere stati mostrati, per un'atmosfera elegante." -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Nuova impostazione della nota: Monospace. Potrebbe essere per l'accessibilità o per gli scarabocchi ascii." -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Codice più pulito e bello sotto il cofano. Probabilmente le prestazioni saranno marginalmente migliorate o i bug saranno ridotti." -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Testo e codice meglio commentati, per i traduttori e gli eventuali collaboratori" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Correzione di bug: correggere Jorts che rimane in background e non si apre più se tutte le finestre sono state chiuse (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Pantaloncini Star Platinum" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Correzione di bug: la possibilità di afferrare l'intera finestra interferiva con la modifica del testo. Ora lo sono solo la barra delle azioni e l'intestazione (#75, #76)." -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Aggiunti altri titoli casuali" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Pulsanti per aggiungere/rimuovere l'avvio automatico" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Altri segnaposti per il titolo" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "sotto il cofano cambia qua e là per il codice più pulito" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Correzione di un bug: se disattivata, la barra delle azioni lasciava uno spazio vuoto. Ora il problema è stato risolto e l'animazione è diventata più appariscente." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 The Jorts of Light" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Aggiunta di una piccola animazione quando si attiva/disattiva la barra d'azione" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Corretta la sfocatura nella visualizzazione ad alta scala a causa di Flathub BS" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Aggiunte schermate ad alta risoluzione" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Correzione di un bug dell'ultimo minuto: in qualche modo gli accel non funzionavano quando le Preferenze erano focalizzate." -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Un po' di pulizia per FR e DE, già che ci sono" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Stelle degli ospiti:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Edizione Pride: Una bella icona temporanea di @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "traduzioni migliorate" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 The Jorts of Light" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Risparmiare memoria e scritture su disco aggiungendo un debounce appropriato" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "traduzioni migliorate" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "traduzioni migliorate" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Emendamenti per il flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Niente di interessante qui" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Modifiche minori alle schermate" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Corti di canzoni e Corti di danza" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Versione Flathub, con un grande aiuto da parte di @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 The Jorts of Light" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Una bella icona nuova di zecca grazie a @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Tra questo e il port GTK4, è rimasto ben poco del vecchio Notejot... Potremmo dire che è una v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Rendere l'applicazione più universale: Altri DE non mantengono le dimensioni delle finestre, quindi reimplementare il salvataggio e il ripristino." -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "traduzioni migliorate" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "traduzioni migliorate" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 The Jorts of Light" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Grazie a RyoNakano che ha rielaborato le traduzioni in giapponese, i parlanti giapponesi si sentiranno più a casa ora" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Rispettare le impostazioni di riduzione delle animazioni" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "La modalità scribbly è stata spostata nella nuova finestra di dialogo delle preferenze." -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Aggiungi preferenza: ora è possibile nascondere la barra inferiore! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Correzione di un bug: elementi fissi che si spostano quando il titolo di una nota viene passato al centro del mouse o selezionato." -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Correzione di un bug: le voci \"nuovo\" e \"elimina\" non funzionavano... Ops, scusate, ora è tutto risolto." -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Correzione del bug per cui i componenti casuali saltavano l'ultima scelta possibile" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Correzione di un bug: la scorciatoia per le emotes non veniva visualizzata correttamente" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Uovo di Pasqua" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.1.2 The irratisable Jorts" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Nuova funzione: Finestra di dialogo delle preferenze! Fare clic con il tasto destro del mouse sull'icona dell'applicazione per visualizzare l'opzione" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "La modalità scribbly è stata spostata nella nuova finestra di dialogo delle preferenze." -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Per i traduttori: Le traduzioni sono state separate in due: una per l'interfaccia utente e una per i contenuti extra." -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Comfort: Più facile afferrare e trascinare gli adesivi" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Correzione di bug: le schermate nell'appcenter erano un pasticcio aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "traduzioni migliorate" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 The Jorts of Light" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "migliore copertura della traduzione" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Nuova funzione: modalità scribbly! " -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Nuova funzione: pulsante Emoji Picker! " -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "il pulsante nella barra degli strumenti visualizza un'emota casuale ogni volta che fai clic!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Nuova funzione: Jorts fa un backup mensile. " -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "se la memoria principale dovesse essere danneggiata, Jorts cerca di caricare dal backup" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "alcuni nuovi titoli predefiniti divertenti/carini" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "sotto il cofano cambia qua e là per il codice più pulito" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 The irratisable Jorts" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Aggiungi sollievo ai pulsanti della barra action" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Bugfix: edge Case in cui il tema o lo zoom non hanno salvato correttamente" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "bugfix: titolo nel multitasking non impostato correttamente" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Bugfix: temi di icona incoerenza icona" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Bugfix: Temica incoerenze Accrossing stickies" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Fresco dalla lavanderia! " -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Descrizione Appmen più chiara" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "temi più coerenti" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Bugfix: la scorciatoia elimina non era risparmiata" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "bugfix: screenshot non mostra" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Fresco dalla lavanderia!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "include uno zoom per nota! " -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "ultimo set zoom, alias ciò che è più comodo per te, rimane come predefinito per le nuove note" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "migliore leggibilità (WCAG AA o AAA a seconda del tema)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "anche un tema leggermente migliore. " -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "traduzioni migliorate" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "migliore scorciatoia e attrezzi" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "risolto un bug in cui Jorts rimase sul tema del sistema di luce" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Rilascio di AppCenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 Release: Slate e Bubblegum" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "revival di una versione antica ma molto amata di Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "l'app è ora chiamata Jorts. " -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 adorabili piccoli colori" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "costruito in cima alle moderne tecnologie Linux e formati di imballaggio" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "transizione regolare quando si cambia tema" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "i nuovi stickies hanno un piccolo titolo e un colore casuali" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "alcune traduzioni iniziali incluse e altre a venire" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "e -mail e collegamenti sono cliccabili! " -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "il testo supporta annullare, rifare e puoi usare emoji :)" diff --git a/po/extra/ja.po b/po/extra/ja.po index faceb1cb..17537382 100644 --- a/po/extra/ja.po +++ b/po/extra/ja.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: Ryo Nakano \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-05-11 20:29+0900\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Jorts" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "付箋" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "メモ、備忘録、思いつき、その他短期的な情報を書き留めます" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "text;plain;plaintext;notepad;notes;sticky;post-it;テキスト;プレーンテキスト;メモ帳;メモ;付箋;ポストイット;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "新しい付箋" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "着こなす" @@ -145,7 +145,7 @@ msgstr "ダークモードでの設定ダイアログ" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "3.0.0 光のジョーツ" #: data/jorts.metainfo.xml.in:101 @@ -169,388 +169,392 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+Mでノート設定を開く" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+数字でテーマを素早く変更" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "いくつかのUI要素は、表示された後に表示され、スマートな雰囲気を演出する。" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "新しいノート設定:モノスペース。アクセシビリティのためかもしれないし、アスキー落書きのためかもしれない。" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "ボンネットの下は、よりクリーンできれいなコードになっている。おそらく、パフォーマンスがわずかに向上するか、エッジのバグが減るだろう" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "翻訳者と最終的な貢献者のために、より良いコメント付きテキストとコード" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "バグフィックス:全てのウィンドウを閉じた場合、バックグラウンドに残っているJortsが開かなくなる問題を修正 (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 スター・プラチナム・ジョーツ" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "バグ修正: ウィンドウ全体がグラブ可能になり、テキスト編集の妨げになっていた。アクションバーとヘッダーのみがグラブ可能に (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "ランダムタイトルを追加" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "自動起動の追加/削除ボタン" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "タイトルのプレースホルダー" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "よりクリーンなコードを実現するために、ボンネットのあちこちに変更を加えた。" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "バグフィックス:オフに切り替えると、アクションバーが空いたスペースになる。より派手なアニメーションも追加されました。" -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 光のジョーツ" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "アクションバーの有効化/無効化時にクールな小さなアニメーションを追加" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Flathub BSによる高倍率表示のぼやけを修正" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "高解像度のスクリーンショットを追加" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "環境設定にフォーカスが当たっているときにアクセルが機能しない不具合を修正。" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "ついでにFRとDEも少し整理しておこう。" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "ᘎ ゲストの星:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "プライド編:wpkelsoによる素敵な仮アイコン" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "翻訳の更新" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 光のジョーツ" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "適切なデバウンスを追加することで、メモリとディスクの書き込みを節約" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "翻訳の更新" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "翻訳の更新" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 フラサブの改正点" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "面白いことは何もない" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 ウープス" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "スクリーンショットの修正" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 歌のジョーツと踊りのジョーツ" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Flathubバージョン、@RyoNakanoの協力による" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "3.0.0 光のジョーツ" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "wpkelsoのおかげで、素敵な新しいアイコンを手に入れることができた。" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "これとGTK4の移植の間には、古いNotejotからほとんど何も残っていない...。これはv3だと言える" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "アプリをよりユニバーサルに:他のDEはウィンドウの寸法を保持しないので、保存と復元を再実装する。" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "翻訳の更新" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "翻訳の更新" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.4.0 光のジョーツ" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "RyoNakanoが日本語訳を手直ししてくれたおかげで、日本語を母語とする人たちはよりくつろげるようになった。" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "アニメーションの削減設定を尊重する" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "スクリブリーモードは新しい環境設定ダイアログに移動しました。" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "環境設定の追加:これで下のバーを隠すことができます!(Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "バグ修正:ノートタイトルにカーソルを合わせたり、選択したりすると、要素が移動する不具合を修正しました。" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "バグ修正:新規登録と削除が機能していなかった。" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "ランダムコンポーネントが最後の選択肢をスキップするバグを修正。" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "エモートのショートカットが正しく表示されなかったバグを修正" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "リル・イースター・エッグ" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 インナージョーツ" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "新機能環境設定ダイアログ!アプリのアイコンを右クリックするとオプションが表示されます。" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "スクリブリーモードは新しい環境設定ダイアログに移動しました。" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "翻訳者の方へ:翻訳は2つに分けられました:1つはUI用、もう1つは追加コンテンツ用です。" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "快適さ:付箋をつかみやすく、ドラッグしやすい" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "バグ修正:appcenterのスクリーンショットが乱れていた。" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 msgid "Updated translations" msgstr "翻訳の更新" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 光のジョーツ" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "より良い翻訳カバレッジ" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "新機能:走り書きモード!非フォーカス時に付箋の内容を隠す" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "新機能絵文字ピッカー・ボタン!右クリックにあるのは知っていますが、ボタンがある方がよりアクセスしやすいです!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "ツールバーのボタンは、クリックするたびにランダムなエモーションを表示する!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "新機能:ジョーツは毎月バックアップを取ります。万が一問題が発生しても、データを復旧することができます!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "メインストレージが破損した場合、Jortsはバックアップからロードしようとする。" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "新しい楽しい/かわいいデフォルト・タイトル" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "よりクリーンなコードを実現するために、ボンネットのあちこちに変更を加えた。" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 アンリッパブル・ジョーツ" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "アクションバーボタンにレリーフを追加" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "テーマやズームが正しく保存されないエッジケースを修正。" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "マルチタスクのタイトルが正しく設定されないバグを修正" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "アイコンテーマ間のアイコンの不一致を修正" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "バグフィックス:付箋間のテーミングの不一致" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 洗濯したて!(2: エレクトリック・ブーガルー)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "より明確なアプリメニューの説明" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "より一貫したテーマ設定" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "バグ修正:削除ショートカットが無責任だった" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "スクリーンショットが表示されないバグを修正" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 洗濯から出したばかり!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "ノート単位のズーム機能付き!文字を大きくしたり小さくしたりできます" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "直近に設定したズーム、つまり最も使いやすいズームが、新しいノートのデフォルトとして維持される" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "読みやすさの向上(テーマによってはWCAG AAまたはAAA)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "また、少し見栄えのするテーマでもある。そう、さらに)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "翻訳の改善" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "ショートカットとツールチップの改善" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Jortsがライトシステムのテーマに表示されたままになるバグを修正" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Appcenterリリース" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0リリーススレートとバブルガム" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "古いが愛されているノートジョットのリバイバル版" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "このアプリはJortsという名前になった。しかし、あなたはそれを着用することはできません" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10色の小さな可愛い色" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "最新のLinuxテクノロジーとパッケージング・フォーマットの上に構築されている。" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "テーマ変更時のスムーズな移行" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "新しい付箋には、ランダムで楽しい小さなタイトルと色が付けられています。" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "最初の翻訳をいくつか掲載。" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "メールやリンクはクリックできます!Ctrl+クリックでメールまたはブラウザで開く" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "テキストは元に戻したり、やり直したりできる。)" diff --git a/po/extra/lt.po b/po/extra/lt.po index 50859335..adbf1cf0 100644 --- a/po/extra/lt.po +++ b/po/extra/lt.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Šortai" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Lipnūs užrašai" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Užsirašykite pastabas, priminimus, atsitiktines mintis ir kitą trumpalaikę informaciją" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "tekstas;paprastas;paprastas tekstas;užrašų knygutė;užrašai;lipnus;post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Naujas lipnus lapelis" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Nustatymai" @@ -149,7 +149,7 @@ msgstr "Nustatymų dialogo langas tamsiuoju režimu" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Šviesos šortai" #: data/jorts.metainfo.xml.in:101 @@ -173,389 +173,393 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M, kad atidarytumėte pastabų nustatymus dabar" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Number, kad greitai pakeistumėte temą" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Kai kurie vartotojo sąsajos elementai rodomi po to, kai yra rodomi, kad būtų sukurta elegantiška atmosfera." -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Naujas pastabų nustatymas: Monospace. Gali būti dėl prieinamumo, gali būti dėl ascii piešinių." -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Švaresnis ir gražesnis kodas po gaubtu. Tikriausiai nežymiai pagerintas veikimas arba mažiau kraštinių klaidų" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Geriau pakomentuotas tekstas ir kodas, skirtas vertėjams ir galimai prisidėsiantiems autoriams" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Klaidų taisymas: ištaisyta fone išliekanti \"Jorts\" funkcija, kuri nebeatsidaro, jei visi langai buvo uždaryti (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 \"Star Platinum Jorts" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Klaidų taisymas: Viso lango patraukimas trukdė redaguoti tekstą. Dabar taip veikia tik veiksmų juosta ir antraštė (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Pridėta daugiau atsitiktinių pavadinimų" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Mygtukai pridėti / pašalinti automatinio paleidimo funkciją" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Dar keletas pavadinimų pakaitinių pavadinimų" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Pakeitimai po gaubtu, kad kodas būtų švaresnis" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Klaidų taisymas: išjungus veiksmų juostą, veiksmų juostoje likdavo tuščia vieta. Dabar tai ištaisyta." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Šviesos šortai" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Įjungiant/išjungiant veiksmų juostą pridėti šaunią animaciją" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Ištaisytas dėl \"Flathub BS\" atsiradęs didelio mastelio ekrano neryškumas" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Pridėta didelės skiriamosios gebos ekrano nuotraukų" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Paskutinės minutės klaidos taisymas, kažkodėl accels neveikė, kai buvo sukoncentruotos Nustatymai" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Šiek tiek tvarkymosi FR ir DE, o tuo tarpu" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Svečių žvaigždutės:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Pride Edition: @wpkelso sukurta miela laikina ikona" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Atnaujinti vertimai" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Šviesos šortai" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Taupykite atmintį ir įrašus į diską, pridėdami tinkamą atmetimo funkciją" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Atnaujinti vertimai" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Atnaujinti vertimai" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Pakeitimai dėl plokščiojo vamzdžio" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Nieko įdomaus čia nėra" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 \"Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Nedideli ekrano nuotraukos pakeitimai" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Dainų ir šokių šortai" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Flathub versija, su didele @RyoNakano pagalba" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Šviesos šortai" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Graži nauja piktograma @wpkelso dėka" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Tarp šio ir GTK4 prievado iš senojo \"Notejot\" liko labai nedaug... Galima sakyti, kad tai yra v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Padarykite programėlę universalesnę: Kiti DE neišlaiko lango matmenų, todėl iš naujo įgyvendinkite išsaugojimą ir atkūrimą." -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Atnaujinti vertimai" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Atnaujinti vertimai" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Šviesos šortai" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Dėka RyoNakano, pertvarkiusio japonų kalbos vertimus, japonakalbiai dabar galės jaustis kaip namie" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Laikykitės animacijos mažinimo nustatymų" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "\"scribbly\" režimas perkeltas į naująjį nustatymų dialogo langą" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Pridėti pageidavimą: dabar galite paslėpti apatinę juostą! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Klaidų taisymas: ištaisytas elementų judėjimas, kai užrašo pavadinimas užvedamas arba pasirenkamas." -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Klaidų taisymas: Naujas ir ištrinti accels neveikė oops atsiprašome, kad tai jau ištaisyta" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Klaidų taisymas, kai atsitiktiniai komponentai praleisdavo paskutinį galimą pasirinkimą" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Klaidų taisymas: trumpasis klavišas, skirtas emotikonams, nebuvo rodomas tinkamai" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Lil velykinis kiaušinis" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 Vidiniai šortai" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Nauja funkcija: Nustatymų dialogas! Dešiniuoju pelės klavišu spustelėkite programos piktogramą, kad pamatytumėte parinktį" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "\"scribbly\" režimas perkeltas į naująjį nustatymų dialogo langą" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 #, fuzzy msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Vertėjams skirtas patobulinimas: Vienas iš jų skirtas vartotojo sąsajai, kitas - papildomam turiniui." -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Patogumas: Lengviau paimti ir vilkti lipdukus" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Klaidų taisymas: ekrano nuotraukos programėlėje buvo netvarkingos aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 msgid "Updated translations" msgstr "Atnaujinti vertimai" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Šviesos šortai" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Geresnė vertimo aprėptis" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Nauja funkcija: \"scribbly\" režimas! Paslėpkite lipnių užrašų turinį, kai nesufokusuojama" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Nauja funkcija: Emocijų rinkimo mygtukas! Žinau, kad dešiniuoju pelės klavišu yra vienas, bet mygtukai yra labiau prieinami!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Įrankių juostoje esantis mygtukas kiekvieną kartą spustelėjus parodo atsitiktinę emociją!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Nauja funkcija: \"Jorts\" kas mėnesį daro atsarginę kopiją. Jei kiltų kokių nors problemų, galite atkurti duomenis!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Jei pagrindinė saugykla būtų sugadinta, \"Jorts\" bando įkelti iš atsarginės kopijos" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Keletas naujų smagių / mielų numatytųjų pavadinimų" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Pakeitimai po gaubtu, kad kodas būtų švaresnis" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Neišsipildantys šortai" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Veiksmų juostos mygtukų reljefo pridėjimas" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Klaidų taisymas: kraštinis atvejis, kai tema arba priartinimas nebuvo tinkamai išsaugoti" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Klaidų taisymas: neteisingai nustatytas daugiaprogramės programos pavadinimas" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Klaidų taisymas: piktogramų nenuoseklumas įvairiose piktogramų temose" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Klaidų taisymas: Temos neatitikimai tarp lipdukų" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Ką tik iš skalbyklos! (2: Electric Boogaloo)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Aiškesnis programėlės meniu aprašymas" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Nuoseklesnė tematika" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Klaidų taisymas: trinti nuorodą buvo neatsakinga" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Klaidų taisymas: nerodoma ekrano nuotrauka" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Ką tik iš skalbyklos!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Įtrauktas kiekvienos natos priartinimas! Taigi galite gauti didesnį arba mažesnį tekstą" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Paskutinis nustatytas priartinimas, dar žinomas kaip jums patogiausias, išlieka numatytuoju naujiems užrašams." -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Geresnis skaitomumas (WCAG AA arba AAA, priklausomai nuo temos)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Taip pat šiek tiek geriau atrodanti tema. Taip, net daugiau :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Patobulinti vertimai" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Geresnės sparčiųjų klavišų ir įrankių nuorodos" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Ištaisyta klaida, kai \"Jorts\" likdavo ant šviesos sistemos temos" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 \"Appcenter\" išleidimas" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 išleidimas: Šlaitas ir kramtomoji guma" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Senovinės, bet labai mėgstamos \"Notejot\" versijos atgaivinimas" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Dabar programėlė pavadinta \"Jorts\". Tačiau jūs negalite jos dėvėti" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 gražių mažų spalvų" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Sukurta remiantis šiuolaikinėmis \"Linux\" technologijomis ir pakuočių formatais." -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Sklandus perėjimas keičiant temą" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Nauji lipdukai turi atsitiktinį linksmą pavadinimą ir spalvą" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Keletas pradinių vertimų ir dar daugiau vertimų" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "El. paštą ir nuorodas galima spustelėti! Ctrl+paspauskite, jei norite atidaryti laišką arba naršyklę" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Tekstas palaiko atšaukimo ir pakartotinio atšaukimo funkcijas, be to, galite naudoti šypsenėles :)" diff --git a/po/extra/nb.po b/po/extra/nb.po index 9fd99ae9..8cb91887 100644 --- a/po/extra/nb.po +++ b/po/extra/nb.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Jorts" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Klistrelapper" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Skriv ned notater, påminnelser, tilfeldige tanker og annen kortsiktig informasjon" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "tekst;ren;rentekst;notisblokk;notater;klistrelapper;post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Ny klistrelapp" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Innstillinger" @@ -149,7 +149,7 @@ msgstr "Innstillingsdialogen i mørk modus" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Lysets Jorts" #: data/jorts.metainfo.xml.in:101 @@ -173,390 +173,394 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M for å åpne notatinnstillinger nå" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Number for å skifte tema raskt" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Noen UI-elementer vises etter at de har blitt vist, for å gi et elegant uttrykk" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Ny notatinnstilling: Monospace. Kan være for tilgjengelighet, kan være for ascii-kruseduller" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Renere og finere kode under panseret. Sannsynligvis marginalt forbedret ytelse eller færre kantfeil" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Bedre kommentert tekst og kode, for oversettere og eventuelle bidragsytere" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Feilretting: Jorts som dveler i bakgrunnen, åpnes ikke lenger hvis alle vinduer er lukket (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Star Platinum Jorts" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Feilretting: Hele vinduet som kan gripes, forstyrret tekstredigering. Nå er det bare actionbar og topptekst som er det (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Lagt til flere tilfeldige titler" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Knapper for å legge til/fjerne autostart" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Noen flere tittelplassholdere" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Endringer under panseret her og der for renere kode" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Feilretting: Når aksjonslinjen ble slått av, etterlot den en tom plass. Dette er nå fikset - med en mer prangende animasjon i tillegg." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Legg til en kul liten animasjon når du aktiverer/deaktiverer actionbar" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Fikset uskarphet i høyskalerte skjermbilder på grunn av Flathub BS" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Lagt til høyoppløselige skjermbilder" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Siste øyeblikk bugfix, på en eller annen måte fungerte ikke accels når preferansene var fokusert" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Litt husarbeid for FR og DE mens vi er i gang" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Gjester stjerner:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Pride-utgaven: Et nydelig midlertidig ikon av @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Spar minne og diskskriving ved å legge til en skikkelig debounce" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Endringer for flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Ikke noe interessant her" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Mindre endringer i skjermbildet" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Jorts av sanger og Jorts av dans" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Flathub-versjon, med mye hjelp fra @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Et nydelig nytt ikon takket være @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Mellom denne og GTK4-porten er det svært lite igjen av gamle Notejot ... Vi kan si at det er en v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Gjør appen mer universell: Andre DE-er beholder ikke vindusdimensjonene, så lagre og gjenopprett på nytt" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Takket være RyoNakanos omarbeiding av japanske oversettelser vil japanskspråklige føle seg mer hjemme nå" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Respekter innstillinger for reduksjon av animasjoner" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "Skriblerimodus er flyttet til den nye innstillingsdialogen" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Legg til preferanse: Nå kan du skjule den nederste linjen! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Feilretting: Fikset elementer som flytter seg når en notattittel holdes over eller velges" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Feilretting: Nye og slettede akselerasjoner fungerte ikke, beklager, det er fikset nå" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Feilretting der tilfeldige komponenter hoppet over det siste mulige valget" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Feilretting: Snarvei for emotes ble ikke vist riktig" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Lille påskeegg" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.1.2 De uoppnåelige jortene" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Ny funksjon: Dialogboksen Innstillinger! Høyreklikk på appikonet for å se alternativet" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "Skriblerimodus er flyttet til den nye innstillingsdialogen" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "For oversettere: Oversettelsene har blitt delt i to: En for brukergrensesnittet og en for det ekstra innholdet" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Komfort: Lettere å gripe og dra i klistremerker" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Feilretting: Skjermbilder i Appcenter var rotete" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Bedre dekning av oversettelser" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Ny funksjon: kladdemodus! Skjul innholdet på klistrelapper når du ikke fokuserer" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Ny funksjon: Emoji-velgerknapp! Jeg vet at det finnes en på høyreklikk, men knapper er mer tilgjengelige!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Knappen i verktøylinjen viser en tilfeldig emote hver gang du klikker!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Ny funksjon: Jorts tar en månedlig sikkerhetskopi. Skulle det oppstå problemer, kan du gjenopprette data!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Hvis hovedlageret blir ødelagt, prøver Jorts å laste inn fra sikkerhetskopien" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Noen nye morsomme/søte standardtitler" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Endringer under panseret her og der for renere kode" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 De uoppnåelige jortene" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Legg til relieff på knappene på handlingsfeltet" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Feilretting: Kanttilfelle der tema eller zoom ikke ble lagret på riktig måte" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Feilretting: Tittel i multitasking ble ikke satt riktig" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Feilretting: Inkonsistens mellom ikonetemaer" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Feilretting: Uoverensstemmelser i tematikk på tvers av klistremerker" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Fersk fra klesvasken! (2: elektrisk boogaloo)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Tydeligere beskrivelse av appmenyen" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Mer konsekvent tematisering" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Feilretting: snarveien for sletting var uansvarlig" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Feilretting: skjermbilde vises ikke" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Fersk fra vaskeriet!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Inkluderer zoom per note! Så du kan få større eller mindre tekst" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Den siste innstilte zoomen, dvs. den som er mest komfortabel for deg, forblir standard for nye notater" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Bedre lesbarhet (WCAG AA eller AAA avhengig av tema)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Også litt bedre utseende tema. Ja enda mer :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Bedre snarveier og verktøytips" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Fikset en feil der Jorts ble værende på det lyse systemtemaet" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Appcenter-utgivelse" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0-utgivelse: Skifer og Bubblegum" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Gjenopplivning av en gammel, men elsket versjon av Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Appen heter nå Jorts. Du kan imidlertid ikke bruke den" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 herlige små farger" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Bygger på moderne Linux-teknologier og pakkeformater" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Jevn overgang når du bytter tema" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Nye stickies har en tilfeldig morsom liten tittel og farge" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Noen få innledende oversettelser er inkludert, og flere vil komme" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "E-post og lenker er klikkbare! Ctrl+Klikk for å åpne i e-post eller nettleser" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Tekst støtter angre, gjøre om, og du kan bruke emojis :)" diff --git a/po/extra/nl.po b/po/extra/nl.po index b87f0c01..f037f86b 100644 --- a/po/extra/nl.po +++ b/po/extra/nl.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Korte broek" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Sticky Notes" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "noteer notities, herinneringen, willekeurige gedachten en andere kortetermijninformaties" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "tekst; vlakte; platte tekst; notitieblok; notities; plakkerig; post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Nieuwe Sticky Note" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Voorkeuren" @@ -150,7 +150,7 @@ msgstr "Het voorkeurenvenster in donkere modus" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 The Jorts of Light" #: data/jorts.metainfo.xml.in:101 @@ -174,391 +174,395 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M om nu notitie-instellingen te openen" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Nummer om snel van thema te veranderen" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Sommige UI-elementen verschijnen nadat ze zijn getoond, voor een strakke vibe" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Nieuwe notitie-instelling: Monospace. Kan voor toegankelijkheid zijn, kan voor ascii doodles zijn" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Schonere, mooiere code onder de motorkap. Waarschijnlijk marginaal verbeterde prestaties of minder randbugs" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Beter becommentarieerde tekst en code, voor vertalers en eventuele bijdragers" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Verbetering: Fix Jorts die op de achtergrond blijven hangen worden niet meer geopend als alle vensters gesloten zijn (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Star Platinum Jorts" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Verbetering: Het hele venster dat vastgepakt kon worden stoorde het bewerken van tekst. Alleen actiebalk en koptekst zijn dat nu (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Meer willekeurige titels toegevoegd" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Knoppen voor toevoegen/verwijderen autostart" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Nog wat titelplaatshouders" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Onder de motorkap verandert hier en daar voor reinigingscode" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Verbetering: Als je de actiebalk uitschakelde, bleef er een lege ruimte over. Dit is nu verholpen - met een mooiere animatie." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 The Jorts of Light" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Een leuke animatie toevoegen bij het inschakelen/uitschakelen van de actiebalk" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Wazigheid in hoge weergave door Flathub BS verholpen" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Schermafbeeldingen in hoge resolutie toegevoegd" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Bugfix op het laatste moment, op de een of andere manier werkten accels niet wanneer de Voorkeuren waren geconcentreerd" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Een beetje huishoudelijk werk voor FR en DE nu we toch bezig zijn" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "Gasten sterren:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Trots editie: Een mooi tijdelijk pictogram door @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "verbeterde vertalingen" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 The Jorts of Light" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Bespaar geheugen en schijfschrijvingen door een goede debounce toe te voegen" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "verbeterde vertalingen" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "verbeterde vertalingen" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Wijzigingen voor flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Niets interessants hier" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Kleine wijzigingen in schermafbeeldingen" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Jorts van liedjes en Jorts van dans" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Flathub-versie, met veel hulp van @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 The Jorts of Light" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Een prachtig gloednieuw pictogram dankzij @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Tussen dit en de GTK4 port is er weinig over van het oude Notejot... We zouden kunnen zeggen dat het een v3 is" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Maak de app universeler: Andere DE's houden de vensterdimensies niet bij, dus herimplementeer opslaan en herstellen" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "verbeterde vertalingen" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "verbeterde vertalingen" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 The Jorts of Light" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Dankzij RyoNakano die de Japanse vertalingen herwerkt, zullen Japanssprekenden zich nu meer thuis voelen" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Instellingen voor het verminderen van animaties respecteren" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "scribblymodus is verplaatst naar het nieuwe voorkeurenvenster" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Voorkeur toevoegen: nu kun je de onderste balk verbergen! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Verbetering: Vaste elementen bewegen wanneer een notitietitel wordt aangeklikt of geselecteerd" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Verbetering: Nieuwe en verwijder accels werkten niet oeps sorry het is nu opgelost" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Bugfix waarbij willekeurige componenten de laatst mogelijke keuze oversloegen" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Verbetering: snelkoppeling voor emotes werd niet goed weergegeven" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Lil paasei" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.1.2 De niet te rappen Jorts" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Nieuwe functie: Voorkeuren dialoog! Klik met de rechtermuisknop op het pictogram van de app om de optie te zien" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "scribblymodus is verplaatst naar het nieuwe voorkeurenvenster" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Voor vertalers: De vertalingen zijn opgesplitst in 2: Een voor de UI en een voor de extra inhoud." -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Comfort: Makkelijker om stickies te pakken en slepen" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Verbetering: schermafbeeldingen in het appcenter waren een rommeltje aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "verbeterde vertalingen" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 The Jorts of Light" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Betere vertaaldekking" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Nieuwe functie: scribbly -modus! " -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Nieuwe functie: Emoji Picker -knop! " -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "De knop op de werkbalk geeft elke keer dat u klikt een willekeurige emote weer!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Nieuwe functie: Jorts doet een maandelijkse back -up. " -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Mocht de hoofdopslag worden beschadigd, probeert Jorts te laden van back -up" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Enkele nieuwe leuke/schattige standaardtitels" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Onder de motorkap verandert hier en daar voor reinigingscode" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 De niet te rappen Jorts" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Voeg reliëf toe aan actiebar -knoppen" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Bugfix: edge case waarbij het thema of zoom derwijd op de juiste manier opgeslagen" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "bugfix: titel in multitasking niet correct ingesteld" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Bugfix: icon inconsistentie Accross -pictogramthema's" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Bugfix: theming inconsistenties accross stickies" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Vers uit de was! " -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Duidelijke AppMenu -beschrijving" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Meer consistent thema" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Bugfix: De snelkoppel verwijderde niet -verantwoordelijk" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "bugfix: screenshot niet te zien" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Vers uit de was!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Inclusief een zoom per noot! " -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "nieuwste set -zoom, aka wat voor u het meest comfortabel is, blijft standaard voor nieuwe notities" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Betere leesbaarheid (WCAG AA of AAA afhankelijk van het thema)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Ook iets beter uitziend thema. " -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "verbeterde vertalingen" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Betere snelkoppeling en tooltips" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "een bug opgelost waarbij Jorts op het licht van het lichtsysteem bleef" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Release van AppCenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 Release: leisteen en bubblegum" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Revival van een oude maar zeer geliefde versie van NoteJot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "De app heet nu Jorts. " -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 mooie kleine kleuren" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Gebouwd bovenop van moderne Linux -technologieën en verpakkingsformaten" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Soepel overgang bij het veranderen van het thema" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Nieuwe Stickies hebben een willekeurige leuke kleine titel en kleur" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Een paar eerste vertalingen inbegrepen, en nog meer komen" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "E -mail en links zijn klikbaar! " -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Tekst ondersteunt ongedaan maken, redo, en u kunt emoji's gebruiken :)" diff --git a/po/extra/no.po b/po/extra/no.po index cd61bdb2..fd494cf0 100644 --- a/po/extra/no.po +++ b/po/extra/no.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,15 +12,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Jorts" -#: data/jorts.desktop.in:4 data/jorts.metainfo.xml.in:43 +#: data/jorts.desktop.in:6 data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Klistrelapper" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "" "Write down notes, reminders, random thoughts and other short-term " "informations" @@ -28,15 +28,15 @@ msgstr "" "Skriv ned notater, påminnelser, tilfeldige tanker og annen kortsiktig " "informasjon" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "tekst;ren;rentekst;notisblokk;notater;klistrelapper;post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Ny klistrelapp" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Innstillinger" @@ -164,7 +164,7 @@ msgstr "Innstillingsdialogen i mørk modus" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Lysets Jorts" #: data/jorts.metainfo.xml.in:101 @@ -190,185 +190,189 @@ msgid "Ctrl+M to open note settings now" msgstr "" #: data/jorts.metainfo.xml.in:106 -msgid "Some UI elements show up after being shown, for a sleek vibe" +msgid "Alt+Number to change theme quickly" msgstr "" #: data/jorts.metainfo.xml.in:107 +msgid "Some UI elements show up after being shown, for a sleek vibe" +msgstr "" + +#: data/jorts.metainfo.xml.in:108 msgid "" "New note setting: Monospace. Could be for accessibility, could be for ascii " "doodles" msgstr "" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "" "Cleaner, nicer code under the hood. Probably marginally enhanced " "performances or less edge bugs" msgstr "" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "" "Better commented text and code, for translators and eventual contributors" msgstr "" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "" "Bugfix: Fix Jorts lingering in the background not opening anymore if all " "windows were closed (#77)" msgstr "" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "" "Bugfix: Whole window being grabbable interfered with text editing. Only " "actionbar and header are, now (#75, #76)" msgstr "" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Endringer under panseret her og der for renere kode" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "" "Bugfix: When toggled off, the actionbar would leave an empty space. It is " "now fixed - With now a flashier animation to boot." msgstr "" -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 msgid "Fixed blurrinness in high-scaled display" msgstr "" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "" "Last minute bugfix, somehow accels did not work when the Preferences were " "focused" msgstr "" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 msgid "A lovely temporary icon by @wpkelso" msgstr "" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "" "Between this and the GTK4 port, there is very little left from old " "Notejot... We could say it is a v3" msgstr "" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "" "Make the app more universal: Other DEs do not keep window dimensions, so " "reimplement save and restore" msgstr "" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "" "Thanks to RyoNakano reworking japanese translations, Japanese speakers will " "feel more at home now" @@ -376,51 +380,51 @@ msgstr "" "Takket være RyoNakanos omarbeiding av japanske oversettelser vil " "japanskspråklige føle seg mer hjemme nå" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Respekter innstillinger for reduksjon av animasjoner" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "Skriblerimodus er flyttet til den nye innstillingsdialogen" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Legg til preferanse: Nå kan du skjule den nederste linjen! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "" "Feilretting: Fikset elementer som flytter seg når en notattittel holdes over " "eller velges" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "" "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "" "Feilretting: Nye og slettede akselerasjoner fungerte ikke, beklager, det er " "fikset nå" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "" "Feilretting der tilfeldige komponenter hoppet over det siste mulige valget" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Feilretting: Snarvei for emotes ble ikke vist riktig" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Lille påskeegg" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.1.2 De uoppnåelige jortene" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "" "New feature: Preferences dialog! Right-click on the app icon to see the " "option" @@ -428,11 +432,11 @@ msgstr "" "Ny funksjon: Dialogboksen Innstillinger! Høyreklikk på appikonet for å se " "alternativet" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "Skriblerimodus er flyttet til den nye innstillingsdialogen" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "" "For translators: Translations have been separated in 2: One for the UI one " "for the extra content" @@ -440,34 +444,34 @@ msgstr "" "For oversettere: Oversettelsene har blitt delt i to: En for " "brukergrensesnittet og en for det ekstra innholdet" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Komfort: Lettere å gripe og dra i klistremerker" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Feilretting: Skjermbilder i Appcenter var rotete" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Lysets Jorts" -#: data/jorts.metainfo.xml.in:245 data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Bedre dekning av oversettelser" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "" "Ny funksjon: kladdemodus! Skjul innholdet på klistrelapper når du ikke " "fokuserer" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "" "New feature: Emoji picker button! I know there is one on right-click, but " "buttons are more accessible!" @@ -475,11 +479,11 @@ msgstr "" "Ny funksjon: Emoji-velgerknapp! Jeg vet at det finnes en på høyreklikk, men " "knapper er mer tilgjengelige!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Knappen i verktøylinjen viser en tilfeldig emote hver gang du klikker!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "" "New feature: Jorts does a monthly backup. Should there be any issue you can " "recover data!" @@ -487,73 +491,73 @@ msgstr "" "Ny funksjon: Jorts tar en månedlig sikkerhetskopi. Skulle det oppstå " "problemer, kan du gjenopprette data!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "" "Hvis hovedlageret blir ødelagt, prøver Jorts å laste inn fra sikkerhetskopien" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Noen nye morsomme/søte standardtitler" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Endringer under panseret her og der for renere kode" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 De uoppnåelige jortene" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Legg til relieff på knappene på handlingsfeltet" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "" "Feilretting: Kanttilfelle der tema eller zoom ikke ble lagret på riktig måte" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Feilretting: Tittel i multitasking ble ikke satt riktig" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Feilretting: Inkonsistens mellom ikonetemaer" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Feilretting: Uoverensstemmelser i tematikk på tvers av klistremerker" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Fersk fra klesvasken! (2: elektrisk boogaloo)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Tydeligere beskrivelse av appmenyen" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Mer konsekvent tematisering" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Feilretting: snarveien for sletting var uansvarlig" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Feilretting: skjermbilde vises ikke" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Fersk fra vaskeriet!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Inkluderer zoom per note! Så du kan få større eller mindre tekst" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "" "Latest set zoom, aka what is most comfortable to you, stays as default for " "new notes" @@ -561,68 +565,68 @@ msgstr "" "Den siste innstilte zoomen, dvs. den som er mest komfortabel for deg, " "forblir standard for nye notater" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Bedre lesbarhet (WCAG AA eller AAA avhengig av tema)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Også litt bedre utseende tema. Ja enda mer :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Forbedrede oversettelser" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Bedre snarveier og verktøytips" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Fikset en feil der Jorts ble værende på det lyse systemtemaet" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Appcenter-utgivelse" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0-utgivelse: Skifer og Bubblegum" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Gjenopplivning av en gammel, men elsket versjon av Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Appen heter nå Jorts. Du kan imidlertid ikke bruke den" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 herlige små farger" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Bygger på moderne Linux-teknologier og pakkeformater" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Jevn overgang når du bytter tema" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Nye stickies har en tilfeldig morsom liten tittel og farge" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Noen få innledende oversettelser er inkludert, og flere vil komme" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "" "E-post og lenker er klikkbare! Ctrl+Klikk for å åpne i e-post eller nettleser" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Tekst støtter angre, gjøre om, og du kan bruke emojis :)" diff --git a/po/extra/pl.po b/po/extra/pl.po index 398e3d89..31f3efc1 100644 --- a/po/extra/pl.po +++ b/po/extra/pl.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Spodenki" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Karteczki samoprzylepne" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Zapisuj notatki, przypomnienia, przypadkowe myśli i inne krótkoterminowe informacje." -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "tekst; zwykły; zwykły tekst; notatnik; notatki; samoprzylepne; post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Nowa karteczka samoprzylepna" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Preferencje" @@ -149,7 +149,7 @@ msgstr "Okno dialogowe preferencji w trybie ciemnym" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Jorts światła" #: data/jorts.metainfo.xml.in:101 @@ -173,388 +173,392 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M, aby otworzyć teraz ustawienia notatek" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Numer do szybkiej zmiany motywu" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Niektóre elementy interfejsu użytkownika pojawiają się po ich wyświetleniu, co zapewnia elegancki wygląd" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Nowe ustawienie notatki: Monospace. Może być dla ułatwienia dostępu, może być dla bazgrołów ascii" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Czystszy, ładniejszy kod pod maską. Prawdopodobnie nieznacznie lepsza wydajność lub mniej błędów krawędziowych" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Lepiej skomentowany tekst i kod, dla tłumaczy i ewentualnych współpracowników." -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Poprawka błędu: Naprawiono Jorts pozostający w tle i nie otwierający się już, jeśli wszystkie okna zostały zamknięte (#77)." -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Star Platinum Jorts" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Poprawka: Możliwość chwycenia całego okna przeszkadzała w edycji tekstu. Teraz tylko pasek akcji i nagłówek (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Dodano więcej losowych tytułów" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Przyciski dodawania/usuwania autostartu" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Więcej symboli zastępczych tytułów" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Zmiany pod maską tu i tam dla czystszego kodu" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Poprawka błędu: Po wyłączeniu pasek akcji pozostawiał puste miejsce. Zostało to już naprawione - z bardziej efektowną animacją." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Jorts światła" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Dodanie fajnej animacji podczas włączania/wyłączania paska akcji." -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Naprawiono rozmycie obrazu przy wyświetlaniu w wysokiej rozdzielczości z powodu Flathub BS." -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Dodano zrzuty ekranu w wysokiej rozdzielczości" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Poprawka błędu z ostatniej chwili, w jakiś sposób accels nie działał, gdy Preferencje były skoncentrowane" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Przy okazji trochę porządków dla FR i DE" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Gwiazdy gości:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Pride Edition: Urocza tymczasowa ikona autorstwa @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Zaktualizowane tłumaczenia" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Jorts światła" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Oszczędność pamięci i zapisów na dysku poprzez dodanie odpowiedniego debounce" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Zaktualizowane tłumaczenia" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Zaktualizowane tłumaczenia" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Zmiany dotyczące flathubu" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Nie ma tu nic interesującego" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Drobne poprawki do zrzutów ekranu" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Jorts of songs i Jorts of dance" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Wersja Flathub, z dużą pomocą @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Jorts światła" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Piękna, zupełnie nowa ikona dzięki @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Pomiędzy tym a portem GTK4, niewiele pozostało ze starego Notejota... Można powiedzieć, że jest to v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Uczyń aplikację bardziej uniwersalną: Inne DE nie zachowują wymiarów okien, więc ponownie zaimplementuj zapisywanie i przywracanie." -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Zaktualizowane tłumaczenia" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Zaktualizowane tłumaczenia" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Jorts światła" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Dzięki RyoNakano przerabiającemu japońskie tłumaczenia, osoby mówiące po japońsku poczują się teraz bardziej jak w domu" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Respektuj ustawienia redukcji animacji" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "tryb pisania został przeniesiony do nowego okna dialogowego preferencji" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Dodaj preferencję: teraz możesz ukryć dolny pasek! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Poprawka błędu: Naprawiono elementy przesuwające się po najechaniu kursorem lub wybraniu tytułu notatki." -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Poprawka błędu: Nowe i usunięte konta nie działały. Ups, przepraszam, już to naprawiono." -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Naprawiono błąd, w wyniku którego losowe komponenty pomijały ostatni możliwy wybór." -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Poprawka: skrót do emotek nie wyświetlał się poprawnie." -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Jajko wielkanocne" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 Wewnętrzne spodenki" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Nowa funkcja: Okno dialogowe preferencji! Kliknij prawym przyciskiem myszy ikonę aplikacji, aby wyświetlić opcję" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "tryb pisania został przeniesiony do nowego okna dialogowego preferencji" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Dla tłumaczy: Tłumaczenia zostały podzielone na 2 części: jedna dla interfejsu użytkownika, druga dla dodatkowej zawartości." -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Wygoda: Łatwiejsze chwytanie i przeciąganie karteczek samoprzylepnych" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Poprawka błędu: Zrzuty ekranu w centrum aplikacji były bałaganem aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 msgid "Updated translations" msgstr "Zaktualizowane tłumaczenia" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Jorts światła" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Lepszy zasięg tłumaczeń" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Nowa funkcja: tryb scribbly! Ukryj zawartość notatek samoprzylepnych, gdy nie są skupione" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Nowa funkcja: Przycisk wyboru emoji! Wiem, że jest jeden po kliknięciu prawym przyciskiem myszy, ale przyciski są bardziej dostępne!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Przycisk na pasku narzędzi wyświetla losową emotkę za każdym razem, gdy klikniesz!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Nowa funkcja: Jorts wykonuje comiesięczną kopię zapasową. Jeśli wystąpi jakikolwiek problem, możesz odzyskać dane!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Jeśli główna pamięć zostanie uszkodzona, Jorts spróbuje załadować ją z kopii zapasowej" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Kilka nowych zabawnych/uroczych tytułów domyślnych" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Zmiany pod maską tu i tam dla czystszego kodu" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Niepowtarzalne jorty" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Dodaj ulgę do przycisków paska akcji" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Poprawka błędu: Przypadek brzegowy, w którym motyw lub powiększenie nie zostały poprawnie zapisane." -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Poprawka błędu: Tytuł w wielozadaniowości nie jest ustawiony poprawnie" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Poprawka błędu: Niespójność ikon w różnych motywach ikon" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Poprawka błędu: Niespójności tematyczne w różnych wątkach" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Świeżo po praniu! (2: elektryczne boogaloo)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Bardziej przejrzysty opis menu aplikacji" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Bardziej spójne motywy" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Poprawka: skrót do usuwania był nieodpowiedzialny" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Poprawka: zrzut ekranu nie jest wyświetlany" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Świeżo po praniu!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Obejmuje powiększanie poszczególnych notatek! Możesz więc powiększyć lub pomniejszyć tekst" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Ostatnio ustawiony zoom, czyli najbardziej wygodny dla użytkownika, pozostaje domyślny dla nowych notatek." -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Lepsza czytelność (WCAG AA lub AAA w zależności od motywu)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Również nieco lepiej wyglądający motyw. Tak, nawet bardziej :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Ulepszone tłumaczenia" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Lepsze skróty i podpowiedzi" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Naprawiono błąd, który powodował, że Jorts pozostawały na jasnym motywie systemowym." -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "Wersja 2.0.1 Appcenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "Wydanie 2.0.0: Slate And Bubblegum" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Odrodzenie starożytnej, ale dobrze znanej wersji Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Aplikacja nazywa się teraz Jorts. Nie można jej jednak nosić" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 pięknych, małych kolorów" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Zbudowany w oparciu o nowoczesne technologie Linux i formaty opakowań" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Płynne przejście podczas zmiany motywu" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Nowe naklejki mają losowy, zabawny tytuł i kolor." -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Kilka wstępnych tłumaczeń w załączeniu, a więcej w przyszłości" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "Wiadomości e-mail i łącza można klikać! Ctrl+kliknięcie, aby otworzyć w poczcie lub przeglądarce" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Tekst obsługuje cofanie, ponawianie i można używać emotikonów :)" diff --git a/po/extra/pt.po b/po/extra/pt.po index d09da2d6..53cef40d 100644 --- a/po/extra/pt.po +++ b/po/extra/pt.po @@ -8,33 +8,33 @@ msgstr "" "Last-Translator: Rodolfo Sabino \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-02-18 11:43-03\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Jorts" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 #, fuzzy msgid "Sticky notes" msgstr "Nova nota adesiva" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Anote anotações, lembretes, pensamentos aleatórios e outras informações de curto prazo informações" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "texto; simples; texto simples; bloco de notas; notas; pegajoso; pós-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Nova nota adesiva" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Preferências" @@ -151,7 +151,7 @@ msgstr "A caixa de diálogo das preferências no modo escuro" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Os jorts da luz" #: data/jorts.metainfo.xml.in:101 @@ -175,392 +175,396 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M para abrir as definições das notas agora" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Número para mudar de tema rapidamente" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Alguns elementos da IU aparecem depois de serem mostrados, para dar um toque elegante" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Nova definição de nota: Monoespaço. Pode ser para acessibilidade, pode ser para rabiscos em ascii" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Código mais limpo e mais agradável sob o capô. Provavelmente com um desempenho ligeiramente melhorado ou com menos bugs" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Texto e código melhor comentados, para tradutores e eventuais colaboradores" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Correção de Bug: Correção de Jorts que permanecem em segundo plano e não abrem mais se todas as janelas estiverem fechadas (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Jorts Star Platinum" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Correção de Bug: A possibilidade de agarrar toda a janela interferia com a edição de texto. Agora só a barra de ação e o cabeçalho o são (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Adicionados mais títulos aleatórios" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Botões para adicionar/remover o arranque automático" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Mais alguns marcadores de posição de título" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Sob o capô muda aqui e ali para código mais limpo" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Correção de erro: Quando desligada, a barra de ação deixava um espaço vazio. Agora está corrigido - e com uma animação mais vistosa." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Os jorts da luz" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Adicionar uma pequena animação quando ativar/desativar a barra de ação" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 msgid "Fixed blurrinness in high-scaled display" msgstr "Correção da desfocagem no ecrã de alta resolução" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Adicionadas capturas de ecrã de alta resolução" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Correção de última hora de um bug, de alguma forma os accels não funcionavam quando as Preferências estavam focadas" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Um pouco de limpeza para a FR e a DE" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Estrelas dos convidados:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Um adorável ícone novinho em folha graças a @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Algumas traduções iniciais :3" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Os jorts da luz" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Poupe memória e gravações em disco adicionando um debounce adequado" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Algumas traduções iniciais :3" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Algumas traduções iniciais :3" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Alterações para o flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Nada de interessante aqui" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Pequenas alterações à imagem de ecrã" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Jorts de canções e Jorts de dança" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Versão Flathub, com muita ajuda de @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Os jorts da luz" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Um adorável ícone novinho em folha graças a @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Entre esta e a porta GTK4, resta muito pouco do antigo Notejot... Podemos dizer que é uma v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Tornar a aplicação mais universal: Outros DEs não mantêm as dimensões das janelas, pelo que é necessário reimplementar a função guardar e restaurar" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Algumas traduções iniciais :3" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Algumas traduções iniciais :3" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Os jorts da luz" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Graças a RyoNakano, que reformulou as traduções japonesas, os falantes de japonês sentir-se-ão agora mais em casa" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Respeitar as definições de redução das animações" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "o modo de rabisco foi transferido para a nova caixa de diálogo de preferências" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Adicionar preferência: agora pode ocultar a barra inferior! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Correção de erros: Foi corrigida a deslocação de elementos quando se passa o cursor do rato sobre o título de uma nota ou este é selecionado" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Correção de erro: As accels novas e apagadas não estavam a funcionar." -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Correção de um erro que fazia com que os componentes aleatórios saltassem a última escolha possível" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Correção de erros: o atalho para emotes não aparecia corretamente" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Ovo de Páscoa" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.1.2 Os jorts não criptografados" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Nova funcionalidade: Diálogo de preferências! Clique com o botão direito do rato no ícone da aplicação para ver a opção" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "o modo de rabisco foi transferido para a nova caixa de diálogo de preferências" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Para os tradutores: As traduções foram separadas em 2: uma para a interface do utilizador e outra para o conteúdo extra" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Conforto: Mais fácil de agarrar e arrastar os autocolantes" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Correção de erros: As capturas de ecrã no centro de aplicações estavam uma confusão aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "Algumas traduções iniciais :3" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Os jorts da luz" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "melhor cobertura de tradução" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Novo recurso: Modo scribbly! " -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Novo recurso: botão de empilhadeira emoji! " -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "O botão na barra de ferramentas exibe um emote aleatório sempre que você clicar!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Novo recurso: Jorts faz um backup mensal. " -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "O armazenamento principal deve ser corrompido, Jorts tenta carregar de backup" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Alguns novos títulos divertidos/fofos" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Sob o capô muda aqui e ali para código mais limpo" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Os jorts não criptografados" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "adicione alívio aos botões da barra de ação" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Bugfix: Caso da borda onde o tema ou zoom não foi salvo corretamente" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Correção de bug: O título em multitarefa não é definido corretamente" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Bugfix: Inconistência do ícone Acumula os temas do ícone" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Bugfix: inconsistências de temas acumulam adesivos" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Recém-saído da lavanderia! (2: boogaloo elétrico)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Descrição mais clara do menu de aplicativos" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Temas mais consistentes" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Bugfix: O atalho de exclusão não respondeu" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Correção de bug: a captura de tela não é exibida" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Recém-saído da lavanderia!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Inclui um zoom por nota! Assim, você pode obter um texto maior ou menor" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "O zoom definido mais recentemente, ou seja, o que for mais confortável para você, permanece como padrão para novas anotações" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Melhor legibilidade (WCAG AA ou AAA, dependendo do tema)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "O tema também é um pouco mais bonito. Sim, ainda mais :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Algumas traduções iniciais :3" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Melhores atalhos e dicas de ferramentas" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Correção de um erro que fazia com que o Jorts permanecesse no tema do sistema claro" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "Versão 2.0.1 do Appcenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 #, fuzzy msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 Lançamento: Slate e Bubblegum" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Renascimento de uma versão antiga, mas muito apreciada, do Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "O aplicativo agora se chama Jorts. No entanto, você não pode usá-lo" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 pequenas cores encantadoras" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Criado com base em tecnologias Linux modernas e formatos de empacotamento" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Transição suave ao mudar de tema" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 #, fuzzy msgid "New stickies have a random fun little title and colour" msgstr "Os novos stickies têm um pequeno título aleatório e divertido" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Algumas traduções iniciais incluídas, e outras estão por vir" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "Email e links são clicáveis! E-mails e links são clicáveis! Ctrl+Clique para abrir no correio eletrônico ou no navegador" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "O texto suporta desfazer, refazer e você pode usar emojis :)" diff --git a/po/extra/pt_br.po b/po/extra/pt_br.po index a287b8de..7714e7d0 100644 --- a/po/extra/pt_br.po +++ b/po/extra/pt_br.po @@ -8,33 +8,33 @@ msgstr "" "Last-Translator: Rodolfo Sabino \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-02-18 11:43-03\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Jorts" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 #, fuzzy msgid "Sticky notes" msgstr "Notas adesivas" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Anotar notas, lembretes, pensamentos aleatórios e outras informações de curto prazo" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "texto; simples; texto simples; bloco de notas; notas; adesivo; post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Nova nota adesiva" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Preferências" @@ -151,7 +151,7 @@ msgstr "A caixa de diálogo de preferências no modo escuro" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Os Jorts de luz" #: data/jorts.metainfo.xml.in:101 @@ -175,394 +175,398 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M para abrir as configurações de notas agora" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Number para mudar de tema rapidamente" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Alguns elementos da interface do usuário são exibidos depois de serem mostrados, para dar um toque de elegância" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Nova configuração de nota: Monoespaço. Pode ser para acessibilidade, pode ser para rabiscos em ascii" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Código mais limpo e agradável sob o capô. Provavelmente com desempenho marginalmente aprimorado ou menos bugs de borda" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Texto e código melhor comentados, para tradutores e eventuais colaboradores" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Correção de bug: Correção de Jorts que permanecem em segundo plano e não abrem mais se todas as janelas estiverem fechadas (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Jorts Star Platinum" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Correção de bug: O fato de toda a janela poder ser agarrada interferia na edição de texto. Agora, somente a barra de ação e o cabeçalho são (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Adicionados mais títulos aleatórios" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Botões para adicionar/remover a inicialização automática" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Mais alguns espaços reservados para títulos" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Alterações internas aqui e ali para um código mais limpo" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Correção de bug: Quando desativada, a barra de ação deixava um espaço vazio. Isso já foi corrigido - e agora com uma animação mais chamativa." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Os Jorts de luz" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Adicionar uma pequena animação interessante ao ativar/desativar a barra de ação" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Correção do desfoque na tela de alta escala devido ao Flathub BS" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Adicionadas capturas de tela em alta resolução" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Correção de bug de última hora: de alguma forma, os accels não funcionavam quando as Preferências estavam em foco" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Um pouco de limpeza para a FR e a DE enquanto isso" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "Estrelas dos convidados:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Edição do Orgulho: Um adorável ícone temporário de @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Traduções atualizadas" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Os Jorts de luz" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Economize memória e gravações em disco adicionando um debounce adequado" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Traduções atualizadas" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Traduções atualizadas" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Alterações para o flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Nada de interessante aqui" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Pequenas alterações na captura de tela" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Jorts de músicas e Jorts de dança" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Versão do Flathub, com muita ajuda de @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Os Jorts de luz" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Um novo e adorável ícone graças a @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Entre isso e a porta GTK4, resta muito pouco do antigo Notejot... Poderíamos dizer que é uma v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Torne o aplicativo mais universal: Outros DEs não mantêm as dimensões da janela, portanto, reimplemente o recurso de salvar e restaurar" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Traduções atualizadas" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Traduções atualizadas" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Os Jorts de luz" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Graças a RyoNakano que reformulou as traduções em japonês, os falantes de japonês se sentirão mais à vontade agora" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Respeitar as configurações de redução de animações" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "O modo scribbly foi movido para a nova caixa de diálogo de preferências" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Adicionar preferência: agora você pode ocultar a barra inferior! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Correção de bug: correção de elementos que se moviam quando o título de uma nota era colocado sobre o mouse ou selecionado" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Correção de bug: as contas novas e excluídas não estavam funcionando, desculpe, mas já foi corrigido." -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Correção de bug em que os componentes aleatórios pulavam a última opção possível" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Correção de bug: o atalho para emotes não aparecia corretamente" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Ovo de Páscoa Lil" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 Os Jorts Internos" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Novo recurso: Diálogo de preferências! Clique com o botão direito do mouse no ícone do aplicativo para ver a opção" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "O modo scribbly foi movido para a nova caixa de diálogo de preferências" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 #, fuzzy msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Melhoria para os tradutores: As traduções foram separadas em duas: uma para a interface do usuário e outra para o conteúdo extra" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Conforto: Mais fácil de pegar e arrastar adesivos" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Correção de bug: As capturas de tela no appcenter estavam uma bagunça aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "Traduções atualizadas" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Os Jorts de luz" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Melhor cobertura de tradução" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Novo recurso: modo rabiscado! Oculte o conteúdo das notas adesivas quando estiver sem foco" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Novo recurso: Botão de seleção de emojis! Sei que há um botão no botão direito do mouse, mas os botões são mais acessíveis!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "O botão na barra de ferramentas exibe um emote aleatório toda vez que você clica nele!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Novo recurso: O Jorts faz um backup mensal. Se houver algum problema, você poderá recuperar os dados!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Se o armazenamento principal for corrompido, o Jorts tentará carregar a partir do backup" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Alguns novos títulos padrão divertidos/bonitos" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Alterações internas aqui e ali para um código mais limpo" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Os jorts não criptografados" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Adicionar relevo aos botões da barra de ação" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Correção de bug: Caso extremo em que o tema ou o zoom não eram salvos corretamente" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Correção de bug: O título em multitarefa não é definido corretamente" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Correção de bug: inconsistência de ícones entre temas de ícones" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Correção de bug: Inconsistências de tema entre os stickies" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Recém-saído da lavanderia! (2: boogaloo elétrico)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Descrição mais clara do menu de aplicativos" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Temas mais consistentes" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Correção de bug: o atalho de exclusão não era responsável" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Correção de bug: a captura de tela não é exibida" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Recém-saído da lavanderia!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Inclui um zoom por nota! Assim, você pode obter um texto maior ou menor" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "O zoom definido mais recentemente, ou seja, o que for mais confortável para você, permanece como padrão para novas anotações" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Melhor legibilidade (WCAG AA ou AAA, dependendo do tema)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "O tema também é um pouco mais bonito. Sim, ainda mais :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Traduções aprimoradas" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Melhores atalhos e dicas de ferramentas" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Correção de um erro que fazia com que o Jorts permanecesse no tema do sistema claro" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "Versão 2.0.1 do Appcenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 #, fuzzy msgid "2.0.0 Release: Slate And Bubblegum" msgstr "Versão 2.0.0: Ardósia e chiclete" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Renascimento de uma versão antiga, mas muito apreciada, do Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "O aplicativo agora se chama Jorts. No entanto, você não pode usá-lo" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 pequenas cores encantadoras" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Criado com base em tecnologias Linux modernas e formatos de empacotamento" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Transição suave ao mudar de tema" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 #, fuzzy msgid "New stickies have a random fun little title and colour" msgstr "Os novos stickies têm um título e uma cor aleatórios e divertidos" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Algumas traduções iniciais incluídas, e outras estão por vir" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "E-mails e links são clicáveis! Ctrl+Clique para abrir no correio eletrônico ou no navegador" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "O texto suporta desfazer, refazer e você pode usar emojis :)" diff --git a/po/extra/ru.po b/po/extra/ru.po index 65e5f929..12cad48f 100644 --- a/po/extra/ru.po +++ b/po/extra/ru.po @@ -7,33 +7,33 @@ msgstr "" "Last-Translator: Kultyapov Andrey \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-04-06 17:08+0400\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" "X-Generator: Poedit 3.4.2\n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Jorts" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Стикеры для заметок" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Запишите заметки, напоминания, случайные мысли и другие краткосрочные информации" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "текст; простой;text;plain;plaintext;notepad;notes;sticky;post-it;текст;блокнот;заметка;заметки;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Новый стикер" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Предпочтения" @@ -149,7 +149,7 @@ msgstr "Диалог настроек в темном режиме" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.4.0 The Jorts of Ice" #: data/jorts.metainfo.xml.in:101 @@ -173,385 +173,389 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M, чтобы открыть настройки заметок сейчас" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Number для быстрой смены темы" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Некоторые элементы пользовательского интерфейса отображаются после показа, что придает им элегантный вид." -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Новая настройка нот: Monospace. Может быть, для доступности, может быть, для каракулей ascii" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Более чистый и приятный код под капотом. Возможно, незначительно улучшится производительность или уменьшится количество краевых ошибок." -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Улучшенный комментированный текст и код для переводчиков и возможных авторов" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Исправление: Исправление того, что Jorts, задерживающийся в фоновом режиме, больше не открывался, если все окна были закрыты (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Star Platinum Jorts" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Исправление: захват всего окна мешал редактированию текста. Теперь только панель действий и заголовок (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Добавлено больше случайных названий" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Кнопки для добавления/удаления автозапуска" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Еще несколько заголовков" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Под капотом кое-где происходят изменения для более чистого кода" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Исправление: при выключении панели действий оставалось пустое место. Теперь это исправлено - в придачу к этому появилась более яркая анимация." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.4.0 The Jorts of Ice" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Добавьте небольшую анимацию при включении/выключении экшенбара" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Исправлена размытость при высоком масштабе отображения из-за Flathub BS" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Добавлены скриншоты высокого разрешения" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Исправление последней минуты, почему-то аксели не работали, когда предпочтения были сосредоточены" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Немного домашней работы для FR и DE" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Гости-звезды:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Выпуск \"Гордость\": Прекрасный временный значок от @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Обновленные переводы" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.4.0 The Jorts of Ice" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Экономьте память и записи на диск, добавив соответствующий дебафф" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Обновленные переводы" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Обновленные переводы" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Поправки для флатуба" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Ничего интересного" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Упс" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Небольшие поправки к скриншотам" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Шорты с песнями и шорты с танцами" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Версия для Flathub, с большой помощью от @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.4.0 The Jorts of Ice" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Прекрасная новая иконка благодаря @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Между ним и портом GTK4 от старого Notejot осталось совсем немного... Можно сказать, что это v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Сделайте приложение более универсальным: Другие DE не сохраняют размеры окна, поэтому переделайте сохранение и восстановление" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Обновленные переводы" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 msgid "Updated screenshots" msgstr "Обновленные скриншоты" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 msgid "2.4.0 The Jorts of Ice" msgstr "2.4.0 The Jorts of Ice" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Благодаря RyoNakano, переработавшему переводы с японского языка, носители японского языка теперь будут чувствовать себя как дома" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Соблюдайте настройки уменьшения анимации" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 msgid "Scribble mode exclusively in the preferences now" msgstr "Режим каракулей теперь доступен исключительно в настройках" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Добавьте привилегии: теперь вы можете скрыть нижнюю панель! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Исправление: исправлено перемещение элементов при наведении или выборе заголовка заметки" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Исправление: новые и удаленные аксели не работали, упс, извините, теперь это исправлено" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Исправление, при котором случайные компоненты пропускали последний возможный выбор" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Исправление: ярлык для эмодзи не отображался должным образом" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Пасхальное яйцо" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 Внутренние ограничения" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Новая функция: Диалог настроек! Щелкните правой кнопкой мыши на значке приложения, чтобы увидеть опцию" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "режим каракулей был перенесен в новое диалоговое окно настроек" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Улучшение для переводчиков: Переводы были разделены на 2 части: одна для пользовательского интерфейса, другая для дополнительного контента" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Комфорт: Легче захватывать и перетаскивать стикеры" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Исправление: скриншоты в appcenter были беспорядочными aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 msgid "Updated translations" msgstr "Обновленные переводы" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Лучшее покрытие перевода" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Новая функция: режим рисования! Скрывайте содержимое стикеров, когда не сосредоточены на работе" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Новая функция: Кнопка выбора эмодзи! Я знаю, что она есть на правой кнопке мыши, но кнопки более доступны!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Кнопка на панели инструментов отображает случайную эмоцию каждый раз, когда вы нажимаете!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Новая функция: Jorts выполняет ежемесячное резервное копирование. В случае возникновения проблем вы можете восстановить данные!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Если основное хранилище повреждено, Jorts попытается выполнить загрузку из резервной копии" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Несколько новых забавных / симпатичных названий по умолчанию" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Под капотом кое-где происходят изменения для более чистого кода" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Беспорязимые Jorts" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Добавление рельефности к кнопкам панели действий" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Bugfix: Chare Edge, где тема или масштаб не сохранились должным образом" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Bugfix: заголовок в многозадачности неправильно установлен" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Bugfix: значок несоответствия" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Bugfix: тематические несоответствия" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Только что из стирки! (2: электрический бугалу)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Более четкое описание меню приложения" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Более последовательная тематизация" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Bugfix: ярлык Delete был не отвечает" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Bugfix: скриншот не показывает" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 только что из белья!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Включает масштабирование для каждого стикера! Так что вы можете сделать текст больше или меньше" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Последний набор Zoom, AKA, что вам наиболее удобно, остается по умолчанию для новых заметок" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Лучшая читаемость (WCAG AA или AAA в зависимости от темы)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Также тема выглядит немного лучше. Да, даже больше :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Новые переводы :3" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Лучший ярлык и подсказки инструментов" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Исправлена ​​ошибка, где Джордс остался на тему системы света" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "Выпуск 2.0.1 Appcenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "Появление новых цветов: бубльгумового и каменно-серого" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Возрождение древней, но очень любимой версии Notejot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Переименовано в Jorts" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 чудесных маленьких цветов" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Построен на основе современных технологий Linux и форматов упаковки" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Плавный переход при смене темы" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "У новых заметок выбирается случайные, весёлые названия" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Несколько первоначальных переводов включены в книгу, и еще несколько будут добавлены" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "Электронная почта и ссылки кликируются! Почта и ссылки кликабельны! Нажмите Ctrl+Click, чтобы открыть в почте или браузере" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Текст поддерживает отмену, повтор, и вы можете использовать эмодзи :)" diff --git a/po/extra/sk.po b/po/extra/sk.po index 68da11a9..9d7571ee 100644 --- a/po/extra/sk.po +++ b/po/extra/sk.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Šortky" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "lepkavé poznámky" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Zapíšte si poznámky, pripomienky, náhodné myšlienky a ďalšie krátkodobé informácie" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "Text; obyčajný; Hlouh; poznámkový blok; poznámky; lepkavé; post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Nová lepkavá poznámka" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Predvoľby" @@ -150,7 +150,7 @@ msgstr "Dialógové okno predvolieb v tmavom režime" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Jorty svetla" #: data/jorts.metainfo.xml.in:101 @@ -174,391 +174,395 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M na otvorenie nastavení poznámky" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+číslo na rýchlu zmenu témy" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Niektoré prvky používateľského rozhrania sa zobrazia po zobrazení, aby pôsobili elegantne" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Nastavenie novej poznámky: Monospace. Mohlo by to byť kvôli prístupnosti, mohlo by to byť pre ascii čmáranice" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Čistejší a krajší kód pod kapotou. Pravdepodobne mierne zvýšený výkon alebo menej okrajových chýb" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Lepšie komentovaný text a kód pre prekladateľov a prípadných prispievateľov" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Oprava chyby: Oprava Jorts, ktorý sa zdržiava na pozadí, sa už neotvára, ak boli všetky okná zatvorené (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Hviezdne platinové šortky" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Oprava chyby: Celé okno, ktoré sa dá chytiť, zasahovalo do úprav textu. Teraz je to len akčný panel a záhlavie (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Pridané ďalšie náhodné názvy" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Tlačidlá na pridanie/odstránenie automatického spustenia" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Niektoré ďalšie zástupné názvy" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Pod menom kapoty tu a tam pre čistejší kód" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Oprava chyby: Pri vypnutí panela akcií zostávalo prázdne miesto. Teraz je to opravené - a teraz aj s bleskovejšou animáciou." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Jorty svetla" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Pridanie malej cool animácie pri zapnutí/vypnutí panela akcií" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Opravená neostrosť v zobrazení s vysokým rozlíšením spôsobená Flathub BS" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Pridané snímky obrazovky vo vysokom rozlíšení" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Oprava chyby na poslednú chvíľu, akcelerátory nejako nefungovali, keď boli preferencie zamerané" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Trochu upratovania pre FR a DE, keď už sme pri tom" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Hviezdičky pre hostí:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Edícia Pride: Krásna dočasná ikona od @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Vylepšené preklady" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Jorty svetla" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Úspora pamäte a zápisov na disk pridaním správneho odozvy" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Vylepšené preklady" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Vylepšené preklady" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Zmeny pre flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Nič zaujímavé tu nie je" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Menšie zmeny snímky obrazovky" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Šortky piesní a šortky tanca" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Flathub verzia, s veľkou pomocou od @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Jorty svetla" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Krásna nová ikona vďaka @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Medzi týmto a portom GTK4 zostalo zo starého Notejotu len veľmi málo... Mohli by sme povedať, že je to v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Urobte aplikáciu univerzálnejšou: Ostatné DE nezachovávajú rozmery okien, preto implementujte uloženie a obnovenie" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Vylepšené preklady" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Vylepšené preklady" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Jorty svetla" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Vďaka RyoNakanovi, ktorý prepracoval japonské preklady, sa teraz budú japonsky hovoriaci cítiť viac ako doma" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Rešpektovať nastavenia redukcie animácií" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "režim scribbly bol presunutý do nového dialógového okna predvolieb" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Pridať predvoľbu: teraz môžete skryť spodný panel! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Oprava chyby: Opravené presúvanie prvkov, keď je názov poznámky označený alebo naň prejdete myšou" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Oprava chyby: Nové a vymazané akcelerátory nefungovali oops, prepáčte, už je to opravené" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Oprava chyby, pri ktorej náhodné komponenty vynechávali poslednú možnú voľbu" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Oprava chyby: skratka pre emotes sa nezobrazovala správne" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Veľkonočné vajíčko Lil" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.1.2 Nepripojené Jorts" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Nová funkcia: Dialógové okno Nastavenia! Kliknutím pravým tlačidlom myši na ikonu aplikácie sa zobrazí možnosť" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "režim scribbly bol presunutý do nového dialógového okna predvolieb" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Pre prekladateľov: Preklady boli rozdelené do 2 častí: jedna pre používateľské rozhranie, druhá pre dodatočný obsah" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Pohodlie: Ľahšie uchopenie a pretiahnutie nálepiek" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Oprava chyby: Snímky obrazovky v centre aplikácie boli v neporiadku aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "Vylepšené preklady" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Jorty svetla" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Lepšie pokrytie prekladu" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Nová funkcia: scribbly Mode! " -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Nová funkcia: Emoji Picker Button! " -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Tlačidlo na paneli s nástrojmi zobrazuje náhodnú emotúru vždy, keď kliknete!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Nová funkcia: Jorts robí mesačnú zálohu. " -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Ak by sa hlavné úložisko poškodilo, Jorts sa pokúša načítať zo zálohy" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Niektoré nové zábavné/roztomilé predvolené tituly" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Pod menom kapoty tu a tam pre čistejší kód" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Nepripojené Jorts" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Pridajte tlačidlá Actionbar Actionbar" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Bugfix: Puzdro na okraj, kde sa téma alebo priblíženie správne uložili" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Bugfix: Názov v multitasking nie je nastavený správne" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "BugFix: Ikona nekonzistentnosť Accross Icon témy" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "BugFix: Temingové nekonzistencie Stickies Accross Stickies" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 čerstvé z práčovne! " -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "jasnejší popis AppMenu" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Konzistentnejšia tematika" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "BugFix: Skratka odstránenia bola neodpovedná" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Bugfix: Screenshot sa nezobrazuje" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 čerstvé z práčovne!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Zahŕňa priblíženie k note! " -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Najnovšia súprava Zoom, aka Čo je pre vás najpohodlnejšie, zostáva predvolená pre nové poznámky" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Lepšia čitateľnosť (WCAG AA alebo AAA v závislosti od témy)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Tiež trochu lepšie vyzerajúca téma. " -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Vylepšené preklady" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Lepšie skratka a popisy" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Opravená chyba, kde Jorts zostal na téme ľahkého systému" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Vydanie AppCenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2,0.0 Uvoľnenie: bridlica a bubble" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Oživenie starodávnej, ale dobre milovanej verzie NoteJot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Aplikácia sa teraz nazýva Jorts. " -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 Krásne malé farby" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Postavené na vrchole moderných technológií Linuxu a formátov obalov" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Hladký prechod pri zmene témy" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Nové palice majú náhodný zábavný malý názov a farba" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Zahrnuté niekoľko počiatočných prekladov a ďalšie prílety" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "E -mail a odkazy sú možné kliknúť! " -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Text podporuje späť, opätovne, a môžete použiť emodži :)" diff --git a/po/extra/sv.po b/po/extra/sv.po index cb17eb0f..1cc10278 100644 --- a/po/extra/sv.po +++ b/po/extra/sv.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Jorts" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Sticky Notes" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Skriv ner anteckningar, påminnelser, slumpmässiga tankar och andra kortvariga information" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "text; vanlig; vanlig text; anteckningar; anteckningar; klibbig; post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Ny Sticky Note" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Inställningar" @@ -150,7 +150,7 @@ msgstr "Inställningsdialogen i mörkt läge" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Ljusjorten" #: data/jorts.metainfo.xml.in:101 @@ -174,391 +174,395 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M för att öppna anteckningsinställningar nu" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+Number för att snabbt byta tema" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Vissa användargränssnittselement visas efter att de har visats, för en elegant känsla" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Ny inställning för anteckningar: Monospace. Kan vara för tillgänglighet, kan vara för ascii-klotter" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Renare och snyggare kod under huven. Förmodligen marginellt förbättrad prestanda eller färre kantbuggar" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Bättre kommenterad text och kod, för översättare och eventuella bidragsgivare" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Buggfix: Fixa Jorts som ligger kvar i bakgrunden och inte öppnas längre om alla fönster stängts (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Star Platinum Jorts" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Buggfix: Att hela fönstret var greppbart störde textredigering. Nu är det bara actionbar och header som är det (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Lagt till fler slumpmässiga titlar" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Knappar för att lägga till/ta bort autostart" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Några fler platshållare för titlar" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Under huven ändras här och där för renare kod" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Buggfix: När actionbaren var avstängd lämnade den ett tomt utrymme. Det är nu åtgärdat - med en snyggare animation på köpet." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Ljusjorten" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Lägg till en cool liten animation när actionbar aktiveras/avaktiveras" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Fixat oskärpa i högskalig visning på grund av Flathub BS" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Högupplösta skärmdumpar har lagts till" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Buggfix i sista minuten, på något sätt fungerade inte accelereringen när inställningarna var fokuserade" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Lite städning för FR och DE när vi ändå är igång" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Gästernas stjärnor:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Pride Edition: En härlig tillfällig ikon av @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Förbättrade översättningar" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Ljusjorten" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Spara minne och diskskrivare genom att lägga till en korrekt debounce" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Förbättrade översättningar" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Förbättrade översättningar" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Ändringar för flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Inget intressant här" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Mindre ändringar av skärmdumpar" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Jortar med sånger och jortar med dans" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Flathub-version, med mycket hjälp från @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Ljusjorten" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "En härlig helt ny ikon tack vare @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Mellan detta och GTK4-porten finns det väldigt lite kvar från gamla Notejot ... Vi kan säga att det är en v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Gör appen mer universell: Andra DE:er behåller inte fönsterdimensionerna, så återimplementera spara och återställ" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Förbättrade översättningar" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Förbättrade översättningar" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Ljusjorten" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Tack vare att RyoNakano har gjort om japanska översättningar kommer japansktalande att känna sig mer hemma nu" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Respektera inställningar för att minska animationer" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "scribbly-läget har flyttats till den nya preferensdialogen" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Lägg till preferenser: nu kan du dölja den nedre fältet! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Buggfix: Fixade element som rörde sig när en nottitel hölls över eller valdes" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Buggfix: Nya och raderade acceller fungerade inte oops sorry det är åtgärdat nu" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Buggfix där slumpmässiga komponenter hoppade över det sista möjliga valet" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Buggfix: genväg för emotes visades inte korrekt" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Lilla påskägget" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.1.2 De omplacerbara jorts" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Ny funktion: Dialog för inställningar! Högerklicka på appikonen för att se alternativet" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "scribbly-läget har flyttats till den nya preferensdialogen" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "För översättare: Översättningarna har delats upp i två delar: en för användargränssnittet och en för det extra innehållet" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Komfort: Lättare att ta tag i och dra stickies" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Buggfix: Skärmdumpar i appcenter var en röra aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "Förbättrade översättningar" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Ljusjorten" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Bättre översättningstäckning" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Ny funktion: Skribblingsläge! " -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Ny funktion: Emoji-väljarknapp! Jag vet att det finns en på högerklick, men -knappar är mer tillgängliga!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Knappen i verktygsfältet visar en slumpmässig emote varje gång du klickar!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Ny funktion: Jorts gör en månatlig säkerhetskopia. " -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Om huvudlagringen skadas försöker jorts att ladda från säkerhetskopiering" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Några nya roliga/söta standardtitlar" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Under huven ändras här och där för renare kod" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 De omplacerbara jorts" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Lägg till lättnad till ActionBar -knapparna" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Bugfix: Edge Case där temat eller zoom var inte korrekt räddat" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Bugfix: Titel i multitasking inte korrekt" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Bugfix: Icon Inconsistency Accross Icon -teman" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Bugfix: tema inkonsekvenser över klibbor" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Färsk ut ur tvätten! " -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Tydligare beskrivning av appmenyn" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Mer konsekvent teman" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "BUGFIX: Radera genvägen var ansvarsfull" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Bugfix: Skärmdump visar inte" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 färskt ur tvätten!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Inkluderar en zoom per not! Så att du kan få större eller mindre text" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Senaste uppsättningen zoom, alias vad som är mest bekvämt för dig, förblir som standard för nya anteckningar" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Bättre läsbarhet (WCAG AA eller AAA beroende på tema)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Också lite snyggare tema. " -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Förbättrade översättningar" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Bättre genvägs- och verktygstips" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Fixade ett fel där jorts stannade kvar på lätt systemtema" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 AppCenter Release" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 Släpp: Slate and Bubblegum" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Återupplivning av en forntida men väl älskad version av NoteJot" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Appen heter nu Jorts. " -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 härliga små färger" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Byggt ovanpå modern Linux -teknik och förpackningsformat" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Smidig övergång vid ändring av tema" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Nya klistor har en slumpmässig rolig liten titel och färg" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Några första översättningar inkluderade och mer framöver" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "E -post och länkar är klickbara! " -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Text stöder ångra, göra om, och du kan använda emojis :)" diff --git a/po/extra/tr.po b/po/extra/tr.po index 222d51d8..c555a34f 100644 --- a/po/extra/tr.po +++ b/po/extra/tr.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Şort" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Yapışkan notlar" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Notları, hatırlatmaları, rastgele düşünceleri ve diğer kısa vadeli bilgileri yazın" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "metin; düz; düz metin; not defteri; notlar; yapışkan; post-it;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Yeni yapışkan not" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Tercihler" @@ -149,7 +149,7 @@ msgstr "Karanlık modda tercihler iletişim kutusu" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Işığın Jorts'u" #: data/jorts.metainfo.xml.in:101 @@ -173,388 +173,392 @@ msgid "Ctrl+M to open note settings now" msgstr "Not ayarlarını şimdi açmak için Ctrl+M" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Temayı hızlıca değiştirmek için Alt+Number" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Şık bir hava için bazı kullanıcı arayüzü öğeleri gösterildikten sonra ortaya çıkıyor" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Yeni not ayarı: Monospace. Erişilebilirlik için olabilir, ascii karalamalar için olabilir" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Kaputun altında daha temiz, daha güzel kod. Muhtemelen marjinal olarak geliştirilmiş performans veya daha az kenar hatası" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Çevirmenler ve nihai katkıda bulunanlar için daha iyi yorumlanmış metin ve kod" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Hata Düzeltmesi: Tüm pencereler kapalıysa arka planda kalan Jorts'un artık açılmaması düzeltildi (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Yıldız Platin Şort" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Hata Düzeltme: Tüm pencerenin yakalanabilir olması metin düzenlemeyi engelliyordu. Artık sadece eylem çubuğu ve başlık (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Daha fazla rastgele başlık eklendi" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Otomatik başlatma ekleme/kaldırma düğmeleri" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Biraz daha başlık yer tutucu" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Daha temiz kod için burada ve orada kaputun altında değişiklikler" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Hata Düzeltmesi: Kapatıldığında, eylem çubuğu boş bir alan bırakıyordu. Artık düzeltildi - Üstelik şimdi daha gösterişli bir animasyonla." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Işığın Jorts'u" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Eylem çubuğunu etkinleştirirken/devre dışı bırakırken küçük bir animasyon ekleyin" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Flathub BS nedeniyle yüksek ölçekli ekrandaki bulanıklık düzeltildi" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Yüksek çözünürlüklü ekran görüntüleri eklendi" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Son dakika hata düzeltmesi, Tercihler odaklandığında bir şekilde accels çalışmıyordu" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Hazır başlamışken FR ve DE için biraz temizlik yapalım" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 Konuk yıldızlar:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Gurur Sürümü: Wpkelso'dan sevimli bir geçici simge" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Güncellenmiş çeviriler" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Işığın Jorts'u" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Uygun bir debounce ekleyerek bellek ve disk yazımlarından tasarruf edin" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Güncellenmiş çeviriler" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Güncellenmiş çeviriler" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Flathub için Değişiklikler" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Burada ilginç bir şey yok" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Woops" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Küçük ekran görüntüsü değişiklikleri" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Şarkı ve dans jortları" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Flathub versiyonu, @RyoNakano'nun büyük yardımı ile" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Işığın Jorts'u" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Wpkelso sayesinde yepyeni ve sevimli bir simge" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Bu ve GTK4 portu arasında, eski Notejot'tan geriye çok az şey kaldı... Bunun bir v3 olduğunu söyleyebiliriz" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Uygulamayı daha evrensel hale getirin: Diğer DE'ler pencere boyutlarını tutmaz, bu nedenle kaydetme ve geri yüklemeyi yeniden uygulayın" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Güncellenmiş çeviriler" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Güncellenmiş çeviriler" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Işığın Jorts'u" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "RyoNakano'nun Japonca çevirileri elden geçirmesi sayesinde Japonca konuşanlar artık kendilerini daha rahat hissedecek" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Animasyonları azaltma ayarlarına saygı gösterin" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "scribbly modu yeni tercih iletişim kutusuna taşındı" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Tercih ekleyin: artık alt çubuğu gizleyebilirsiniz! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Hata Düzeltmesi: Bir not başlığının üzerine gelindiğinde veya seçildiğinde öğelerin hareket etmesi düzeltildi" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Hata Düzeltme: Yeni ve silme akselleri çalışmıyordu, üzgünüm şimdi düzeltildi" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Rastgele bileşenlerin son olası seçimi atlamasına neden olan hata düzeltmesi" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Hata düzeltmesi: ifadeler için kısayol düzgün görünmüyordu" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Küçük paskalya yumurtası" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 İç Şort" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Yeni özellik: Tercihler iletişim kutusu! Seçeneği görmek için uygulama simgesine sağ tıklayın" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "scribbly modu yeni tercih iletişim kutusuna taşındı" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Çevirmenler için: Çeviriler 2'ye ayrıldı: Biri kullanıcı arayüzü için diğeri ekstra içerik için" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Konfor: Yapışkanları tutmak ve sürüklemek daha kolay" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Hata Düzeltme: Appcenter'daki ekran görüntüleri karışıktı aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 msgid "Updated translations" msgstr "Güncellenmiş çeviriler" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Işığın Jorts'u" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Daha iyi çeviri kapsamı" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Yeni özellik: karalama modu! Odaklanılmadığında yapışkan not içeriğini gizle" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Yeni özellik: Emoji seçici düğmesi! Sağ tıklamada bir tane olduğunu biliyorum, ancak düğmeler daha erişilebilir!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Araç çubuğundaki düğmeye her tıkladığınızda rastgele bir ifade görüntülenir!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Yeni özellik: Jorts aylık yedekleme yapar. Herhangi bir sorun olması durumunda verileri kurtarabilirsiniz!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Ana depolamanın bozulması durumunda, Jorts yedekten yükleme yapmaya çalışır" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Bazı yeni eğlenceli/sevimli varsayılan başlıklar" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Daha temiz kod için burada ve orada kaputun altında değişiklikler" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Kullanılamaz şortlar" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Eylem çubuğu düğmelerine kabartma ekleme" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Hata Düzeltme: Tema veya yakınlaştırmanın düzgün kaydedilmediği uç durum" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Hata Düzeltme: Çoklu görevdeki başlık doğru ayarlanmıyor" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Hata Düzeltme: Simge temaları arasında tutarsızlık" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Hata Düzeltme: Çıkartmalar arasında tema tutarsızlıkları" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Çamaşırhaneden yeni çıktı! (2: elektrikli boogaloo)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Daha net uygulama menüsü açıklaması" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Daha tutarlı temalar" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Hata düzeltmesi: silme kısayolu sorumsuzdu" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Hata düzeltmesi: ekran görüntüsü gösterilmiyor" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Çamaşırhaneden yeni çıktı!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Not başına yakınlaştırma içerir! Böylece daha büyük veya daha küçük metin elde edebilirsiniz" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "En son ayarlanan yakınlaştırma, yani sizin için en rahat olanı, yeni notlar için varsayılan olarak kalır" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Daha iyi okunabilirlik (temaya bağlı olarak WCAG AA veya AAA)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Ayrıca biraz daha iyi görünen bir tema. Evet daha da fazlası :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Geliştirilmiş çeviriler" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Daha iyi kısayol ve araç ipuçları" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Jorts'un açık sistem temasında kalmasına neden olan bir hata düzeltildi" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Appcenter sürümü" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 Sürüm: Arduvaz ve Balonlu Sakız" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Notejot'un eski ama çok sevilen bir versiyonunun yeniden canlandırılması" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Uygulamanın adı artık Jorts. Ancak onu giyemezsiniz" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 sevimli küçük renk" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Modern Linux teknolojileri ve paketleme formatları üzerine inşa edilmiştir" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Tema değiştirirken yumuşak geçiş" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Yeni etiketlerin rastgele eğlenceli küçük bir başlığı ve rengi var" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "İlk birkaç çeviri dahil, daha fazlası da gelecek" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "E-posta ve bağlantılar tıklanabilir! Posta veya tarayıcıda açmak için Ctrl+Tıkla" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Metin geri almayı, yinelemeyi destekler ve emojileri kullanabilirsiniz :)" diff --git a/po/extra/uk.po b/po/extra/uk.po index 4810be1a..4b317d2a 100644 --- a/po/extra/uk.po +++ b/po/extra/uk.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "Джинси" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "Стікери" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "Записуйте нотатки, нагадування, випадкові думки та іншу короткострокову інформацію" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "текст;звичайний;звичайний текст;блокнот;нотатки;клейкий;стікер;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "Нова наліпка" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "Уподобання" @@ -149,7 +149,7 @@ msgstr "Діалогове вікно налаштувань у темному #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 Джорти світла" #: data/jorts.metainfo.xml.in:101 @@ -173,389 +173,393 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M, щоб відкрити налаштування нот зараз" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+цифра для швидкої зміни теми" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "Деякі елементи інтерфейсу з'являються після показу, щоб створити елегантну атмосферу" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "Нове налаштування нот: Монопростір. Можливо, для доступності, можливо, для малюнків ascii" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "Чистіший, приємніший код під капотом. Можливо, дещо покращена продуктивність або менше периферійних помилок" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "Краще прокоментований текст і код для перекладачів і потенційних дописувачів" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "Виправлено: якщо всі вікна було закрито, джорте більше не відкриваються у фоновому режимі (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 Star Platinum Jorts" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "Виправлено: захоплення всього вікна заважало редагуванню тексту. Виправлено лише панель дій та заголовок (#75, #76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "Додано більше випадкових назв" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "Кнопки для додавання/видалення автозапуску" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "Ще кілька заповнювачів заголовків" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "Під капотом зміни тут і там для більш чистого коду" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "Виправлено: коли панель дій було вимкнено, вона залишала порожнє місце. Наразі виправлено - тепер завантажується яскравіша анімація." -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 Джорти світла" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "Додайте класну анімацію під час увімкнення/вимкнення панелі дій" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "Виправлено розмитість на високомасштабованому дисплеї через Flathub BS" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "Додано скріншоти з високою роздільною здатністю" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "Виправлено в останню хвилину, чомусь прискорення не працювало, коли Уподобання були сфокусовані" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "Трохи про домашнє господарство для FR та DE, поки що" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "Запрошені зірки:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "Pride Edition: Чудова тимчасова іконка від @wpkelso" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "Оновлені переклади" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 Джорти світла" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "Заощаджуйте пам'ять і записи на диск, додаючи правильний дебаунд" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "Оновлені переклади" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "Оновлені переклади" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 Зміни для flathub" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "Тут немає нічого цікавого" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 Вупси" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "Незначні зміни скріншотів" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 Пісенні та танцювальні джорти" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Версія для Flathub, з великою допомогою від @RyoNakano" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 Джорти світла" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "Чудова нова ікона завдяки @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "Між ним і портом GTK4 від старого Notejot залишилося дуже мало... Можна сказати, що це v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "Зробити додаток більш універсальним: Інші DE не зберігають розміри вікон, тому переробіть збереження та відновлення" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "Оновлені переклади" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "Оновлені переклади" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 Джорти світла" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "Завдяки RyoNakano, що переробляє японські переклади, носії японської мови тепер почуватимуться як вдома" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "Поважайте налаштування зменшення анімації" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "режим каракулів перенесено до нового діалогового вікна налаштувань" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "Додайте налаштування: тепер ви можете приховати нижню панель! (Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "Виправлено рух елементів при наведенні або виборі заголовка нотатки" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "Виправлено: не працювали прискорення створення та видалення, ой, вибачте, вже виправлено" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "Виправлено помилку, коли випадкові компоненти пропускали останній можливий вибір" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "Виправлено: ярлик для емоцій не відображався належним чином" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "Маленька писанка" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 Внутрішні штани" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "Нова функція: Діалогове вікно налаштувань! Клацніть правою кнопкою миші на іконці програми, щоб побачити опцію" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "режим каракулів перенесено до нового діалогового вікна налаштувань" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 #, fuzzy msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "Покращення для перекладачів: Переклади розділено на 2: один для інтерфейсу, інший для додаткового контенту" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "Зручність: Легше захоплювати та перетягувати наклейки" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "Виправлено: скріншоти в апцентрі були безладними аааа" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 msgid "Updated translations" msgstr "Оновлені переклади" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 Джорти світла" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "Краще охоплення перекладу" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "Нова функція: режим каракулів! Приховуйте вміст стікерів, коли ви не сфокусовані" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "Нова функція: Кнопка вибору емодзі! Я знаю, що вона є на правій кнопці миші, але кнопки більш доступні!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "Кнопка на панелі інструментів відображає випадковий смайл при кожному натисканні!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "Нова функція: Jorts робить щомісячне резервне копіювання. Якщо виникне якась проблема, ви зможете відновити дані!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "Якщо основне сховище пошкоджено, Jorts намагається завантажитися з резервної копії" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "Кілька нових веселих/милих назв за замовчуванням" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "Під капотом зміни тут і там для більш чистого коду" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 Нерозбірні джорти" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "Додайте рельєф до кнопок панелі дій" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "Виправлення: крайній випадок, коли тема або масштабування не зберігалися належним чином" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "Виправлення: неправильно встановлювався заголовок у багатозадачному режимі" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "Виправлено: неузгодженість іконок у різних темах іконок" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "Виправлено: неузгодженість тем у різних стікерах" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 Щойно з пральні! (2: електричний бугай)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "Чіткіший опис меню" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "Більш послідовна тематика" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "Виправлення: ярлик видалення був безвідповідальним" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "Виправлення: не показувався скріншот" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 Щойно з пральні!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "Включає масштабування для кожної нотатки! Тож ви можете збільшити або зменшити текст" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "Для нових нотаток за замовчуванням використовується найзручніший для вас масштаб" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "Краща читабельність (WCAG AA або AAA залежно від теми)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "Також трохи краще виглядає тема. Так, навіть більше :)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "Покращені переклади" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "Кращий ярлик та підказки" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "Виправлено помилку, коли джорти залишалися на темі легкої системи" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Випуск Appcenter" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 Release: Slate and Bubblegum" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "Відродження давньої, але улюбленої версії Нотатника" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "Додаток тепер називається Jorts. Однак ви не можете його носити" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 чудових маленьких кольорів" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "Створено на основі сучасних технологій Linux та форматів пакунків" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "Плавний перехід при зміні теми" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "Нові наліпки мають випадкову веселу назву та колір" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "Кілька початкових перекладів вже є, і ще більше попереду" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "Електронні листи та посилання клікабельні! Ctrl+Клікнути, щоб відкрити в пошті або браузері" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "Текст підтримує скасування, повтор, і ви можете використовувати смайлики :)" diff --git a/po/extra/zh.po b/po/extra/zh.po index bffa18d6..6ca6006a 100644 --- a/po/extra/zh.po +++ b/po/extra/zh.po @@ -8,32 +8,32 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:21+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: data/jorts.desktop.in:3 +#: data/jorts.desktop.in:5 msgid "Jorts" msgstr "短裤" -#: data/jorts.desktop.in:4 +#: data/jorts.desktop.in:6 #: data/jorts.metainfo.xml.in:43 msgid "Sticky notes" msgstr "便笺" -#: data/jorts.desktop.in:5 +#: data/jorts.desktop.in:7 msgid "Write down notes, reminders, random thoughts and other short-term informations" msgstr "写下笔记、提醒、随想和其他短期信息" -#: data/jorts.desktop.in:10 +#: data/jorts.desktop.in:13 msgid "text;plain;plaintext;notepad;notes;sticky;post-it;" msgstr "文本;纯文本;纯文本;记事本;便条;粘贴;便利贴;" -#: data/jorts.desktop.in:17 +#: data/jorts.desktop.in:18 msgid "New sticky note" msgstr "新便笺" -#: data/jorts.desktop.in:22 +#: data/jorts.desktop.in:23 #, fuzzy msgid "Show Preferences" msgstr "首选项" @@ -150,7 +150,7 @@ msgstr "黑暗模式下的首选项对话框" #: data/jorts.metainfo.xml.in:99 #, fuzzy -msgid "3.4.0 Jorts of Autumn" +msgid "3.4.0 Scary Jorts of Boo" msgstr "2.2.0 光的 Jorts" #: data/jorts.metainfo.xml.in:101 @@ -174,392 +174,396 @@ msgid "Ctrl+M to open note settings now" msgstr "Ctrl+M 立即打开音符设置" #: data/jorts.metainfo.xml.in:106 +msgid "Alt+Number to change theme quickly" +msgstr "Alt+ 数字可快速更换主题" + +#: data/jorts.metainfo.xml.in:107 msgid "Some UI elements show up after being shown, for a sleek vibe" msgstr "一些用户界面元素在显示后会显示出来,营造出时尚的氛围" -#: data/jorts.metainfo.xml.in:107 +#: data/jorts.metainfo.xml.in:108 msgid "New note setting: Monospace. Could be for accessibility, could be for ascii doodles" msgstr "新的注释设置:单倍行距。可能是为了无障碍,也可能是为了ascii涂鸦" -#: data/jorts.metainfo.xml.in:108 +#: data/jorts.metainfo.xml.in:109 msgid "Cleaner, nicer code under the hood. Probably marginally enhanced performances or less edge bugs" msgstr "引擎盖下的代码更干净、更漂亮。性能可能略有提升,边缘错误可能减少" -#: data/jorts.metainfo.xml.in:109 +#: data/jorts.metainfo.xml.in:110 msgid "Better commented text and code, for translators and eventual contributors" msgstr "为翻译人员和最终贡献者提供更好的注释文本和代码" -#: data/jorts.metainfo.xml.in:116 +#: data/jorts.metainfo.xml.in:117 msgid "Bugfix: Fix Jorts lingering in the background not opening anymore if all windows were closed (#77)" msgstr "修正: 如果所有窗口都已关闭,在后台逗留的 Jorts 不再打开的问题 (#77)" -#: data/jorts.metainfo.xml.in:122 +#: data/jorts.metainfo.xml.in:123 msgid "3.3.0 Star Platinum Jorts" msgstr "3.3.0 明星白金短裤" -#: data/jorts.metainfo.xml.in:124 +#: data/jorts.metainfo.xml.in:125 msgid "Bugfix: Whole window being grabbable interfered with text editing. Only actionbar and header are, now (#75, #76)" msgstr "错误修正:整个窗口可抓取会影响文本编辑。现在只有操作栏和标题可抓取(#75、#76)" -#: data/jorts.metainfo.xml.in:125 +#: data/jorts.metainfo.xml.in:126 msgid "Added more random titles" msgstr "添加更多随机标题" -#: data/jorts.metainfo.xml.in:126 +#: data/jorts.metainfo.xml.in:127 msgid "Buttons for add/remove autostart" msgstr "添加/删除自动启动按钮" -#: data/jorts.metainfo.xml.in:127 +#: data/jorts.metainfo.xml.in:128 msgid "Some more title placeholders" msgstr "更多标题占位符" -#: data/jorts.metainfo.xml.in:128 +#: data/jorts.metainfo.xml.in:129 #, fuzzy msgid "Under the hood is a bit cleaner now" msgstr "为使代码更简洁,在引擎盖下进行了一些改动" -#: data/jorts.metainfo.xml.in:134 +#: data/jorts.metainfo.xml.in:135 msgid "Bugfix: When toggled off, the actionbar would leave an empty space. It is now fixed - With now a flashier animation to boot." msgstr "错误修正:当切换为关闭时,操作栏会留下空白。现在已修复,并配有更炫的动画效果。" -#: data/jorts.metainfo.xml.in:139 +#: data/jorts.metainfo.xml.in:140 #, fuzzy msgid "🌈 3.2.0 Jorts of Resilience and Love" msgstr "2.2.0 光的 Jorts" -#: data/jorts.metainfo.xml.in:141 +#: data/jorts.metainfo.xml.in:142 msgid "Add a cool little animation when enabling/disabling actionbar" msgstr "在启用/禁用动作条时添加炫酷的小动画" -#: data/jorts.metainfo.xml.in:142 +#: data/jorts.metainfo.xml.in:143 #, fuzzy msgid "Fixed blurrinness in high-scaled display" msgstr "修正了 Flathub BS 导致的高分辨率显示模糊问题" -#: data/jorts.metainfo.xml.in:143 +#: data/jorts.metainfo.xml.in:144 msgid "Added high-resolution screenshots" msgstr "添加了高分辨率截图" -#: data/jorts.metainfo.xml.in:144 +#: data/jorts.metainfo.xml.in:145 msgid "Last minute bugfix, somehow accels did not work when the Preferences were focused" msgstr "最后一分钟的错误修正,当首选项被聚焦时,accels 不知何故无法工作" -#: data/jorts.metainfo.xml.in:145 +#: data/jorts.metainfo.xml.in:146 msgid "A bit of housekeeping for FR and DE while at it" msgstr "顺便为联邦共和国和德意志民主共和国整理一下内务" -#: data/jorts.metainfo.xml.in:147 +#: data/jorts.metainfo.xml.in:148 msgid "😎 Guests stars:" msgstr "😎 宾客星级:" -#: data/jorts.metainfo.xml.in:149 +#: data/jorts.metainfo.xml.in:150 #, fuzzy msgid "A lovely temporary icon by @wpkelso" msgstr "荣耀版:@wpkelso 设计的可爱临时图标" -#: data/jorts.metainfo.xml.in:150 +#: data/jorts.metainfo.xml.in:151 #, fuzzy msgid "Updated EL translations thanks to @OrionasKakomoiroglou!" msgstr "更新翻译" -#: data/jorts.metainfo.xml.in:156 +#: data/jorts.metainfo.xml.in:157 #, fuzzy msgid "3.1.3 Jorts of fire and lava" msgstr "2.2.0 光的 Jorts" -#: data/jorts.metainfo.xml.in:158 +#: data/jorts.metainfo.xml.in:159 msgid "Save memory and disk writes by adding a proper debounce" msgstr "通过添加适当的去抖功能来节省内存和磁盘写入量" -#: data/jorts.metainfo.xml.in:159 +#: data/jorts.metainfo.xml.in:160 #, fuzzy msgid "Updated IT translations thanks to @albanobattistella!" msgstr "更新翻译" -#: data/jorts.metainfo.xml.in:160 +#: data/jorts.metainfo.xml.in:161 #, fuzzy msgid "Updated JA translations thanks to @RyoNakano!" msgstr "更新翻译" -#: data/jorts.metainfo.xml.in:166 +#: data/jorts.metainfo.xml.in:167 msgid "3.1.2 Amendments for flathub" msgstr "3.1.2 对船槽的修正" -#: data/jorts.metainfo.xml.in:168 +#: data/jorts.metainfo.xml.in:169 msgid "Nothing interesting here" msgstr "没什么有趣的" -#: data/jorts.metainfo.xml.in:174 +#: data/jorts.metainfo.xml.in:175 msgid "3.1.1 Woops" msgstr "3.1.1 呜呼" -#: data/jorts.metainfo.xml.in:176 +#: data/jorts.metainfo.xml.in:177 msgid "Minor screenshot amendments" msgstr "截图小修改" -#: data/jorts.metainfo.xml.in:182 +#: data/jorts.metainfo.xml.in:183 msgid "3.1.0 Jorts of songs and Jorts of dance" msgstr "3.1.0 歌曲短裤和舞蹈短裤" -#: data/jorts.metainfo.xml.in:184 +#: data/jorts.metainfo.xml.in:185 msgid "Flathub version, with a lot of help from @RyoNakano" msgstr "Flathub 版本,得到 @RyoNakano 的大力协助" -#: data/jorts.metainfo.xml.in:190 +#: data/jorts.metainfo.xml.in:191 #, fuzzy msgid "3.0.0 Jorts of Thunder" msgstr "2.2.0 光的 Jorts" -#: data/jorts.metainfo.xml.in:192 +#: data/jorts.metainfo.xml.in:193 msgid "A lovely brand new icon thanks to @wpkelso" msgstr "一个可爱的全新图标,感谢 @wpkelso" -#: data/jorts.metainfo.xml.in:193 +#: data/jorts.metainfo.xml.in:194 msgid "Between this and the GTK4 port, there is very little left from old Notejot... We could say it is a v3" msgstr "在这个版本和 GTK4 移植版本之间,旧版 Notejot 已经所剩无几...我们可以说它是 v3" -#: data/jorts.metainfo.xml.in:194 +#: data/jorts.metainfo.xml.in:195 msgid "Make the app more universal: Other DEs do not keep window dimensions, so reimplement save and restore" msgstr "使应用程序更具通用性:其他 DE 不保留窗口尺寸,因此需要重新实现保存和还原功能" -#: data/jorts.metainfo.xml.in:200 +#: data/jorts.metainfo.xml.in:201 #, fuzzy msgid "Updated RU translations thanks to @camellan!" msgstr "更新翻译" -#: data/jorts.metainfo.xml.in:205 +#: data/jorts.metainfo.xml.in:206 #, fuzzy msgid "Updated screenshots" msgstr "更新翻译" -#: data/jorts.metainfo.xml.in:210 +#: data/jorts.metainfo.xml.in:211 #, fuzzy msgid "2.4.0 The Jorts of Ice" msgstr "2.2.0 光的 Jorts" -#: data/jorts.metainfo.xml.in:212 +#: data/jorts.metainfo.xml.in:213 msgid "Thanks to RyoNakano reworking japanese translations, Japanese speakers will feel more at home now" msgstr "多亏了 RyoNakano 重新修订了日语翻译,日语使用者现在会感到更自在了" -#: data/jorts.metainfo.xml.in:213 +#: data/jorts.metainfo.xml.in:214 msgid "Respect reduce animations settings" msgstr "尊重减少动画的设置" -#: data/jorts.metainfo.xml.in:214 +#: data/jorts.metainfo.xml.in:215 #, fuzzy msgid "Scribble mode exclusively in the preferences now" msgstr "涂鸦模式已移至新的首选项对话框中" -#: data/jorts.metainfo.xml.in:215 +#: data/jorts.metainfo.xml.in:216 msgid "Add preference: now you can hide the bottom bar! (Ctrl+t)" msgstr "添加首选项:现在可以隐藏底部栏了!(Ctrl+t)" -#: data/jorts.metainfo.xml.in:216 +#: data/jorts.metainfo.xml.in:217 msgid "Bugfix: Fixed elements moving when a note title is hovered or selected" msgstr "修正: 当悬停或选择注释标题时元素移动的问题" -#: data/jorts.metainfo.xml.in:217 +#: data/jorts.metainfo.xml.in:218 msgid "Bugfix: New and delete accels were not working oops sorry it's fixed now" msgstr "错误修正: 新建和删除密码不起作用。" -#: data/jorts.metainfo.xml.in:218 +#: data/jorts.metainfo.xml.in:219 msgid "Bugfix where random components skipped the last possible choice" msgstr "修正随机组件跳过最后一个可能选择的问题" -#: data/jorts.metainfo.xml.in:219 +#: data/jorts.metainfo.xml.in:220 msgid "Bugfix: shortcut for emotes did not show up properly" msgstr "错误修正:表情快捷方式无法正常显示" -#: data/jorts.metainfo.xml.in:220 +#: data/jorts.metainfo.xml.in:221 msgid "Lil easter egg" msgstr "复活节彩蛋" -#: data/jorts.metainfo.xml.in:226 +#: data/jorts.metainfo.xml.in:227 #, fuzzy msgid "2.3.0 The Inner Jorts" msgstr "2.3.0 内胆短裤" -#: data/jorts.metainfo.xml.in:228 +#: data/jorts.metainfo.xml.in:229 msgid "New feature: Preferences dialog! Right-click on the app icon to see the option" msgstr "新功能:首选项对话框!右键单击应用程序图标,查看选项" -#: data/jorts.metainfo.xml.in:229 +#: data/jorts.metainfo.xml.in:230 msgid "scribbly mode has been moved to the new preference dialog" msgstr "涂鸦模式已移至新的首选项对话框中" -#: data/jorts.metainfo.xml.in:230 +#: data/jorts.metainfo.xml.in:231 #, fuzzy msgid "For translators: Translations have been separated in 2: One for the UI one for the extra content" msgstr "对翻译人员的改进:翻译已分为两种:一种用于用户界面,一种用于额外内容" -#: data/jorts.metainfo.xml.in:231 +#: data/jorts.metainfo.xml.in:232 msgid "Comfort: Easier to grab and drag stickies" msgstr "舒适:更容易抓取和拖动贴纸" -#: data/jorts.metainfo.xml.in:232 +#: data/jorts.metainfo.xml.in:233 msgid "Bugfix: Screenshots in the appcenter were a mess aaaa" msgstr "错误修正:应用中心的屏幕截图一团糟 aaaa" -#: data/jorts.metainfo.xml.in:238 +#: data/jorts.metainfo.xml.in:239 #, fuzzy msgid "Updated translations" msgstr "更新翻译" -#: data/jorts.metainfo.xml.in:243 +#: data/jorts.metainfo.xml.in:244 msgid "2.2.0 The Jorts of light" msgstr "2.2.0 光的 Jorts" -#: data/jorts.metainfo.xml.in:245 -#: data/jorts.metainfo.xml.in:260 +#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:261 msgid "Better translation coverage" msgstr "更好的翻译覆盖面" -#: data/jorts.metainfo.xml.in:246 +#: data/jorts.metainfo.xml.in:247 #, fuzzy msgid "New feature: scribbly mode! Hide sticky notes content when unfocused" msgstr "新功能:涂鸦模式在不集中时隐藏便笺内容" -#: data/jorts.metainfo.xml.in:247 +#: data/jorts.metainfo.xml.in:248 msgid "New feature: Emoji picker button! I know there is one on right-click, but buttons are more accessible!" msgstr "新功能:表情符号选择器按钮!我知道右键上有一个,但按钮更方便!" -#: data/jorts.metainfo.xml.in:248 +#: data/jorts.metainfo.xml.in:249 msgid "The button in the toolbar displays a random emote everytime you click!" msgstr "工具栏上的按钮每次点击都会显示一个随机表情!" -#: data/jorts.metainfo.xml.in:249 +#: data/jorts.metainfo.xml.in:250 msgid "New feature: Jorts does a monthly backup. Should there be any issue you can recover data!" msgstr "新功能:Jorts 每月进行一次备份。如果出现任何问题,您可以恢复数据!" -#: data/jorts.metainfo.xml.in:250 +#: data/jorts.metainfo.xml.in:251 msgid "Should the main storage be corrupted, Jorts tries to load from backup" msgstr "如果主存储损坏,Jorts 会尝试从备份中加载" -#: data/jorts.metainfo.xml.in:251 +#: data/jorts.metainfo.xml.in:252 msgid "Some new fun/cute default titles" msgstr "一些新的有趣/可爱的默认标题" -#: data/jorts.metainfo.xml.in:252 +#: data/jorts.metainfo.xml.in:253 msgid "Under the hood changes here and there for cleaner code" msgstr "为使代码更简洁,在引擎盖下进行了一些改动" -#: data/jorts.metainfo.xml.in:258 +#: data/jorts.metainfo.xml.in:259 msgid "2.1.2 The unrippable jorts" msgstr "2.1.2 无法瘫痪的短裤" -#: data/jorts.metainfo.xml.in:261 +#: data/jorts.metainfo.xml.in:262 msgid "Add relief to actionbar buttons" msgstr "为操作栏按钮添加浮雕" -#: data/jorts.metainfo.xml.in:262 +#: data/jorts.metainfo.xml.in:263 msgid "Bugfix: Edge case where the theme or zoom werent properly saved" msgstr "错误修正:无法正确保存主题或缩放的边缘情况" -#: data/jorts.metainfo.xml.in:263 +#: data/jorts.metainfo.xml.in:264 msgid "Bugfix: Title in multitasking not set correctly" msgstr "修正] 多任务中的标题设置不正确" -#: data/jorts.metainfo.xml.in:264 +#: data/jorts.metainfo.xml.in:265 msgid "Bugfix: Icon inconsistency accross icon themes" msgstr "错误修正:不同图标主题的图标不一致" -#: data/jorts.metainfo.xml.in:265 +#: data/jorts.metainfo.xml.in:266 msgid "Bugfix: Theming inconsistencies accross stickies" msgstr "修正] 标签不一致的问题" -#: data/jorts.metainfo.xml.in:271 +#: data/jorts.metainfo.xml.in:272 msgid "2.1.1 Fresh out of the laundry! (2: electric boogaloo)" msgstr "2.1.1 刚从洗衣房出来!(2: 电动布加洛)" -#: data/jorts.metainfo.xml.in:273 +#: data/jorts.metainfo.xml.in:274 msgid "Clearer appmenu description" msgstr "更清晰的应用程序菜单说明" -#: data/jorts.metainfo.xml.in:274 +#: data/jorts.metainfo.xml.in:275 msgid "More consistent theming" msgstr "更一致的主题" -#: data/jorts.metainfo.xml.in:275 +#: data/jorts.metainfo.xml.in:276 msgid "Bugfix: the delete shortcut was unresponsible" msgstr "错误修正:删除快捷方式不负责任" -#: data/jorts.metainfo.xml.in:276 +#: data/jorts.metainfo.xml.in:277 msgid "Bugfix: screenshot not showing" msgstr "错误修正:屏幕截图不显示" -#: data/jorts.metainfo.xml.in:282 +#: data/jorts.metainfo.xml.in:283 msgid "2.1.0 Fresh out of the laundry!" msgstr "2.1.0 刚洗完的衣服!" -#: data/jorts.metainfo.xml.in:284 +#: data/jorts.metainfo.xml.in:285 msgid "Includes a per-note zoom! So you can get bigger or smaller text" msgstr "包括每个笔记的缩放功能!因此,您可以放大或缩小文本" -#: data/jorts.metainfo.xml.in:285 +#: data/jorts.metainfo.xml.in:286 msgid "Latest set zoom, aka what is most comfortable to you, stays as default for new notes" msgstr "最新设置的缩放(也就是您最喜欢的缩放)将保留为新笔记的默认设置" -#: data/jorts.metainfo.xml.in:286 +#: data/jorts.metainfo.xml.in:287 msgid "Better readability (WCAG AA or AAA depending on theme)" msgstr "更好的可读性(WCAG AA 或 AAA,视主题而定)" -#: data/jorts.metainfo.xml.in:287 +#: data/jorts.metainfo.xml.in:288 msgid "Also slightly better looking theme. Yes even more :)" msgstr "主题也更美观。是的,甚至更多:)" -#: data/jorts.metainfo.xml.in:288 +#: data/jorts.metainfo.xml.in:289 msgid "Improved translations" msgstr "改进翻译" -#: data/jorts.metainfo.xml.in:289 +#: data/jorts.metainfo.xml.in:290 msgid "Better shortcut and tooltips" msgstr "更好的快捷键和工具提示" -#: data/jorts.metainfo.xml.in:290 +#: data/jorts.metainfo.xml.in:291 msgid "Fixed a bug where Jorts stayed on light system theme" msgstr "修正了一个错误,该错误导致 Jorts 停留在轻系统主题上" -#: data/jorts.metainfo.xml.in:296 +#: data/jorts.metainfo.xml.in:297 msgid "2.0.1 Appcenter release" msgstr "2.0.1 Appcenter 发布" -#: data/jorts.metainfo.xml.in:301 +#: data/jorts.metainfo.xml.in:302 msgid "2.0.0 Release: Slate And Bubblegum" msgstr "2.0.0 发布:石板和泡泡糖" -#: data/jorts.metainfo.xml.in:303 +#: data/jorts.metainfo.xml.in:304 msgid "Revival of an ancient but well loved version of Notejot" msgstr "恢复古老但深受喜爱的 Notejot 版本" -#: data/jorts.metainfo.xml.in:304 +#: data/jorts.metainfo.xml.in:305 msgid "The app is now named Jorts. You however cannot wear it" msgstr "这款应用程序现在被命名为 Jorts。但你不能穿它" -#: data/jorts.metainfo.xml.in:305 +#: data/jorts.metainfo.xml.in:306 msgid "10 lovely little colours" msgstr "10 种可爱的小颜色" -#: data/jorts.metainfo.xml.in:306 +#: data/jorts.metainfo.xml.in:307 msgid "Built atop of modern Linux technologies and packaging formats" msgstr "建立在现代 Linux 技术和打包格式之上" -#: data/jorts.metainfo.xml.in:307 +#: data/jorts.metainfo.xml.in:308 msgid "Smooth transition when changing theme" msgstr "更换主题时平稳过渡" -#: data/jorts.metainfo.xml.in:308 +#: data/jorts.metainfo.xml.in:309 msgid "New stickies have a random fun little title and colour" msgstr "新贴纸有一个随机的有趣小标题和颜色" -#: data/jorts.metainfo.xml.in:309 +#: data/jorts.metainfo.xml.in:310 msgid "A few initial translations included, and more to come" msgstr "包括一些初步翻译,更多翻译将陆续推出" -#: data/jorts.metainfo.xml.in:310 +#: data/jorts.metainfo.xml.in:311 msgid "Email and links are clickable! Ctrl+Click to open in mail or browser" msgstr "电子邮件和链接可点击!Ctrl+ 点击可在邮件或浏览器中打开" -#: data/jorts.metainfo.xml.in:311 +#: data/jorts.metainfo.xml.in:312 msgid "Text supports undo, redo, and you can use emojis :)" msgstr "文本支持撤消、重做,还可以使用表情符号:)" diff --git a/po/fi.po b/po/fi.po index 4ff61b60..700adc4a 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,398 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Muokkaa otsikkoa napsauttamalla" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Uusi muistilappu" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Poista muistilappu" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Lisää hymiö" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Tämän muistilapun asetukset" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Oletusfontti" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Napsauta käyttääksesi tekstin oletusfonttia" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Klikkaa käyttääksesi monospaced-fonttia" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Pienennä" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Oletusarvoinen zoomaustaso" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Suurenna" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Mustikka" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Minttu" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Lime" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banaani" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Oranssi" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Mansikka" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Liuskekivi" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Viinirypäle" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Kaakao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Pyyntö järjestelmälle lähetetty" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Tee keskittymättömistä muistiinpanoista lukukelvottomia" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Jos tämä on käytössä, tarkentamattomat muistilaput muuttuvat lukukelvottomiksi, jotta niiden sisältö voidaan suojata tirkisteleviltä katseilta." - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Piilota painikepalkki" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Jos tämä on käytössä, piilottaa muistilappujen alapalkin. Näppäimistön pikanäppäimet toimivat edelleen (Ctrl+T)." - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Aseta automaattinen käynnistys" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Aseta Jorts aloittamaan tietokoneen kanssa" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Poista automaattinen käynnistys" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Poista Jorts järjestelmän automaattisesta käynnistyksestä" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Salli aloittaa kirjautumisen yhteydessä" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Voit pyytää järjestelmää käynnistämään tämän sovelluksen automaattisesti." - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Tue meitä!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Sulje" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Sulje asetukset" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Jortsit" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Muokkaa otsikkoa napsauttamalla" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "Kaikkien muistilappujen asetukset" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Asetukset" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Kaikki parhaat ystäväni" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Minun superhyvä salainen reseptini" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Minun tehtävälistani" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Supersalaisuus, jota ei saa kertoa kenellekään" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Ostoslistani" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Satunnaisia ajatuksia suihkusta" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Minun suosikki fanifiktiot" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Minun suosikkini dinosaurukset" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Minun pahan aivoriiheni suunnitelma" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Mikä sai minut hymyilemään tänään" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Hei maailma!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Uusi tarra, uusi minä" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Piilotettu merirosvoaarre" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Ettei unohda, koskaan" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Rakas päiväkirja," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Hyvää päivänjatkoa! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Lääkkeideni aikataulu" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Kotityöt" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Oodi kissalleni" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Koirieni lempilelut" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Kuinka siistejä lintuni ovat" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Viimeisen keksin tapauksen epäillyt" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Sanat, jotka papukaijani tuntevat" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Siistit ja hauskat kohteliaisuudet jaettavaksi" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Kuunnelkaa," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Unelmieni Pokemon-joukkue" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Pienet muistiinpanoni" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Yllätyslahjalista" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Aivoriihi muistiinpanot" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Tuo juhliin" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Minun hämmästyttävä mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Lautasliina scribblys" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Minun suosikki kappaleita laulaa yhdessä" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Milloin mitäkin kasvia kastellaan" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Top 10 anime pettämistä" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Uskomatonta ascii-taidetta!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Grillausta varten" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Koirieni lempilelut" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Parhaat ainesosat salaattiin" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Luettavat kirjat" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Vierailukohteet" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Kokeilevat harrastukset" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Kuka voittaisi Gokun" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Istuttaa puutarhaan" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Ateriat tällä viikolla" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Kaikkien pizzatilaus" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Tänään itsehoito tehdä" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Tärkeitä vakuutuksia muistettavaksi" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Siisteimmät linux-sovellukset" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Koirieni lempilelut" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Minun hauskimmat vitsini" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Täydellinen aamiainen on..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Onnittelut!🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -419,6 +342,87 @@ msgstr "" "Hyvää päivänjatkoa!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Poista Jorts järjestelmän automaattisesta käynnistyksestä" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Aseta Jorts aloittamaan tietokoneen kanssa" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Pyyntö järjestelmälle lähetetty" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Tee keskittymättömistä muistiinpanoista lukukelvottomia" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Jos tämä on käytössä, tarkentamattomat muistilaput muuttuvat lukukelvottomiksi, jotta niiden sisältö voidaan suojata tirkisteleviltä katseilta." + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Piilota painikepalkki" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Jos tämä on käytössä, piilottaa muistilappujen alapalkin. Näppäimistön pikanäppäimet toimivat edelleen (Ctrl+T)." + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Aseta automaattinen käynnistys" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Poista automaattinen käynnistys" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Salli aloittaa kirjautumisen yhteydessä" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Voit pyytää järjestelmää käynnistämään tämän sovelluksen automaattisesti." + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Tue meitä!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Sulje" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Sulje asetukset" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Jortsit" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "Kaikkien muistilappujen asetukset" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Asetukset" + #~ msgid "Bubblegum" #~ msgstr "Bubblegum" diff --git a/po/fil.po b/po/fil.po index 1b817280..9b9eb129 100644 --- a/po/fil.po +++ b/po/fil.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,392 +17,314 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Bagong malagkit na tala" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Tanggalin ang malagkit na tala" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Ipasok ang emoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Mga kagustuhan para sa malagkit na tala na ito" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 msgid "Default" msgstr "" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Mag -zoom out" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Default na antas ng zoom" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Mag -zoom in" -#: src/Objects/Themes.vala:58 src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "mint" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "dayap" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "" -#: src/Objects/Themes.vala:64 src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 src/Objects/Themes.vala:68 msgid "Slate" msgstr "" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "ubas" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "" - -#: src/Views/PreferencesView.vala:54 -msgid "" -"If enabled, unfocused sticky notes become unreadable to protect their " -"content from peeking eyes (Ctrl+H)" -msgstr "" - -#: src/Views/PreferencesView.vala:74 -msgid "Hide buttons" -msgstr "" - -#: src/Views/PreferencesView.vala:76 -msgid "" -"If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will " -"still function (Ctrl+T)" -msgstr "" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "" - -#: src/Windows/StickyNoteWindow.vala:97 src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr "" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "" - -#. ****************************************** -#. HEADERBAR BS -#. ****************************************** -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "Mga kagustuhan para sa malagkit na tala na ito" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Lahat ng aking matalik na kaibigan" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Ang aking sobrang magandang lihim na recipe" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Ang aking listahan ng todo" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Super lihim upang hindi sabihin sa sinuman" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Listahan ng aking grocery" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Mga saloobin sa random na shower" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Ang aking fav fanfics" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Ang aking mga fav dinosaur" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Ang aking masamang plano sa mastermind" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Ano ang nagpangiti sa akin ngayon" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Hello World!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Bagong malagkit, bago ako" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Nakatagong Kayamanan ng Pirate" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Upang huwag kalimutan, kailanman" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "mahal na talaarawan," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Magandang araw! " -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Ang iskedyul ng aking meds" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Mga gawaing bahay" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ode sa aking pusa" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Ang aking mga aso paboritong laruan" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Gaano katindi ang aking mga ibon" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Ang mga suspek sa huling pag -iibigan ng cookie" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Mga salitang alam ng aking mga loro" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Malamig at nakakatawang papuri na ibigay" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Ok, makinig dito," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Ang Aking Pangarap na Pokemon Team" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Ang aking maliit na tala" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Listahan ng Regalo ng Sorpresa" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Mga tala sa brainstorming" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Upang dalhin sa partido" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Ang aking kamangha -manghang mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Napkin scribblys" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Ang aking mga kanta ng fav upang kumanta" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Kailan sa tubig na halaman" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Nangungunang 10 Betrayals Betrayals" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Ang aking mga aso paboritong laruan" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Ang aking mga aso paboritong laruan" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "" -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -413,6 +335,86 @@ msgid "" "Have a great day!🎇\n" msgstr "" +#: src/Utils/Libportal.vala:16 src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "" + +#: src/Utils/Libportal.vala:29 src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "" + +#: src/Views/PreferencesView.vala:54 +msgid "" +"If enabled, unfocused sticky notes become unreadable to protect their " +"content from peeking eyes (Ctrl+H)" +msgstr "" + +#: src/Views/PreferencesView.vala:74 +msgid "Hide buttons" +msgstr "" + +#: src/Views/PreferencesView.vala:76 +msgid "" +"If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will " +"still function (Ctrl+T)" +msgstr "" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "" + +#: src/Windows/StickyNoteWindow.vala:83 src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr "" + +#. ****************************************** +#. HEADERBAR BS +#. ****************************************** +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "Mga kagustuhan para sa malagkit na tala na ito" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "" + #~ msgid "Edit title" #~ msgstr "I -edit ang pamagat" diff --git a/po/fr.po b/po/fr.po index c49709c1..fb54d7c8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,392 +7,318 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Cliquez pour modifier le titre" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Nouvelle note autocollante" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Supprimer une note autocollante" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Insérer un émoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Préférences pour cette note autocollante" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 msgid "Default" msgstr "Standard" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Cliquez pour utiliser la police de texte par défaut" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Cliquez pour utiliser une police monospaciale" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Zoom arrière" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Zoom par défaut" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Zoom avant" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Myrtille" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Menthe" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Citron vert" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banane" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Orange" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Fraise" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Ardoise" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Raisin" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Cacao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Envoi d'une demande au système" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Rendre illisibles les notes non ciblées" - -#: src/Views/PreferencesView.vala:54 -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Si cette option est activée, les notes autocollantes non ciblées deviennent illisibles afin de protéger leur contenu des regards indiscrets (Ctrl+F)" - -#: src/Views/PreferencesView.vala:74 -msgid "Hide buttons" -msgstr "Masquer les boutons" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Si cette option est activée, elle masque la barre inférieure des notes autocollantes. Les raccourcis clavier fonctionnent toujours (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Définir le démarrage automatique" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Régler Jorts pour qu'il démarre avec l'ordinateur" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Supprimer le démarrage automatique" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Supprimer Jorts du démarrage automatique du système" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Autoriser le démarrage à l'ouverture de la session" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Vous pouvez demander au système de lancer automatiquement cette application." - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Nous soutenir !" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Fermer" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Fermer les préférences" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Jorts" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Cliquez pour modifier le titre" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -msgid "Preferences for your Jorts" -msgstr "Préférences pour vos Jorts" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Préférences" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Tous mes meilleurs amis" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Ma super bonne recette secrète" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Ma liste de choses à faire" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Un super secret à ne révéler à personne" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Ma liste de courses" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Réflexions aléatoires sous la douche" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Mes fanfics préférées" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Mes dinosaures préférés" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Mon plan diabolique" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Ce qui m'a fait sourire aujourd'hui" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Bonjour à tous !" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Nouveau collant, nouveau moi" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Trésor de pirates caché" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Pour ne jamais oublier" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Cher journal," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Bonne journée ! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Mon calendrier de prise de médicaments" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Tâches ménagères" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ode à mon chat" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Les jouets préférés de mes chiens" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Comme mes oiseaux sont cool" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Suspects dans l'affaire du dernier biscuit" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Des mots que mes perroquets connaissent" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Des compliments sympas et amusants à distribuer" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Ok, écoutez ici," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "L'équipe Pokemon de mes rêves" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Mes petites notes" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Liste de cadeaux surprise" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Notes de brainstorming" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "À apporter à la fête" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Mon incroyable mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Serviettes de table scribblys" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Mes chansons préférées à chanter" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Quand arroser quelle plante" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Top 10 des trahisons dans les animes" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Un art ascii étonnant !" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Pour le barbecue" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 msgid "My favourite bands" msgstr "Mes groupes préférés" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Les meilleurs ingrédients pour la salade" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Livres à lire" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Lieux à visiter" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Passe-temps à essayer" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Qui gagnerait contre Goku" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "A planter dans le jardin" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Repas de la semaine" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "La commande de pizza de chacun" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Aujourd'hui, prendre soin de soi" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Affirmations importantes à retenir" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Les applications linux les plus cool" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 msgid "My favourite dishes" msgstr "Mes plats préférés" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Mes blagues les plus drôles" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Le petit déjeuner parfait a..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Félicitations!🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -412,6 +338,84 @@ msgstr "" "Bonne journée!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Supprimer Jorts du démarrage automatique du système" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Régler Jorts pour qu'il démarre avec l'ordinateur" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Envoi d'une demande au système" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Rendre illisibles les notes non ciblées" + +#: src/Views/PreferencesView.vala:54 +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Si cette option est activée, les notes autocollantes non ciblées deviennent illisibles afin de protéger leur contenu des regards indiscrets (Ctrl+F)" + +#: src/Views/PreferencesView.vala:74 +msgid "Hide buttons" +msgstr "Masquer les boutons" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Si cette option est activée, elle masque la barre inférieure des notes autocollantes. Les raccourcis clavier fonctionnent toujours (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Définir le démarrage automatique" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Supprimer le démarrage automatique" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Autoriser le démarrage à l'ouverture de la session" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Vous pouvez demander au système de lancer automatiquement cette application." + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Nous soutenir !" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Fermer" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Fermer les préférences" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Jorts" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +msgid "Preferences for your Jorts" +msgstr "Préférences pour vos Jorts" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Préférences" + #~ msgid "Bubblegum" #~ msgstr "Chewing-gum" diff --git a/po/hi.po b/po/hi.po index 032b9144..7724c311 100644 --- a/po/hi.po +++ b/po/hi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,392 +17,314 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "नया चिपचिपा नोट" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "चिपचिपा नोट हटाएं" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "इमोजी डालें" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "इस चिपचिपे नोट के लिए वरीयताएँ" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 msgid "Default" msgstr "" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "ज़ूम आउट" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "डिफ़ॉल्ट ज़ूम स्तर" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "ज़ूम इन" -#: src/Objects/Themes.vala:58 src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "ब्लूबेरी" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "टकसाल" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "चूना" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "केला" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "नारंगी" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "स्ट्रॉबेरी" -#: src/Objects/Themes.vala:64 src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 src/Objects/Themes.vala:68 msgid "Slate" msgstr "स्लेट" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "अंगूर" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "कोको" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "" - -#: src/Views/PreferencesView.vala:54 -msgid "" -"If enabled, unfocused sticky notes become unreadable to protect their " -"content from peeking eyes (Ctrl+H)" -msgstr "" - -#: src/Views/PreferencesView.vala:74 -msgid "Hide buttons" -msgstr "" - -#: src/Views/PreferencesView.vala:76 -msgid "" -"If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will " -"still function (Ctrl+T)" -msgstr "" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "" - -#: src/Windows/StickyNoteWindow.vala:97 src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr "" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "" - -#. ****************************************** -#. HEADERBAR BS -#. ****************************************** -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "इस चिपचिपे नोट के लिए वरीयताएँ" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "मेरे सभी सबसे अच्छे दोस्त" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "मेरा सुपर गुड सीक्रेट रेसिपी" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "मेरी टोडो सूची" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "किसी को नहीं बताने के लिए सुपर सीक्रेट" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "मेरी किराने की सूची" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "यादृच्छिक शावर विचार" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "मेरे फेव फैनफिक्स" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "मेरे फेव डायनासोर" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "मेरी दुष्ट मास्टरमाइंड योजना" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "आज मुझे क्या मुस्कुरा दिया" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "हैलो वर्ल्ड!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "नया चिपचिपा, नया मुझे" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "छिपा हुआ समुद्री डाकू खजाना" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "कभी नहीं भूलना, कभी भी" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "प्रिय डायरी," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "आपका दिन शुभ हो! " -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "मेरे मेड्स शेड्यूल" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "घरेलू काम" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "मेरी बिल्ली के लिए ode" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "मेरे कुत्ते पसंदीदा खिलौने" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "मेरे पक्षी कितने शांत हैं" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "अंतिम कुकी चक्कर में संदिग्ध" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "शब्द मेरे तोते जानते हैं" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "बाहर देने के लिए शांत और मजेदार तारीफ" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "ठीक है, यहाँ सुनो," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "मेरा ड्रीम पोकेमॉन टीम" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "मेरे छोटे नोट" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "आश्चर्य उपहार सूची" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "विचार मंथन नोट्स" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "पार्टी में लाने के लिए" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "मेरा अद्भुत मिक्सटेप" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "नैपकिन स्क्रिबल्स" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "मेरे fav गाने के साथ गाने के लिए" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "कब पानी के लिए पानी" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "शीर्ष 10 एनीमे विश्वासघात" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "मेरे कुत्ते पसंदीदा खिलौने" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "मेरे कुत्ते पसंदीदा खिलौने" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "" -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -413,6 +335,86 @@ msgid "" "Have a great day!🎇\n" msgstr "" +#: src/Utils/Libportal.vala:16 src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "" + +#: src/Utils/Libportal.vala:29 src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "" + +#: src/Views/PreferencesView.vala:54 +msgid "" +"If enabled, unfocused sticky notes become unreadable to protect their " +"content from peeking eyes (Ctrl+H)" +msgstr "" + +#: src/Views/PreferencesView.vala:74 +msgid "Hide buttons" +msgstr "" + +#: src/Views/PreferencesView.vala:76 +msgid "" +"If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will " +"still function (Ctrl+T)" +msgstr "" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "" + +#: src/Windows/StickyNoteWindow.vala:83 src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr "" + +#. ****************************************** +#. HEADERBAR BS +#. ****************************************** +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "इस चिपचिपे नोट के लिए वरीयताएँ" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "" + #~ msgid "Bubblegum" #~ msgstr "बबलगम" diff --git a/po/io.github.ellie_commons.jorts.pot b/po/io.github.ellie_commons.jorts.pot index 29146d9f..79d59ddb 100644 --- a/po/io.github.ellie_commons.jorts.pot +++ b/po/io.github.ellie_commons.jorts.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,389 +17,312 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 msgid "Default" msgstr "" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "" -#: src/Objects/Themes.vala:58 src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "" -#: src/Objects/Themes.vala:64 src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 src/Objects/Themes.vala:68 msgid "Slate" msgstr "" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "" - -#: src/Views/PreferencesView.vala:54 -msgid "" -"If enabled, unfocused sticky notes become unreadable to protect their " -"content from peeking eyes (Ctrl+H)" -msgstr "" - -#: src/Views/PreferencesView.vala:74 -msgid "Hide buttons" -msgstr "" - -#: src/Views/PreferencesView.vala:76 -msgid "" -"If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will " -"still function (Ctrl+T)" -msgstr "" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "" - -#: src/Windows/StickyNoteWindow.vala:97 src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr "" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "" - -#. ****************************************** -#. HEADERBAR BS -#. ****************************************** -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -msgid "Preferences for your Jorts" -msgstr "" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "" -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "" -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 msgid "My favourite bands" msgstr "" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 msgid "My favourite dishes" msgstr "" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "" -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -409,3 +332,82 @@ msgid "" "I hope my little app brings you a lot of joy\n" "Have a great day!🎇\n" msgstr "" + +#: src/Utils/Libportal.vala:16 src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "" + +#: src/Utils/Libportal.vala:29 src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "" + +#: src/Views/PreferencesView.vala:54 +msgid "" +"If enabled, unfocused sticky notes become unreadable to protect their " +"content from peeking eyes (Ctrl+H)" +msgstr "" + +#: src/Views/PreferencesView.vala:74 +msgid "Hide buttons" +msgstr "" + +#: src/Views/PreferencesView.vala:76 +msgid "" +"If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will " +"still function (Ctrl+T)" +msgstr "" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "" + +#: src/Windows/StickyNoteWindow.vala:83 src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr "" + +#. ****************************************** +#. HEADERBAR BS +#. ****************************************** +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +msgid "Preferences for your Jorts" +msgstr "" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "" diff --git a/po/it.po b/po/it.po index 075376bc..11e7c233 100644 --- a/po/it.po +++ b/po/it.po @@ -8,395 +8,321 @@ msgstr "" "Last-Translator: Albano Battistella \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-05-10 12:46+0100\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Fare clic per modificare il titolo" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Nuova nota adesiva" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Cancella nota adesiva" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Inserire emoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Preferenze per questa nota adesiva" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Ripristino delle impostazioni predefinite" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Fare clic per utilizzare il carattere di testo predefinito" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospazio" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Fare clic per utilizzare il carattere monospaziato" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Rimpicciolisci" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Livello di zoom predefinito" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Ingrandisci" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Mirtillo" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Menta" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Lime" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banana" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Arancia" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Fragola" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Ardesia" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Uva" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Cacao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Richiesta inviata al sistema" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Rendere illeggibili gli appunti non focalizzati" - -#: src/Views/PreferencesView.vala:54 -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Se abilitato, le note adesive non messe a fuoco diventano illeggibili per proteggere il loro contenuto da occhi indiscreti (Ctrl+H)" - -#: src/Views/PreferencesView.vala:74 -msgid "Hide buttons" -msgstr "Nascondi pulsanti" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Se abilitato, nasconde la barra inferiore delle note adesive. Le scorciatoie da tastiera continuano a funzionare (Ctrl+T)." - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Impostare l'avvio automatico" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Impostare Jorts per l'avvio con il computer" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Rimuovere l'avvio automatico" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Rimuovere Jorts dall'avvio automatico del sistema" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Consentire l'avvio all'accesso" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "È possibile richiedere al sistema di avviare automaticamente questa applicazione." - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Sosteneteci!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Chiudere" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Chiudere le preferenze" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Pantaloncini" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Fare clic per modificare il titolo" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -msgid "Preferences for your Jorts" -msgstr "Preferenze per i tuoi Jorts" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Preferenze" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Tutti i miei migliori amici" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "La mia ricetta segreta super buona" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Il mio elenco di cose da fare" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Un super segreto da non dire a nessuno" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "La mia lista della spesa" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Pensieri casuali sulla doccia" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Le mie fanfic preferite" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "I miei dinosauri preferiti" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Il mio piano da genio del male" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Cosa mi ha fatto sorridere oggi" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Ciao mondo!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Nuovo appiccicoso, nuovo me" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Il tesoro nascosto dei pirati" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Per non dimenticare, mai" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Caro Diario," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Buona giornata! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Il mio programma di farmaci" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Faccende domestiche" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ode al mio gatto" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "I giocattoli preferiti dai miei cani" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Quanto sono belli i miei uccelli" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Sospetti nella vicenda dell'ultimo biscotto" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Le parole che i miei pappagalli conoscono" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Complimenti simpatici e divertenti da distribuire" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Ok, ascoltate qui," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "La squadra Pokemon dei miei sogni" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Le mie piccole note" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Lista di regali a sorpresa" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Note di brainstorming" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Da portare alla festa" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Il mio fantastico mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Tovaglioli scribblys" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Le mie canzoni preferite da cantare insieme" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Quando innaffiare quale pianta" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "I 10 migliori tradimenti degli anime" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Arte ascii sorprendente!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Per il barbecue" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "I giocattoli preferiti dai miei cani" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "I migliori ingredienti per l'insalata" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Libri da leggere" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Luoghi da visitare" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Hobby da provare" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Chi vincerebbe contro Goku" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Da piantare in giardino" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "I pasti di questa settimana" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "L'ordine di pizza di tutti" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Oggi la cura di sé da fare" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Affermazioni importanti da ricordare" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Le applicazioni linux più interessanti" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "I giocattoli preferiti dai miei cani" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Le mie battute più divertenti" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "La colazione perfetta è..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Congratulazioni!🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -416,6 +342,84 @@ msgstr "" "Buona giornata! 🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Rimuovere Jorts dall'avvio automatico del sistema" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Impostare Jorts per l'avvio con il computer" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Richiesta inviata al sistema" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Rendere illeggibili gli appunti non focalizzati" + +#: src/Views/PreferencesView.vala:54 +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Se abilitato, le note adesive non messe a fuoco diventano illeggibili per proteggere il loro contenuto da occhi indiscreti (Ctrl+H)" + +#: src/Views/PreferencesView.vala:74 +msgid "Hide buttons" +msgstr "Nascondi pulsanti" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Se abilitato, nasconde la barra inferiore delle note adesive. Le scorciatoie da tastiera continuano a funzionare (Ctrl+T)." + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Impostare l'avvio automatico" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Rimuovere l'avvio automatico" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Consentire l'avvio all'accesso" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "È possibile richiedere al sistema di avviare automaticamente questa applicazione." + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Sosteneteci!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Chiudere" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Chiudere le preferenze" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Pantaloncini" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +msgid "Preferences for your Jorts" +msgstr "Preferenze per i tuoi Jorts" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Preferenze" + #~ msgid "Bubblegum" #~ msgstr "Gomma da masticare" diff --git a/po/ja.po b/po/ja.po index a106740d..ad11ab49 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,395 +7,321 @@ msgstr "" "Last-Translator: Ryo Nakano \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-05-11 19:52+0900\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "クリックしてタイトルを編集する" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "新しい付箋" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "付箋を削除" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "絵文字を挿入" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "この付箋の設定" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "デフォルトにリセット" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "デフォルトのテキストフォントを使用する場合はクリックしてください。" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "モノスペース" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "等幅フォントを使用する場合はクリックしてください。" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "縮小" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "デフォルトのズームレベル" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "拡大" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "ブルーベリー" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "ミント" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "ライム" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "バナナ" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "オレンジ" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "ストロベリー" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "スレート" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "グレープ" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "ココア" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "システムへのリクエスト送信" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "フォーカスされていない付箋を読めなくする" - -#: src/Views/PreferencesView.vala:54 -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "有効にすると、フォーカスされていない付箋は走り書きのように読めなくなり、内容の覗き見防止になります (Ctrl+H)" - -#: src/Views/PreferencesView.vala:74 -msgid "Hide buttons" -msgstr "ボタンを隠す" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "有効にすると、付箋のボトムバーが非表示になります。この場合でもキーボードショートカットは利用可能です (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "オートスタートの設定" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Jortsをコンピュータで起動するように設定する" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "自動起動の削除" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "システムの自動起動からJortsを削除する" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "ログイン時に開始できるようにする" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "このアプリケーションを自動的に起動するようシステムに要求することができます。" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "ご支援をお願いいたします!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "閉じる" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "環境設定を閉じる" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr "- ジョーツ" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "クリックしてタイトルを編集する" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -msgid "Preferences for your Jorts" -msgstr "Jorts を着こなす" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "好み" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "私の大事な親友" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "とってもおいしい私の秘伝レシピ" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "私のやることリスト" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "誰にも言えない秘密" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "食料品リスト" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "脈絡のない思いつき" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "私のお気に入りの二次創作" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "私の好きな恐竜" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "ぼくのかんがえたさいきょうのいたずら作戦" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "今日笑ったこと" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "こんにちは世界!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "新しい付箋、新しい自分" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "隠された海賊の財宝" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "決して忘れないために" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "私の日記" -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "良い一日を! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "私の服用スケジュール" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "家事" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "愛猫への頌歌" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "愛犬のお気に入りのおもちゃ" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "俺の飼っている鳥が好きすぎる件" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "クッキー最後の一枚消失事件の容疑者" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "我が家のオウムが知っている言葉" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "クールで面白い褒め言葉" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "皆の衆、よく聞きたまえ!" -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "夢のポケモンチーム" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "私の小さなメモ" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "サプライズプレゼントリスト" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "ブレインストーミング" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "パーティーに持参する" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "私の素晴らしいミックステープ" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "紙ナプキンに落書き" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "一緒に歌いたいお気に入りの曲" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "どの植物にいつ水をやるか" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "アニメの裏切りシーントップ 10" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "素晴らしいアスキーアート!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "バーベキュー用" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "愛犬のお気に入りのおもちゃ" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "サラダに最適な食材" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "読みたい本" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "見どころ" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "やってみたい趣味" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "悟空に勝つのは誰か" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "庭に植える" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "今週の食事" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "みんなのピザ注文" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "今日のセルフケア" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "覚えておくべき重要なアファメーション" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "最もクールなLinuxアプリ" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "愛犬のお気に入りのおもちゃ" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "私の面白いジョーク" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "完璧な朝食は..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥おめでとうございます!🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -415,6 +341,84 @@ msgstr "" "素晴らしい一日をお過ごしください。\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "システムの自動起動からJortsを削除する" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Jortsをコンピュータで起動するように設定する" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "システムへのリクエスト送信" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "フォーカスされていない付箋を読めなくする" + +#: src/Views/PreferencesView.vala:54 +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "有効にすると、フォーカスされていない付箋は走り書きのように読めなくなり、内容の覗き見防止になります (Ctrl+H)" + +#: src/Views/PreferencesView.vala:74 +msgid "Hide buttons" +msgstr "ボタンを隠す" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "有効にすると、付箋のボトムバーが非表示になります。この場合でもキーボードショートカットは利用可能です (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "オートスタートの設定" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "自動起動の削除" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "ログイン時に開始できるようにする" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "このアプリケーションを自動的に起動するようシステムに要求することができます。" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "ご支援をお願いいたします!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "閉じる" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "環境設定を閉じる" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr "- ジョーツ" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +msgid "Preferences for your Jorts" +msgstr "Jorts を着こなす" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "好み" + #~ msgid "Bubblegum" #~ msgstr "バブルガム" diff --git a/po/lt.po b/po/lt.po index 34e2e840..a9fa197f 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,396 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Spustelėkite, jei norite redaguoti pavadinimą" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Naujas lipnus lapelis" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Ištrinti lipnią pastabą" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Įterpti šypsenėlę" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Šio lipnaus lapelio nuostatos" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Iš naujo nustatyti numatytąjį nustatymą" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Spustelėkite, jei norite naudoti numatytąjį teksto šriftą" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Spustelėkite, jei norite naudoti vienspalvį šriftą" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Padidinti mastelį" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Numatytasis priartinimo lygis" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Priartinti vaizdą" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Mėlynių" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Mėtos" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Lime" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Bananai" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Oranžinė" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Braškių" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Šiferis" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Vynuogės" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Kakava" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Išsiųsta užklausa sistemai" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Nesufokusuotas pastabas paverskite neįskaitomomis" - -#: src/Views/PreferencesView.vala:54 -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Jei įjungta, nesufokusuoti lipnūs užrašai tampa neįskaitomi, kad jų turinys būtų apsaugotas nuo žvilgsnių (Ctrl+H)." - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Paslėpti mygtukų juostą" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Jei įjungta, paslepiama lipnių užrašų apatinė juosta. Klaviatūros spartieji klavišai vis tiek veiks (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Nustatyti automatinį paleidimą" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Nustatykite \"Jorts\" pradėti nuo kompiuterio" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Pašalinti automatinį paleidimą" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Pašalinti \"Jorts\" iš sistemos automatinio paleidimo" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Leisti paleisti prisijungus" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Galite paprašyti, kad sistema automatiškai paleistų šią programą" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Palaikykite mus!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Uždaryti" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Uždaryti nuostatas" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Šortai" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Spustelėkite, jei norite redaguoti pavadinimą" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -msgid "Preferences for your Jorts" -msgstr "Jūsų šortų pageidavimai" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Nustatymai" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Visi mano geriausi draugai" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Mano itin geras slaptas receptas" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Mano darbų sąrašas" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Super paslaptis, kurios niekam nesakykite" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Mano maisto produktų sąrašas" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Atsitiktinės mintys apie dušą" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Mano mėgstamiausi fanfics" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Mano mėgstamiausi dinozaurai" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Mano blogio planas" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Kas mane šiandien privertė nusišypsoti" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Sveikas pasauli!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Naujas lipnus, naujas aš" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Paslėptas piratų lobis" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Niekada nepamiršti" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Mielas dienorašti," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Geros dienos! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Mano vaistų vartojimo grafikas" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Namų ruošos darbai" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Odė mano katei" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Mano šunų mėgstamiausi žaislai" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Kokie šaunūs yra mano paukščiai" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Įtariamieji dėl \"Paskutiniųjų sausainių\" bylos" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Žodžiai, kuriuos žino mano papūgos" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Šaunūs ir juokingi komplimentai" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Gerai, klausykitės čia," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Mano svajonių Pokemon komanda" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Mano mažos pastabos" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Netikėtų dovanų sąrašas" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Smegenų šturmo pastabos" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Atnešti į vakarėlį" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Mano nuostabus miksas" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Servetėlių skraistės" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Mano mėgstamiausios dainos dainuoti kartu" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Kada laistyti kurį augalą" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "10 geriausių anime išdavysčių" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Nuostabus ascii menas!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Dėl kepsninės" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Mano šunų mėgstamiausi žaislai" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Geriausi salotų ingredientai" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Skaitomos knygos" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Lankytinos vietos" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Išbandomi pomėgiai" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Kas laimėtų prieš Goku" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Sodinti sode" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Šios savaitės patiekalai" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Kiekvieno picos užsakymas" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Šiandien savarankiškai rūpintis" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Svarbūs teiginiai, kuriuos reikia prisiminti" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Šauniausios \"Linux\" programos" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Mano šunų mėgstamiausi žaislai" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Mano juokingiausi anekdotai" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Puikūs pusryčiai turi..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Sveikiname!🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -417,6 +342,85 @@ msgstr "" "Geros dienos!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Pašalinti \"Jorts\" iš sistemos automatinio paleidimo" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Nustatykite \"Jorts\" pradėti nuo kompiuterio" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Išsiųsta užklausa sistemai" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Nesufokusuotas pastabas paverskite neįskaitomomis" + +#: src/Views/PreferencesView.vala:54 +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Jei įjungta, nesufokusuoti lipnūs užrašai tampa neįskaitomi, kad jų turinys būtų apsaugotas nuo žvilgsnių (Ctrl+H)." + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Paslėpti mygtukų juostą" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Jei įjungta, paslepiama lipnių užrašų apatinė juosta. Klaviatūros spartieji klavišai vis tiek veiks (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Nustatyti automatinį paleidimą" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Pašalinti automatinį paleidimą" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Leisti paleisti prisijungus" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Galite paprašyti, kad sistema automatiškai paleistų šią programą" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Palaikykite mus!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Uždaryti" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Uždaryti nuostatas" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Šortai" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +msgid "Preferences for your Jorts" +msgstr "Jūsų šortų pageidavimai" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Nustatymai" + #~ msgid "Bubblegum" #~ msgstr "Bubblegum" diff --git a/po/nb.po b/po/nb.po index 062078e0..cc2f7ca2 100644 --- a/po/nb.po +++ b/po/nb.po @@ -8,398 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Klikk for å redigere tittelen" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Ny klistrelapp" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Slett klistrelapp" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Sett inn emoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Innstillinger for denne klistrelappen" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Tilbakestill til standard" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Klikk for å bruke standard tekstfont" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Klikk for å bruke monospaced font" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Zoom ut" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Standard zoomnivå" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Zoom inn" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Blåbær" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Mynte" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Kalk" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banan" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Oransje" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Jordbær" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Skifer" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Drue" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Kakao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Forespørsel til systemet sendt" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Gjør ufokuserte notater uleselige" - -#: src/Views/PreferencesView.vala:54 -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Hvis denne funksjonen er aktivert, blir ufokuserte klistrelapper uleselige for å beskytte innholdet mot nysgjerrige blikk (Ctrl+H)" - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Skjul knappelinjen" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Hvis denne funksjonen er aktivert, skjules den nederste linjen i klistrelapper. Tastatursnarveier vil fortsatt fungere (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Angi autostart" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Sett Jorts til å starte med datamaskinen" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Fjern autostart" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Fjern Jorts fra systemets autostart" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Tillat å starte ved pålogging" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Du kan be systemet om å starte dette programmet automatisk" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Støtt oss!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Lukk" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Lukk preferanser" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -#, fuzzy -msgid " - Jorts" -msgstr "Jorts" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Klikk for å redigere tittelen" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "Innstillinger for denne klistrelappen" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Innstillinger" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Alle mine aller beste venner" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Min supergode hemmelige oppskrift" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Oppgavelisten min" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Superhemmeligheten du ikke må fortelle til noen" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Min handleliste" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Tilfeldige tanker om dusjen" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Mine favorittfanfics" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Mine favorittdinosaurer" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Min onde mesterhjerneplan" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Det som fikk meg til å smile i dag" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Hallo, verden!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Ny klistrelapp, ny meg" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Skjult sjørøverskatt" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Å aldri glemme, aldri" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Kjære dagbok," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Ha en fin dag! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Min medisinplan" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Huslige gjøremål" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ode til katten min" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Favorittlekene til hundene mine" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Så kule fuglene mine er" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Mistenkte i Last Cookie-saken" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Ord papegøyene mine kan" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Kule og morsomme komplimenter å gi ut" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Ok, hør her," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Mitt drømme-Pokemon-team" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Mine små notater" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Overraskende gaveliste" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Notater fra idémyldringen" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Å ta med til festen" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Min fantastiske mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Serviettskriblerier" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Mine favorittsanger å synge med på" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Når du skal vanne hvilken plante" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Topp 10 anime-svik" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Fantastisk ascii-kunst!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Til grillen" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Favorittlekene til hundene mine" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "De beste ingrediensene til salat" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Bøker å lese" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Steder å besøke" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Hobbyer å prøve ut" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Hvem ville vinne mot Goku" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Å plante i hagen" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Måltider denne uken" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Alles pizzabestilling" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "I dag er det egenpleie å gjøre" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Viktige affirmasjoner å huske på" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "De kuleste linux-appene" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Favorittlekene til hundene mine" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Mine morsomste vitser" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Den perfekte frokosten har..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Gratulerer! 🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -419,6 +342,87 @@ msgstr "" "Ha en flott dag 🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Fjern Jorts fra systemets autostart" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Sett Jorts til å starte med datamaskinen" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Forespørsel til systemet sendt" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Gjør ufokuserte notater uleselige" + +#: src/Views/PreferencesView.vala:54 +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Hvis denne funksjonen er aktivert, blir ufokuserte klistrelapper uleselige for å beskytte innholdet mot nysgjerrige blikk (Ctrl+H)" + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Skjul knappelinjen" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Hvis denne funksjonen er aktivert, skjules den nederste linjen i klistrelapper. Tastatursnarveier vil fortsatt fungere (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Angi autostart" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Fjern autostart" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Tillat å starte ved pålogging" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Du kan be systemet om å starte dette programmet automatisk" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Støtt oss!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Lukk" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Lukk preferanser" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +#, fuzzy +msgid " - Jorts" +msgstr "Jorts" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "Innstillinger for denne klistrelappen" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Innstillinger" + #~ msgid "Bubblegum" #~ msgstr "Bubblegum" diff --git a/po/nl.po b/po/nl.po index 2ad950bb..866fd707 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,398 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Klik om de titel te bewerken" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Nieuw plakbriefje" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Sticky verwijderen" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Emoji invoegen" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Voorkeuren voor deze sticky note" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Standaard lettertype" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Klik om het standaard tekstlettertype te gebruiken" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Klik om een enkel lettertype te gebruiken" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Uitzoomen" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Standaard zoomniveau" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Inzoomen" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Bosbessen" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Munt" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Kalk" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banaan" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Oranje" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Aardbei" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Leisteen" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Druif" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Cacao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Verzoek naar systeem verzonden" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Maak ongerichte notities onleesbaar" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Indien ingeschakeld worden onscherpe sticky notes onleesbaar om hun inhoud te beschermen tegen glurende ogen" - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Knoppenbalk verbergen" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Indien ingeschakeld, wordt de onderste balk in plaknotities verborgen. Sneltoetsen werken nog steeds (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Autostart instellen" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Stel Jorts in om te starten met de computer" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Autostart verwijderen" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Jorts verwijderen uit autostart" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Toestaan om te starten bij aanmelden" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "U kunt het systeem vragen om deze toepassing automatisch te starten" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Steun ons!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Sluit" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Voorkeuren sluiten" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Korte broek" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Klik om de titel te bewerken" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "Voorkeuren voor alle plaknotities" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Voorkeuren" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Al mijn allerbeste vrienden" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Mijn supergoede geheime recept" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Mijn takenlijst" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Supergeheim om aan niemand te vertellen" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Mijn boodschappenlijstje" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Willekeurige douche gedachten" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Mijn favoriete fanfics" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Mijn favoriete dinosaurussen" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Mijn kwade meesterbrein plan" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Wat me vandaag deed glimlachen" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Hallo wereld!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Nieuwe klever, nieuwe ik" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Verborgen piratenschat" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Om nooit te vergeten" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Lief dagboek," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Fijne dag! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Mijn medicatieschema" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Huishoudelijke taken" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ode aan mijn kat" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Het favoriete speelgoed van mijn honden" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Hoe cool mijn vogels zijn" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Verdachten in de laatste koekjesaffaire" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Woorden die mijn papegaaien kennen" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Leuke en grappige complimenten om uit te delen" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Ok, luister hier," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Mijn Pokemon dreamteam" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Mijn kleine notities" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Lijst met verrassingscadeaus" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Notities brainstormen" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Om mee te nemen naar het feest" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Mijn geweldige mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Servet krabbetjes" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Mijn favoriete liedjes om mee te zingen" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Wanneer welke plant water geven" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Top 10 anime verraad" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Geweldige ascii-kunst!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Voor de barbecue" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Het favoriete speelgoed van mijn honden" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Beste ingrediënten voor salade" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Boeken om te lezen" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Plaatsen om te bezoeken" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Hobby's om uit te proberen" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Wie zou er winnen van Goku" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Om in de tuin te planten" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Maaltijden deze week" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Pizza bestellen voor iedereen" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Vandaag zelfzorg te doen" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Belangrijke affirmaties om te onthouden" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "De coolste Linux-apps" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Het favoriete speelgoed van mijn honden" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Mijn grappigste grappen" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Het perfecte ontbijt heeft..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "Gefeliciteerd!" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -419,6 +342,87 @@ msgstr "" "Fijne dag!\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Jorts verwijderen uit autostart" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Stel Jorts in om te starten met de computer" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Verzoek naar systeem verzonden" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Maak ongerichte notities onleesbaar" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Indien ingeschakeld worden onscherpe sticky notes onleesbaar om hun inhoud te beschermen tegen glurende ogen" + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Knoppenbalk verbergen" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Indien ingeschakeld, wordt de onderste balk in plaknotities verborgen. Sneltoetsen werken nog steeds (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Autostart instellen" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Autostart verwijderen" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Toestaan om te starten bij aanmelden" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "U kunt het systeem vragen om deze toepassing automatisch te starten" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Steun ons!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Sluit" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Voorkeuren sluiten" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Korte broek" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "Voorkeuren voor alle plaknotities" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Voorkeuren" + #~ msgid "Bubblegum" #~ msgstr "Bubblegum" diff --git a/po/no.po b/po/no.po index 9f33ad25..651a0ef2 100644 --- a/po/no.po +++ b/po/no.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,399 +12,315 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Ny klistrelapp" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Slett klistrelapp" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Sett inn emoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Innstillinger for denne klistrelappen" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Tilbakestill til standard" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Zoom ut" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Standard zoomnivå" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Zoom inn" -#: src/Objects/Themes.vala:58 src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Blåbær" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Mynte" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Kalk" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banan" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Oransje" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Jordbær" -#: src/Objects/Themes.vala:64 src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 src/Objects/Themes.vala:68 msgid "Slate" msgstr "Skifer" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Drue" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Kakao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Gjør ufokuserte notater uleselige" - -#: src/Views/PreferencesView.vala:54 -msgid "" -"If enabled, unfocused sticky notes become unreadable to protect their " -"content from peeking eyes (Ctrl+H)" -msgstr "" -"Hvis denne funksjonen er aktivert, blir ufokuserte klistrelapper uleselige " -"for å beskytte innholdet mot nysgjerrige blikk (Ctrl+H)" - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Skjul knappelinjen" - -#: src/Views/PreferencesView.vala:76 -msgid "" -"If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will " -"still function (Ctrl+T)" -msgstr "" -"Hvis denne funksjonen er aktivert, skjules den nederste linjen i " -"klistrelapper. Tastatursnarveier vil fortsatt fungere (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Tillat å starte ved pålogging" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Støtt oss!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Lukk" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "" - -#: src/Windows/StickyNoteWindow.vala:97 src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 src/Windows/PreferenceWindow.vala:52 -#, fuzzy -msgid " - Jorts" -msgstr "Jorts" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "" - -#. ****************************************** -#. HEADERBAR BS -#. ****************************************** -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "Innstillinger for denne klistrelappen" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Alle mine aller beste venner" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Min supergode hemmelige oppskrift" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Oppgavelisten min" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Superhemmeligheten du ikke må fortelle til noen" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Min handleliste" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Tilfeldige tanker om dusjen" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Mine favorittfanfics" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Mine favorittdinosaurer" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Min onde mesterhjerneplan" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Det som fikk meg til å smile i dag" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Hallo, verden!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Ny klistrelapp, ny meg" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Skjult sjørøverskatt" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Å aldri glemme, aldri" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Kjære dagbok," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Ha en fin dag! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Min medisinplan" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Huslige gjøremål" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ode til katten min" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Favorittlekene til hundene mine" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Så kule fuglene mine er" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Mistenkte i Last Cookie-saken" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Ord papegøyene mine kan" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Kule og morsomme komplimenter å gi ut" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Ok, hør her," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Mitt drømme-Pokemon-team" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Mine små notater" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Overraskende gaveliste" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Notater fra idémyldringen" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Å ta med til festen" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Min fantastiske mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Serviettskriblerier" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Mine favorittsanger å synge med på" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Når du skal vanne hvilken plante" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Topp 10 anime-svik" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Fantastisk ascii-kunst!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Favorittlekene til hundene mine" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Favorittlekene til hundene mine" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "" -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Gratulerer! 🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -422,6 +338,92 @@ msgstr "" "Jeg håper min lille app gir deg mye glede\n" "Ha en flott dag 🎇\n" +#: src/Utils/Libportal.vala:16 src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "" + +#: src/Utils/Libportal.vala:29 src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Gjør ufokuserte notater uleselige" + +#: src/Views/PreferencesView.vala:54 +msgid "" +"If enabled, unfocused sticky notes become unreadable to protect their " +"content from peeking eyes (Ctrl+H)" +msgstr "" +"Hvis denne funksjonen er aktivert, blir ufokuserte klistrelapper uleselige " +"for å beskytte innholdet mot nysgjerrige blikk (Ctrl+H)" + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Skjul knappelinjen" + +#: src/Views/PreferencesView.vala:76 +msgid "" +"If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will " +"still function (Ctrl+T)" +msgstr "" +"Hvis denne funksjonen er aktivert, skjules den nederste linjen i " +"klistrelapper. Tastatursnarveier vil fortsatt fungere (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Tillat å starte ved pålogging" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Støtt oss!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Lukk" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "" + +#: src/Windows/StickyNoteWindow.vala:83 src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 src/Windows/PreferenceWindow.vala:52 +#, fuzzy +msgid " - Jorts" +msgstr "Jorts" + +#. ****************************************** +#. HEADERBAR BS +#. ****************************************** +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "Innstillinger for denne klistrelappen" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "" + #~ msgid "Bubblegum" #~ msgstr "Bubblegum" diff --git a/po/pl.po b/po/pl.po index 02df95bc..0d01f55e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,397 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Kliknij, aby edytować tytuł" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Nowa karteczka samoprzylepna" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Usuń karteczkę samoprzylepną" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Wstaw emoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Preferencje dla tej karteczki samoprzylepnej" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Przywróć ustawienia domyślne" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Kliknij, aby użyć domyślnej czcionki tekstu" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Kliknij, aby użyć czcionki z pojedynczym odstępem" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Powiększenie" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Domyślny poziom powiększenia" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Powiększenie" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Jagoda" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Mięta" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Limonka" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banan" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Pomarańczowy" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Truskawka" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Łupek" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Winogrono" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Kakao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Wysłano żądanie do systemu" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Sprawiają, że nieostre notatki stają się nieczytelne" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Jeśli opcja ta jest włączona, nieostre karteczki samoprzylepne stają się nieczytelne, aby chronić ich zawartość przed podglądającymi oczami." - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Ukryj pasek przycisków" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Jeśli jest włączona, ukrywa dolny pasek w notatkach samoprzylepnych. Skróty klawiaturowe będą nadal działać (Ctrl+T)." - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Ustaw autostart" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Ustaw Jorts tak, aby uruchamiał się z komputerem" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Usuń autostart" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Usuń Jorts z autostartu systemu" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Zezwalaj na uruchomienie przy logowaniu" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Możesz poprosić system o automatyczne uruchomienie tej aplikacji" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Wesprzyj nas!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Zamknij" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Zamknij preferencje" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Spodenki" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Kliknij, aby edytować tytuł" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -msgid "Preferences for your Jorts" -msgstr "Preferencje dotyczące spodenek Jorts" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Preferencje" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Wszyscy moi najlepsi przyjaciele" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Mój super dobry sekretny przepis" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Moja lista rzeczy do zrobienia" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Super sekret, o którym nikomu nie należy mówić" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Moja lista zakupów" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Przypadkowe przemyślenia pod prysznicem" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Moje ulubione fanfiki" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Moje ulubione dinozaury" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Mój szatański plan" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Co sprawiło, że się dziś uśmiechnąłem" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Witaj świecie!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Nowy sticky, nowy ja" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Ukryty piracki skarb" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Aby nigdy nie zapomnieć" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Drogi pamiętniku," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Miłego dnia! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Mój harmonogram przyjmowania leków" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Obowiązki domowe" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Oda do mojego kota" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Ulubione zabawki moich psów" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Jak fajne są moje ptaki" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Podejrzani w aferze Last Cookie" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Słowa, które znają moje papugi" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Fajne i zabawne komplementy do rozdania" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Ok, posłuchaj tutaj," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Moja wymarzona drużyna Pokemon" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Moje małe notatki" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Lista prezentów niespodzianek" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Notatki z burzy mózgów" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Do zabrania na imprezę" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Mój niesamowity mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Serwetki w kratkę" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Moje ulubione piosenki do śpiewania" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Kiedy podlewać jaką roślinę" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Top 10 zdrad w anime" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Niesamowita grafika ascii!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Na grilla" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Ulubione zabawki moich psów" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Najlepsze składniki sałatki" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Książki do przeczytania" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Miejsca do odwiedzenia" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Hobby do wypróbowania" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Kto wygrałby z Goku?" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Do sadzenia w ogrodzie" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Posiłki w tym tygodniu" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Wszyscy zamawiają pizzę" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Dzisiejsza samoopieka do zrobienia" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Ważne afirmacje do zapamiętania" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Najfajniejsze aplikacje linuksowe" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Ulubione zabawki moich psów" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Moje najśmieszniejsze żarty" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Idealne śniadanie ma..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Gratulacje! 🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -418,6 +342,86 @@ msgstr "" "Miłego dnia!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Usuń Jorts z autostartu systemu" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Ustaw Jorts tak, aby uruchamiał się z komputerem" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Wysłano żądanie do systemu" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Sprawiają, że nieostre notatki stają się nieczytelne" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Jeśli opcja ta jest włączona, nieostre karteczki samoprzylepne stają się nieczytelne, aby chronić ich zawartość przed podglądającymi oczami." + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Ukryj pasek przycisków" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Jeśli jest włączona, ukrywa dolny pasek w notatkach samoprzylepnych. Skróty klawiaturowe będą nadal działać (Ctrl+T)." + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Ustaw autostart" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Usuń autostart" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Zezwalaj na uruchomienie przy logowaniu" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Możesz poprosić system o automatyczne uruchomienie tej aplikacji" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Wesprzyj nas!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Zamknij" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Zamknij preferencje" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Spodenki" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +msgid "Preferences for your Jorts" +msgstr "Preferencje dotyczące spodenek Jorts" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Preferencje" + #~ msgid "Bubblegum" #~ msgstr "Bubblegum" diff --git a/po/pt.po b/po/pt.po index 7c4f2bd3..934bfb05 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,398 +8,321 @@ msgstr "" "Last-Translator: Rodolfo Sabino \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-02-18 11:43-03\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Clique para editar o título" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Nova nota adesiva" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Excluir nota adesiva" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Insira emoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Preferências para esta nota pegajosa" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Nível de zoom padrão" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Clique para utilizar o tipo de letra de texto predefinido" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monoespaço" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Clique para utilizar um tipo de letra monoespaçado" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Reduzir o zoom" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Nível de zoom padrão" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Aumentar o zoom" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Mirtilo" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Hortelã" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Lima" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banana" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Laranja" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Morango" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Ardósia" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Uva" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Cacau" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Pedido enviado ao sistema" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Tornar ilegíveis as notas não focadas" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Se ativado, as notas autocolantes desfocadas tornam-se ilegíveis para proteger o seu conteúdo de olhares curiosos" - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Ocultar a barra de botões" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Se ativado, oculta a barra inferior das notas adesivas. Os atalhos de teclado continuarão a funcionar (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Definir o arranque automático" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Definir o Jorts para iniciar com o computador" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Remover o arranque automático" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Remover o Jorts do arranque automático do sistema" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Permitir iniciar no login" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Pode solicitar ao sistema que inicie esta aplicação automaticamente" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Apoie-nos!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Fechar" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Fechar preferências" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Calções de banho" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Clique para editar o título" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "Preferências para esta nota pegajosa" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Preferências" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Todos os meus melhores amigos" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Minha receita secreta super boa" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Minha lista de tarefas" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Super segredo para não contar a ninguém" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Minha lista de compras" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Pensamentos aleatórios de chuveiro" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Minhas fanfics favoritas" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Meus dinossauros favoritos" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Meu plano maligno" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "O que me fez sorrir hoje" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Olá, mundo!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Novo adesivo, novo eu" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Localização do tesouro pirata oculto" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Não se esqueça!" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Caro diário," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Tenha um bom dia! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Minha programação de medicamentos" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Tarefas domésticas a serem realizadas hoje" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ode ao meu gato" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Os brinquedos favoritos dos meus cães" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Como meus pássaros são legais" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Suspeitos no caso do Last Cookie" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Palavras que meus papagaios conhecem" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Elogios legais e engraçados para dar" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Ok, ouça aqui," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Minha equipe Pokémon dos sonhos" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Minhas pequenas anotações" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Lista de presentes surpresa" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Notas de brainstorming" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Para levar para a festa" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Minha incrível mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Rabiscos de guardanapo" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "minhas músicas favoritas para cantar junto" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "quando regar qual planta" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "10 melhores traições de anime" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Arte ascii incrível!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Para o churrasco" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Os brinquedos favoritos dos meus cães" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Os melhores ingredientes para a salada" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Livros para ler" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Locais a visitar" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Hobbies para experimentar" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Quem venceria contra Goku" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Para plantar no jardim" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Refeições desta semana" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "O pedido de pizza de todos" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Hoje, cuidados pessoais para fazer" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Afirmações importantes a reter" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "As aplicações linux mais fixes" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Os brinquedos favoritos dos meus cães" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "As minhas piadas mais engraçadas" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "O pequeno-almoço perfeito tem..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Parabéns!🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -419,6 +342,87 @@ msgstr "" "Tenham um ótimo dia!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Remover o Jorts do arranque automático do sistema" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Definir o Jorts para iniciar com o computador" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Pedido enviado ao sistema" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Tornar ilegíveis as notas não focadas" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Se ativado, as notas autocolantes desfocadas tornam-se ilegíveis para proteger o seu conteúdo de olhares curiosos" + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Ocultar a barra de botões" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Se ativado, oculta a barra inferior das notas adesivas. Os atalhos de teclado continuarão a funcionar (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Definir o arranque automático" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Remover o arranque automático" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Permitir iniciar no login" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Pode solicitar ao sistema que inicie esta aplicação automaticamente" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Apoie-nos!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Fechar" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Fechar preferências" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Calções de banho" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "Preferências para esta nota pegajosa" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Preferências" + #~ msgid "Bubblegum" #~ msgstr "Chiclete" diff --git a/po/pt_br.po b/po/pt_br.po index cf323ec7..993a1481 100644 --- a/po/pt_br.po +++ b/po/pt_br.po @@ -8,398 +8,321 @@ msgstr "" "Last-Translator: Rodolfo Sabino \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-02-18 11:43-03\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Clique para editar o título" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Nova nota adesiva" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Excluir nota adesiva" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Insira emoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Preferências para esta nota pegajosa" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Nível de zoom padrão" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Clique para usar a fonte de texto padrão" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monoespaço" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Clique para usar uma fonte monoespaçada" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Reduzir o zoom" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Nível de zoom padrão" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Aumentar o zoom" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Mirtilo" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Hortelã" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Lima" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banana" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Laranja" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Morango" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Ardósia" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Uva" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Cacau" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Solicitação enviada ao sistema" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Tornar ilegíveis as anotações sem foco" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Se ativadas, as notas adesivas sem foco se tornam ilegíveis para proteger seu conteúdo de olhares curiosos" - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Ocultar a barra de botões" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Se ativado, oculta a barra inferior das notas adesivas. Os atalhos de teclado continuarão funcionando (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Definir início automático" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Configurar o Jorts para iniciar com o computador" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Remover a inicialização automática" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Remover o Jorts da inicialização automática do sistema" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Permitir iniciar no login" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Você pode solicitar que o sistema inicie esse aplicativo automaticamente" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Apoie-nos!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Fechar" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Fechar preferências" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Jorts" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Clique para editar o título" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "Preferências para esta nota pegajosa" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Preferências" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Todos os meus melhores amigos" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Minha receita secreta super boa" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Minha lista de tarefas" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Super segredo para não contar a ninguém" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Minha lista de compras" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Pensamentos aleatórios de chuveiro" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Minhas fanfics favoritas" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Meus dinossauros favoritos" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Meu plano maligno" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "O que me fez sorrir hoje" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Olá, mundo!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Novo adesivo, novo eu" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Localização do tesouro pirata oculto" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Não se esqueça!" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Caro diário," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Tenha um bom dia! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Minha programação de medicamentos" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Tarefas domésticas a serem realizadas hoje" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ode ao meu gato" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Os brinquedos favoritos dos meus cães" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Como meus pássaros são legais" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Suspeitos no caso do Last Cookie" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Palavras que meus papagaios conhecem" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Elogios legais e engraçados para dar" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Ok, ouça aqui," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Minha equipe Pokémon dos sonhos" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Minhas pequenas anotações" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Lista de presentes surpresa" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Notas de brainstorming" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Para levar para a festa" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Minha incrível mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Rabiscos de guardanapo" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "minhas músicas favoritas para cantar junto" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "quando regar qual planta" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "10 melhores traições de anime" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Arte ascii incrível!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Para o churrasco" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Os brinquedos favoritos dos meus cães" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Melhores ingredientes para salada" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Livros para ler" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Locais para visitar" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Hobbies para experimentar" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Quem venceria o Goku?" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Para plantar no jardim" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Refeições desta semana" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Pedido de pizza de todos" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Hoje, cuidados pessoais para fazer" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Afirmações importantes a serem lembradas" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Os aplicativos mais legais do Linux" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Os brinquedos favoritos dos meus cães" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Minhas piadas mais engraçadas" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "O café da manhã perfeito tem..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "Parabéns!" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -419,6 +342,87 @@ msgstr "" "Tenha um ótimo dia!\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Remover o Jorts da inicialização automática do sistema" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Configurar o Jorts para iniciar com o computador" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Solicitação enviada ao sistema" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Tornar ilegíveis as anotações sem foco" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Se ativadas, as notas adesivas sem foco se tornam ilegíveis para proteger seu conteúdo de olhares curiosos" + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Ocultar a barra de botões" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Se ativado, oculta a barra inferior das notas adesivas. Os atalhos de teclado continuarão funcionando (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Definir início automático" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Remover a inicialização automática" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Permitir iniciar no login" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Você pode solicitar que o sistema inicie esse aplicativo automaticamente" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Apoie-nos!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Fechar" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Fechar preferências" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Jorts" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "Preferências para esta nota pegajosa" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Preferências" + #~ msgid "Bubblegum" #~ msgstr "Chiclete" diff --git a/po/ru.po b/po/ru.po index 37bb0cf5..d6e3759c 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,396 +7,322 @@ msgstr "" "Last-Translator: Kultyapov Andrey \n" "MIME-Version: 1.0\n" "PO-Revision-Date: 2025-04-06 17:02+0400\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" "X-Generator: Poedit 3.4.2\n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Нажмите, чтобы отредактировать название" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Новый стикер" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Удалить стикер (Ctrl+W)" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Смайлики" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Параметры стикера" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Уровень масштабирования по умолчанию" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Нажмите, чтобы использовать шрифт по умолчанию" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Моноспейс" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Нажмите, чтобы использовать моношрифт" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Уменьшить" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Масштаб по умолчанию" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Увеличить" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Черничный" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Мятный" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Лаймовый" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Банановый" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Апельсиновый" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Клубничный" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Каменно-серый" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Виноградный" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Какао" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Отправлен запрос в систему" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Сделайте несфокусированные заметки нечитаемыми" - -#: src/Views/PreferencesView.vala:54 -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Если эта функция включена, неактивные заметки становятся нечитаемыми, чтобы защитить их содержимое от посторонних глаз (Ctrl+H)" - -#: src/Views/PreferencesView.vala:74 -msgid "Hide buttons" -msgstr "Скрыть панель кнопок" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Если включено, скрывает нижнюю панель в заметках. Сочетания клавиш (Ctrl+T) по-прежнему будут работать" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Установите автозапуск" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Установите Jorts для запуска с компьютера" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Удалить автозапуск" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Удалите Jorts из автозапуска системы" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Разрешить запуск при входе в систему" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Вы можете попросить систему запустить это приложение автоматически" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Поддержите нас!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Закрыть" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Закрыть предпочтения" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Шорты" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Нажмите, чтобы отредактировать название" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -msgid "Preferences for your Jorts" -msgstr "Параметры для этого стикера" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Предпочтения" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Мои лучшие друзья" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Мой супер вкусный секретный рецепт" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Список дел" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Супер секрет, о котором никому нельзя рассказывать" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Список покупок" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Что у меня на душе" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Мой любимый фанфик" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Мои любимые динозавры" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Мой гениальный план" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Что меня сегодня порадовало" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Привет, мир!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Новый стикер" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Спрятанные пиратские сокровища" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Чтобы никогда не забывать" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Дорогой дневник," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Хорошего дня! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Расписание приёма лекарств" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Домашние обязанности" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ода моему коту" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Любимые игрушки моей собаки" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Какие классные у меня птички" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Кто взял последнюю печеньку" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Слова, которые знают мои попугаи" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Список комплиментов" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Слушай сюда," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Моя команда Покемонов" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Моя маленькая заметка" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Список подарков" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Заметки для мозгового штурма" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Что я надену" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Мой микстейп" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Каракули на салфетках" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Мои любимые песни" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Когда поливать какое растение" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Топ-10 предательств в аниме" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Потрясающая графика в формате ascii!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Для барбекю" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Любимые игрушки моей собаки" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Лучшие ингредиенты для салата" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Книги для чтения" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Места для посещения" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Хобби, которые нужно попробовать" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Кто бы выиграл у Гоку" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Посадить в саду" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Питание на этой неделе" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Заказ пиццы для всех" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Сегодняшний уход за собой" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Важные аффирмации для запоминания" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Самые крутые приложения для linux" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Любимые игрушки моей собаки" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Мои самые смешные шутки" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Идеальный завтрак..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥ВАУ, поздравляю!🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -416,6 +342,84 @@ msgstr "" "Хорошего дня!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Удалите Jorts из автозапуска системы" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Установите Jorts для запуска с компьютера" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Отправлен запрос в систему" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Сделайте несфокусированные заметки нечитаемыми" + +#: src/Views/PreferencesView.vala:54 +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Если эта функция включена, неактивные заметки становятся нечитаемыми, чтобы защитить их содержимое от посторонних глаз (Ctrl+H)" + +#: src/Views/PreferencesView.vala:74 +msgid "Hide buttons" +msgstr "Скрыть панель кнопок" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Если включено, скрывает нижнюю панель в заметках. Сочетания клавиш (Ctrl+T) по-прежнему будут работать" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Установите автозапуск" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Удалить автозапуск" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Разрешить запуск при входе в систему" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Вы можете попросить систему запустить это приложение автоматически" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Поддержите нас!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Закрыть" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Закрыть предпочтения" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Шорты" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +msgid "Preferences for your Jorts" +msgstr "Параметры для этого стикера" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Предпочтения" + #~ msgid "Bubblegum" #~ msgstr "Бубльгум" diff --git a/po/sk.po b/po/sk.po index 5b340354..2f322412 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8,398 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Kliknutím upravíte názov" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Nová lepiaca poznámka" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Odstránenie samolepiacej poznámky" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Vložte emotikon" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Predvoľby pre túto samolepiacu poznámku" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Predvolené písmo" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Kliknutím použijete predvolené písmo textu" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Kliknutím na položku použijete jednoliate písmo" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Zväčšenie" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Predvolená úroveň priblíženia" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Priblíženie" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Čučoriedky" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Mäta" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Vápno" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banán" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Oranžová" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Jahoda" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Bridlica" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Hrozno" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Kakao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Odoslanie žiadosti do systému" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Znemožnite čítanie nesústredených poznámok" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Ak je táto funkcia povolená, neostré samolepiace poznámky sa stanú nečitateľnými, aby sa ich obsah ochránil pred očami pozorovateľov." - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Skryť panel tlačidiel" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Ak je táto možnosť zapnutá, skryje spodný pruh v samolepiacich poznámkach. Klávesové skratky budú stále funkčné (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Nastavenie automatického spustenia" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Nastavenie Jorts na spustenie s počítačom" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Odstránenie automatického spustenia" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Odstrániť Jorts z automatického spúšťania systému" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Umožniť spustenie pri prihlásení" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Môžete požiadať systém o automatické spustenie tejto aplikácie" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Podporte nás!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Zatvoriť" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Zatvoriť preferencie" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Šortky" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Kliknutím upravíte názov" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "Predvoľby pre všetky samolepiace poznámky" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Predvoľby" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Všetci moji najlepší priatelia" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Môj super dobrý tajný recept" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Môj zoznam úloh" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Super tajomstvo, ktoré nikomu nepoviete" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Môj zoznam potravín" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Náhodné myšlienky zo sprchy" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Moje obľúbené fanfics" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Moje obľúbené dinosaury" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Môj zlý plán" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Čo ma dnes rozosmialo" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Ahoj, svete!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Nové lepidlo, nové ja" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Skrytý pirátsky poklad" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Nezabudnúť, nikdy" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Drahý denník," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Prajem pekný deň! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Môj rozpis liekov" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Domáce práce" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Óda na moju mačku" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Obľúbené hračky mojich psov" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Aké sú moje vtáky cool" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Podozriví v kauze Last Cookie" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Slová, ktoré moje papagáje poznajú" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Chladné a vtipné komplimenty na rozdávanie" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Dobre, počúvajte," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Môj vysnívaný tím Pokémonov" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Moje malé poznámky" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Zoznam darčekov s prekvapením" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Poznámky k brainstormingu" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Prinesenie na večierok" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Môj úžasný mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Uteráčik scribblys" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Moje obľúbené piesne na spievanie" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Kedy zalievať ktorú rastlinu" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "10 najlepších zrád v anime" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Úžasné ascii umenie!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Na grilovanie" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Obľúbené hračky mojich psov" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Najlepšie prísady do šalátu" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Knihy na čítanie" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Miesta, ktoré môžete navštíviť" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Záľuby, ktoré si môžete vyskúšať" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Kto by vyhral proti Goku" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Na výsadbu v záhrade" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Jedlá tento týždeň" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Objednávka pizze pre každého" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Dnes starostlivosť o seba" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Dôležité afirmácie, ktoré si treba zapamätať" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Najzaujímavejšie aplikácie pre Linux" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Obľúbené hračky mojich psov" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Moje najvtipnejšie vtipy" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Dokonalé raňajky majú..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Gratulujeme!🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -419,6 +342,87 @@ msgstr "" "Prajem vám krásny deň!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Odstrániť Jorts z automatického spúšťania systému" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Nastavenie Jorts na spustenie s počítačom" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Odoslanie žiadosti do systému" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Znemožnite čítanie nesústredených poznámok" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Ak je táto funkcia povolená, neostré samolepiace poznámky sa stanú nečitateľnými, aby sa ich obsah ochránil pred očami pozorovateľov." + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Skryť panel tlačidiel" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Ak je táto možnosť zapnutá, skryje spodný pruh v samolepiacich poznámkach. Klávesové skratky budú stále funkčné (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Nastavenie automatického spustenia" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Odstránenie automatického spustenia" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Umožniť spustenie pri prihlásení" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Môžete požiadať systém o automatické spustenie tejto aplikácie" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Podporte nás!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Zatvoriť" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Zatvoriť preferencie" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Šortky" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "Predvoľby pre všetky samolepiace poznámky" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Predvoľby" + #~ msgid "Bubblegum" #~ msgstr "Žuvačka" diff --git a/po/sv.po b/po/sv.po index c1da7956..0f24b6fd 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,398 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Klicka för att redigera titeln" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Ny klisterlapp" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Ta bort anteckningar" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Infoga emoji" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Inställningar för denna anteckning" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Standardteckensnitt" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Klicka för att använda standardteckensnitt för text" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Klicka för att använda monospaced font" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Zooma ut" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Standard zoomnivå" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Zooma in" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Blåbär" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Mint" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Lime" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Banan" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Orange" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Jordgubbar" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Skiffer" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Druva" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Kakao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Begäran till systemet skickad" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Gör ofokuserade anteckningar oläsliga" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Om funktionen är aktiverad blir ofokuserade klisterlappar oläsliga för att skydda innehållet från nyfikna blickar" - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Dölj knappfältet" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Om den är aktiverad döljs det nedre fältet i anteckningar. Kortkommandon kommer fortfarande att fungera (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Ställ in autostart" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Ställ in Jorts att börja med datorn" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Ta bort autostart" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Ta bort Jorts från systemets autostart" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Tillåt att starta vid inloggning" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Du kan begära att systemet startar denna applikation automatiskt" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Stöd oss!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Nära" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Stäng inställningar" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Jorts" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Klicka för att redigera titeln" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "Inställningar för alla klisterlappar" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Inställningar" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Alla mina allra bästa vänner" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Mitt superbra hemliga recept" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Min att göra-lista" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Superhemlighet att inte berätta för någon" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Min inköpslista" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Slumpmässiga tankar om duschen" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Mina favorit fanfics" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Mina favoritdinosaurier" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Min ondskefulla plan" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Det som fick mig att le idag" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Hej, världen!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Ny klistrig, ny mig" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Dold piratskatt" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Att aldrig glömma, aldrig" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Kära dagbok," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Ha en trevlig dag! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Mitt medicinschema" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Hushållssysslor" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ode till min katt" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Mina hundars favoritleksaker" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Så coola mina fåglar är" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Misstänkta i Last Cookie-härvan" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Ord som mina papegojor kan" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Coola och roliga komplimanger att ge ut" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Okej, lyssna här," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Mitt drömteam för Pokemon" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Mina små anteckningar" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Lista med överraskningsgåvor" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Anteckningar från brainstorming" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Att ta med till festen" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Min fantastiska mixtape" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Servett scribblys" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Mina favoritlåtar att sjunga med i" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "När ska du vattna vilken växt" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Topp 10 förräderier i anime" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Fantastisk ascii-konst!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "För grillning" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Mina hundars favoritleksaker" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Bästa ingredienserna till sallad" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Böcker att läsa" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Platser att besöka" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Hobbyer att prova på" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Vem skulle vinna mot Goku" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Att plantera i trädgården" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Måltider denna vecka" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Allas pizzabeställning" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Idag självvård att göra" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Viktiga affirmationer att komma ihåg" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "De coolaste linux-apparna" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Mina hundars favoritleksaker" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Mina roligaste skämt" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Den perfekta frukosten har..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW Grattis!🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -419,6 +342,87 @@ msgstr "" "Ha en fantastisk dag!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Ta bort Jorts från systemets autostart" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Ställ in Jorts att börja med datorn" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Begäran till systemet skickad" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Gör ofokuserade anteckningar oläsliga" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Om funktionen är aktiverad blir ofokuserade klisterlappar oläsliga för att skydda innehållet från nyfikna blickar" + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Dölj knappfältet" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Om den är aktiverad döljs det nedre fältet i anteckningar. Kortkommandon kommer fortfarande att fungera (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Ställ in autostart" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Ta bort autostart" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Tillåt att starta vid inloggning" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Du kan begära att systemet startar denna applikation automatiskt" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Stöd oss!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Nära" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Stäng inställningar" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Jorts" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "Inställningar för alla klisterlappar" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Inställningar" + #~ msgid "Bubblegum" #~ msgstr "Bubblegum" diff --git a/po/tr.po b/po/tr.po index 46162541..a8d2fcd0 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,397 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Başlığı düzenlemek için tıklayın" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Yeni yapışkan not" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Yapışkan notu sil" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Emoji ekle" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Bu yapışkan not için tercihler" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Varsayılana Sıfırla" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Varsayılan metin yazı tipini kullanmak için tıklayın" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Tek aralıklı yazı tipi kullanmak için tıklayın" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Uzaklaştır" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Varsayılan yakınlaştırma düzeyi" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Yakınlaştır" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Yaban Mersini" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "Nane" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Kireç" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Muz" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Turuncu" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Çilekli" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Kayrak" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Üzüm" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Kakao" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Sisteme talep gönderildi" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Odaklanmamış notları okunamaz hale getirin" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Etkinleştirilirse, odaklanılmamış yapışkan notlar, içeriklerini gözetleyen gözlerden korumak için okunamaz hale gelir" - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Düğme çubuğunu gizle" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Etkinleştirilirse, yapışkan notlarda alt çubuğu gizler. Klavye kısayolları çalışmaya devam eder (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Otomatik başlatmayı ayarla" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Jorts'u bilgisayarla başlayacak şekilde ayarlayın" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Otomatik başlatmayı kaldır" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Jorts'u sistem otomatik başlatmadan kaldırma" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Girişte başlamasına izin ver" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Sistemden bu uygulamayı otomatik olarak başlatmasını isteyebilirsiniz" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Bizi destekleyin!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Kapat" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Tercihleri kapat" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Şort" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Başlığı düzenlemek için tıklayın" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -msgid "Preferences for your Jorts" -msgstr "Şortunuz için tercihleriniz" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Tercihler" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "En iyi arkadaşlarımın hepsi" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Benim süper iyi gizli tarifim" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Yapılacaklar listem" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Kimseye söylememeniz gereken süper sır" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Alışveriş listem" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Rastgele duş düşünceleri" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "En sevdiğim fanfikler" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "En sevdiğim dinozorlar" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Benim şeytani planım" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Bugün beni gülümseten şey" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Merhaba dünya!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Yeni yapışkan, yeni ben" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Gizli korsan hazinesi" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Unutmamak için, asla" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Sevgili günlük," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "İyi günler dilerim! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "İlaç programım" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Ev işleri" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Kedime Övgü" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Köpeklerimin en sevdiği oyuncaklar" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Kuşlarım ne kadar havalı" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Son Kurabiye olayının şüphelileri" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Papağanlarımın bildiği kelimeler" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Verilecek havalı ve komik iltifatlar" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Tamam, dinle," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Hayalimdeki Pokemon takımı" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Benim küçük notlarım" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Sürpriz hediye listesi" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Beyin fırtınası notları" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Partiye getirmek için" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Muhteşem mixtape'im" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Peçete karalamaları" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Birlikte söylemek için en sevdiğim şarkılar" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Hangi bitki ne zaman sulanmalı" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "En iyi 10 anime ihaneti" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Muhteşem ascii sanatı!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Barbekü için" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Köpeklerimin en sevdiği oyuncaklar" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Salata için en iyi malzemeler" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Okunacak kitaplar" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Ziyaret edilecek yerler" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Denenecek hobiler" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Goku'ya karşı kim kazanırdı?" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Bahçeye dikmek için" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Bu haftanın yemekleri" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Herkesin pizza siparişi" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Bugün yapılacak kişisel bakım" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Hatırlanması gereken önemli ifadeler" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "En havalı linux uygulamaları" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Köpeklerimin en sevdiği oyuncaklar" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "En komik şakalarım" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Mükemmel bir kahvaltı..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "Tebrikler!" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -418,6 +342,86 @@ msgstr "" "İyi günler!🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Jorts'u sistem otomatik başlatmadan kaldırma" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Jorts'u bilgisayarla başlayacak şekilde ayarlayın" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Sisteme talep gönderildi" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Odaklanmamış notları okunamaz hale getirin" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Etkinleştirilirse, odaklanılmamış yapışkan notlar, içeriklerini gözetleyen gözlerden korumak için okunamaz hale gelir" + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Düğme çubuğunu gizle" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Etkinleştirilirse, yapışkan notlarda alt çubuğu gizler. Klavye kısayolları çalışmaya devam eder (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Otomatik başlatmayı ayarla" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Otomatik başlatmayı kaldır" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Girişte başlamasına izin ver" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Sistemden bu uygulamayı otomatik olarak başlatmasını isteyebilirsiniz" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Bizi destekleyin!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Kapat" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Tercihleri kapat" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Şort" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +msgid "Preferences for your Jorts" +msgstr "Şortunuz için tercihleriniz" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Tercihler" + #~ msgid "Bubblegum" #~ msgstr "Balonlu Sakız" diff --git a/po/uk.po b/po/uk.po index cdd73d2a..b44df081 100644 --- a/po/uk.po +++ b/po/uk.po @@ -8,398 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "Натисніть, щоб змінити назву" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "Нова наліпка" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "Видалити наліпку" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "Вставте емодзі" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "Уподобання для цієї наліпки" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "Скидання до налаштувань за замовчуванням" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "Натисніть, щоб використовувати шрифт за замовчуванням" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Монопростір" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "Натисніть, щоб використовувати моноширинний шрифт" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "Зменшити" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "Рівень масштабування за замовчуванням" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "Збільшити" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "Чорниця." -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "М'ята" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "Вапно." -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "Банан." -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "Помаранчевий" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "Полуничка." -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "Сланці" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "Виноград." -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "Какао" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "Запит до системи відправлено" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "Зробіть розфокусовані нотатки нечитабельними" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "Якщо увімкнено, розфокусовані стікери стають нечитабельними, щоб захистити їхній вміст від сторонніх очей" - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "Приховати панель кнопок" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "Якщо увімкнено, приховує нижній рядок у нотатках. Комбінації клавіш працюватимуть як і раніше (Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "Встановити автозапуск" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "Налаштуйте Jorts на запуск з комп'ютера" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "Видалити автозапуск" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "Видалити Jorts з автозапуску системи" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "Дозволити запуск при вході в систему" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "Ви можете попросити систему запустити цю програму автоматично" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "Підтримайте нас!" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "Закрити" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "Близькі уподобання" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr " - Джинси" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "Натисніть, щоб змінити назву" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "Налаштування для всіх стікерів" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "Уподобання" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "Всі мої найкращі друзі" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "Мій супер смачний секретний рецепт" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "Мій список справ" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "Суперсекрет, який нікому не можна розголошувати" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "Мій список продуктів" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "Випадкові думки в душі" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "Мої улюблені фанфіки" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "Мої улюблені динозаври" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "Мій злий план" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "Що змусило мене посміхнутися сьогодні" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "Привіт, світе!" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "Новий липкий, новий я" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "Захований піратський скарб" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "Щоб ніколи не забути" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "Дорогий щоденнику," -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "Гарного вам дня! :)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "Мій графік прийому ліків" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "Домашні справи" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "Ода моєму коту" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "Улюблені іграшки моїх собак" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "Які круті мої пташки" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "Підозрювані у справі \"Останнього печива" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "Слова, які знають мої папуги" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "Прикольні та смішні компліменти для роздачі" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "Гаразд, слухай сюди," -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "Команда покемонів моєї мрії" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "Мої маленькі нотатки." -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "Список подарунків-сюрпризів" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "Нотатки для мозкового штурму" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "Принести на вечірку" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "Мій дивовижний мікстейп" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "Каракулі на серветках" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "Мої улюблені пісні для підспівування" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "Коли поливати яку рослину" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "Топ-10 аніме-зрад" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "Дивовижне мистецтво сходження!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "Для барбекю" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "Улюблені іграшки моїх собак" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "Найкращі інгредієнти для салату" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "Книги для читання" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "Місця, які варто відвідати" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "Захоплення, які варто спробувати" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "Хто переможе Гоку" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "Для посадки в саду" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "Харчування на цьому тижні" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "Замовлення піци для всіх" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "Сьогодні догляд за собою" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "Важливі афірмації, які варто запам'ятати" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "Найкрутіші програми для linux" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "Улюблені іграшки моїх собак" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "Мої найсмішніші жарти" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "Ідеальний сніданок має..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "Ого, вітаю!" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -419,6 +342,87 @@ msgstr "" "Гарного дня! 🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "Видалити Jorts з автозапуску системи" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "Налаштуйте Jorts на запуск з комп'ютера" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "Запит до системи відправлено" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "Зробіть розфокусовані нотатки нечитабельними" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "Якщо увімкнено, розфокусовані стікери стають нечитабельними, щоб захистити їхній вміст від сторонніх очей" + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "Приховати панель кнопок" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "Якщо увімкнено, приховує нижній рядок у нотатках. Комбінації клавіш працюватимуть як і раніше (Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "Встановити автозапуск" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "Видалити автозапуск" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "Дозволити запуск при вході в систему" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "Ви можете попросити систему запустити цю програму автоматично" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "Підтримайте нас!" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "Закрити" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "Близькі уподобання" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr " - Джинси" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "Налаштування для всіх стікерів" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "Уподобання" + #~ msgid "Bubblegum" #~ msgstr "Жуйка" diff --git a/po/zh.po b/po/zh.po index 9deca2f1..43b8e64f 100644 --- a/po/zh.po +++ b/po/zh.po @@ -8,398 +8,321 @@ msgstr "" "Last-Translator: FULL NAME \n" "MIME-Version: 1.0\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"POT-Creation-Date: 2025-09-21 19:20+0200\n" +"POT-Creation-Date: 2025-09-29 21:23+0200\n" "Project-Id-Version: io.github.ellie_commons.jorts\n" "Report-Msgid-Bugs-To: \n" -#: src/Views/NoteView.vala:36 +#: src/Widgets/EditableLabel.vala:43 +msgid "Click to edit the title" +msgstr "点击编辑标题" + +#: src/Widgets/ActionBar.vala:29 msgid "New sticky note" msgstr "新便笺" -#: src/Views/NoteView.vala:48 +#: src/Widgets/ActionBar.vala:41 msgid "Delete sticky note" msgstr "删除便笺" -#: src/Views/NoteView.vala:63 +#: src/Widgets/ActionBar.vala:56 msgid "Insert emoji" msgstr "插入表情符号" -#: src/Views/NoteView.vala:79 +#: src/Widgets/ActionBar.vala:68 msgid "Preferences for this sticky note" msgstr "该便笺的首选项" -#: src/Widgets/MonospaceBox.vala:31 +#. /TRANSLATORS: Both Default and Monospace are togglable buttons, synchronized with each other +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:33 #, fuzzy msgid "Default" msgstr "重置为默认值" -#: src/Widgets/MonospaceBox.vala:32 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:34 msgid "Click to use default text font" msgstr "点击使用默认文本字体" -#: src/Widgets/MonospaceBox.vala:37 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:39 msgid "Monospace" msgstr "Monospace" -#: src/Widgets/MonospaceBox.vala:38 +#: src/Widgets/PopoverWidgets/MonospaceBox.vala:40 msgid "Click to use monospaced font" msgstr "点击使用单倍行距字体" #. TRANSLATORS: %d is replaced by a number. Ex: 100, to display 100% #. It must stay as "%d" in the translation so the app can replace it with the current zoom level. -#: src/Widgets/ZoomBox.vala:20 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:24 #, c-format msgid "%d%%" msgstr "%d%%" -#: src/Widgets/ZoomBox.vala:38 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:42 msgid "Zoom out" msgstr "放大" -#: src/Widgets/ZoomBox.vala:45 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:49 msgid "Default zoom level" msgstr "默认缩放级别" -#: src/Widgets/ZoomBox.vala:52 +#: src/Widgets/PopoverWidgets/ZoomBox.vala:56 msgid "Zoom in" msgstr "放大" -#: src/Objects/Themes.vala:58 -#: src/Objects/Themes.vala:68 +#. /TRANSLATORS: These are the names of the elementary OS colours +#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:69 msgid "Blueberry" msgstr "蓝莓" -#: src/Objects/Themes.vala:59 +#: src/Objects/Themes.vala:60 msgid "Mint" msgstr "薄荷糖" -#: src/Objects/Themes.vala:60 +#: src/Objects/Themes.vala:61 msgid "Lime" msgstr "石灰" -#: src/Objects/Themes.vala:61 +#: src/Objects/Themes.vala:62 msgid "Banana" msgstr "香蕉" -#: src/Objects/Themes.vala:62 +#: src/Objects/Themes.vala:63 msgid "Orange" msgstr "橙色" -#: src/Objects/Themes.vala:63 +#: src/Objects/Themes.vala:64 msgid "Strawberry" msgstr "草莓" -#: src/Objects/Themes.vala:64 -#: src/Objects/Themes.vala:67 +#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:68 msgid "Slate" msgstr "石板" -#: src/Objects/Themes.vala:65 +#: src/Objects/Themes.vala:66 msgid "Grape" msgstr "葡萄" -#: src/Objects/Themes.vala:66 +#: src/Objects/Themes.vala:67 msgid "Cocoa" msgstr "可可" -#: src/Views/PreferencesView.vala:25 -msgid "Request to system sent" -msgstr "向系统发送请求" - -#: src/Views/PreferencesView.vala:52 -msgid "Make unfocused notes unreadable" -msgstr "让没有重点的笔记无法阅读" - -#: src/Views/PreferencesView.vala:54 -#, fuzzy -msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" -msgstr "如果启用,无重点的便笺将变得不可读,以保护其内容不被偷窥" - -#: src/Views/PreferencesView.vala:74 -#, fuzzy -msgid "Hide buttons" -msgstr "隐藏按钮栏" - -#: src/Views/PreferencesView.vala:76 -msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" -msgstr "如果启用,则隐藏便笺中的底部栏。键盘快捷键仍可使用(Ctrl+T)" - -#. /TRANSLATORS: Button to autostart the application -#: src/Views/PreferencesView.vala:99 -msgid "Set autostart" -msgstr "设置自动启动" - -#: src/Views/PreferencesView.vala:109 -msgid "Set Jorts to start with the computer" -msgstr "设置 Jorts 从计算机启动" - -#. /TRANSLATORS: Button to remove the autostart for the application -#: src/Views/PreferencesView.vala:119 -msgid "Remove autostart" -msgstr "删除自动启动" - -#: src/Views/PreferencesView.vala:129 -msgid "Remove Jorts from system autostart" -msgstr "从系统自动启动中移除 Jorts" - -#: src/Views/PreferencesView.vala:142 -msgid "Allow to start at login" -msgstr "允许在登录时启动" - -#: src/Views/PreferencesView.vala:144 -msgid "You can request the system to start this application automatically" -msgstr "您可以要求系统自动启动该应用程序" - -#: src/Views/PreferencesView.vala:165 -msgid "Support us!" -msgstr "支持我们" - -#: src/Views/PreferencesView.vala:177 -msgid "Close" -msgstr "关闭" - -#: src/Views/PreferencesView.vala:180 -msgid "Close preferences" -msgstr "关闭首选项" - -#: src/Windows/StickyNoteWindow.vala:97 -#: src/Windows/StickyNoteWindow.vala:212 -#: src/Windows/StickyNoteWindow.vala:287 -#: src/Windows/PreferenceWindow.vala:52 -msgid " - Jorts" -msgstr "- 短裤" - -#: src/Windows/StickyNoteWindow.vala:117 -msgid "Click to edit the title" -msgstr "点击编辑标题" - -#. ****************************************** -#. HEADERBAR BS -#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings -#: src/Windows/PreferenceWindow.vala:50 -#, fuzzy -msgid "Preferences for your Jorts" -msgstr "所有便笺的首选项" - -#: src/Windows/PreferenceWindow.vala:52 -msgid "Preferences" -msgstr "首选项" - -#: src/Services/Utils.vala:90 +#: src/Utils/Random.vala:43 msgid "All my very best friends" msgstr "我所有最好的朋友" -#: src/Services/Utils.vala:91 +#: src/Utils/Random.vala:44 msgid "My super good secret recipe" msgstr "我的超级美味秘方" -#: src/Services/Utils.vala:92 +#: src/Utils/Random.vala:45 msgid "My todo list" msgstr "我的待办事项清单" -#: src/Services/Utils.vala:93 +#: src/Utils/Random.vala:46 msgid "Super secret to not tell anyone" msgstr "不告诉任何人的超级秘密" -#: src/Services/Utils.vala:94 +#: src/Utils/Random.vala:47 msgid "My grocery list" msgstr "我的杂货清单" -#: src/Services/Utils.vala:95 +#: src/Utils/Random.vala:48 msgid "Random shower thoughts" msgstr "淋浴时的随想" -#: src/Services/Utils.vala:96 +#: src/Utils/Random.vala:49 msgid "My fav fanfics" msgstr "我最喜欢的同人小说" -#: src/Services/Utils.vala:97 +#: src/Utils/Random.vala:50 msgid "My fav dinosaurs" msgstr "我最喜欢的恐龙" -#: src/Services/Utils.vala:98 +#: src/Utils/Random.vala:51 msgid "My evil mastermind plan" msgstr "我的邪恶主谋计划" -#: src/Services/Utils.vala:99 +#: src/Utils/Random.vala:52 msgid "What made me smile today" msgstr "今天让我微笑的事情" -#: src/Services/Utils.vala:100 +#: src/Utils/Random.vala:53 msgid "Hello world!" msgstr "世界你好" -#: src/Services/Utils.vala:101 +#: src/Utils/Random.vala:54 msgid "New sticky, new me" msgstr "新的粘性,新的我" -#: src/Services/Utils.vala:102 +#: src/Utils/Random.vala:55 msgid "Hidden pirate treasure" msgstr "隐藏的海盗宝藏" -#: src/Services/Utils.vala:103 +#: src/Utils/Random.vala:56 msgid "To not forget, ever" msgstr "永远不要忘记" -#: src/Services/Utils.vala:104 +#: src/Utils/Random.vala:57 msgid "Dear Diary," msgstr "亲爱的日记" -#: src/Services/Utils.vala:105 +#: src/Utils/Random.vala:58 msgid "Have a nice day! :)" msgstr "祝您愉快:)" -#: src/Services/Utils.vala:106 +#: src/Utils/Random.vala:59 msgid "My meds schedule" msgstr "我的服药时间表" -#: src/Services/Utils.vala:107 +#: src/Utils/Random.vala:60 msgid "Household chores" msgstr "家务劳动" -#: src/Services/Utils.vala:108 +#: src/Utils/Random.vala:61 msgid "Ode to my cat" msgstr "我的猫颂" -#: src/Services/Utils.vala:109 +#: src/Utils/Random.vala:62 msgid "My dogs favourite toys" msgstr "我的狗狗最喜欢的玩具" -#: src/Services/Utils.vala:110 +#: src/Utils/Random.vala:63 msgid "How cool my birds are" msgstr "我的小鸟多酷啊" -#: src/Services/Utils.vala:111 +#: src/Utils/Random.vala:64 msgid "Suspects in the Last Cookie affair" msgstr "最后一块饼干事件的嫌疑人" -#: src/Services/Utils.vala:112 +#: src/Utils/Random.vala:65 msgid "Words my parrots know" msgstr "我的鹦鹉会说的话" -#: src/Services/Utils.vala:113 +#: src/Utils/Random.vala:66 msgid "Cool and funny compliments to give out" msgstr "酷炫有趣的赞美词" -#: src/Services/Utils.vala:114 +#: src/Utils/Random.vala:67 msgid "Ok, listen here," msgstr "好吧,听我说、" -#: src/Services/Utils.vala:115 +#: src/Utils/Random.vala:68 msgid "My dream Pokemon team" msgstr "我梦想中的宠物小精灵团队" -#: src/Services/Utils.vala:116 +#: src/Utils/Random.vala:69 msgid "My little notes" msgstr "我的小纸条" -#: src/Services/Utils.vala:117 +#: src/Utils/Random.vala:70 msgid "Surprise gift list" msgstr "惊喜礼物清单" -#: src/Services/Utils.vala:118 +#: src/Utils/Random.vala:71 msgid "Brainstorming notes" msgstr "集思广益说明" -#: src/Services/Utils.vala:119 +#: src/Utils/Random.vala:72 msgid "To bring to the party" msgstr "带到派对上" -#: src/Services/Utils.vala:120 +#: src/Utils/Random.vala:73 msgid "My amazing mixtape" msgstr "我的神奇混音带" -#: src/Services/Utils.vala:121 +#: src/Utils/Random.vala:74 msgid "Napkin scribblys" msgstr "餐巾纸涂鸦" -#: src/Services/Utils.vala:122 +#: src/Utils/Random.vala:75 msgid "My fav songs to sing along" msgstr "我最喜欢唱的歌" -#: src/Services/Utils.vala:123 +#: src/Utils/Random.vala:76 msgid "When to water which plant" msgstr "何时给哪种植物浇水" -#: src/Services/Utils.vala:124 +#: src/Utils/Random.vala:77 msgid "Top 10 anime betrayals" msgstr "十大动漫背叛事件" -#: src/Services/Utils.vala:125 +#: src/Utils/Random.vala:78 msgid "Amazing ascii art!" msgstr "令人惊叹的 ascii 艺术!" -#: src/Services/Utils.vala:126 +#: src/Utils/Random.vala:79 msgid "For the barbecue" msgstr "烧烤" -#: src/Services/Utils.vala:127 +#: src/Utils/Random.vala:80 #, fuzzy msgid "My favourite bands" msgstr "我的狗狗最喜欢的玩具" -#: src/Services/Utils.vala:128 +#: src/Utils/Random.vala:81 msgid "Best ingredients for salad" msgstr "沙拉的最佳配料" -#: src/Services/Utils.vala:129 +#: src/Utils/Random.vala:82 msgid "Books to read" msgstr "阅读书籍" -#: src/Services/Utils.vala:130 +#: src/Utils/Random.vala:83 msgid "Places to visit" msgstr "旅游景点" -#: src/Services/Utils.vala:131 +#: src/Utils/Random.vala:84 msgid "Hobbies to try out" msgstr "可尝试的爱好" -#: src/Services/Utils.vala:132 +#: src/Utils/Random.vala:85 msgid "Who would win against Goku" msgstr "谁能战胜悟空" -#: src/Services/Utils.vala:133 +#: src/Utils/Random.vala:86 msgid "To plant in the garden" msgstr "种植在花园里" -#: src/Services/Utils.vala:134 +#: src/Utils/Random.vala:87 msgid "Meals this week" msgstr "本周膳食" -#: src/Services/Utils.vala:135 +#: src/Utils/Random.vala:88 msgid "Everyone's pizza order" msgstr "每个人的披萨订单" -#: src/Services/Utils.vala:136 +#: src/Utils/Random.vala:89 msgid "Today selfcare to do" msgstr "今天要做的自我保健" -#: src/Services/Utils.vala:137 +#: src/Utils/Random.vala:90 msgid "Important affirmations to remember" msgstr "需要牢记的重要申明" -#: src/Services/Utils.vala:138 +#: src/Utils/Random.vala:91 msgid "The coolest linux apps" msgstr "最酷的 Linux 应用程序" -#: src/Services/Utils.vala:139 +#: src/Utils/Random.vala:92 #, fuzzy msgid "My favourite dishes" msgstr "我的狗狗最喜欢的玩具" -#: src/Services/Utils.vala:140 +#: src/Utils/Random.vala:93 msgid "My funniest jokes" msgstr "我最有趣的笑话" -#: src/Services/Utils.vala:141 +#: src/Utils/Random.vala:94 msgid "The perfect breakfast has..." msgstr "完美的早餐有..." -#: src/Services/Utils.vala:176 +#: src/Utils/Random.vala:129 msgid "🔥WOW Congratulations!🔥" msgstr "🔥WOW 恭喜! 🔥" -#: src/Services/Utils.vala:178 +#: src/Utils/Random.vala:131 msgid "" "You have found the Golden Sticky Note!\n" "\n" @@ -419,6 +342,87 @@ msgstr "" "祝您愉快! 🎇\n" "" +#: src/Utils/Libportal.vala:16 +#: src/Views/PreferencesView.vala:129 +msgid "Remove Jorts from system autostart" +msgstr "从系统自动启动中移除 Jorts" + +#: src/Utils/Libportal.vala:29 +#: src/Views/PreferencesView.vala:109 +msgid "Set Jorts to start with the computer" +msgstr "设置 Jorts 从计算机启动" + +#: src/Views/PreferencesView.vala:25 +msgid "Request to system sent" +msgstr "向系统发送请求" + +#: src/Views/PreferencesView.vala:52 +msgid "Make unfocused notes unreadable" +msgstr "让没有重点的笔记无法阅读" + +#: src/Views/PreferencesView.vala:54 +#, fuzzy +msgid "If enabled, unfocused sticky notes become unreadable to protect their content from peeking eyes (Ctrl+H)" +msgstr "如果启用,无重点的便笺将变得不可读,以保护其内容不被偷窥" + +#: src/Views/PreferencesView.vala:74 +#, fuzzy +msgid "Hide buttons" +msgstr "隐藏按钮栏" + +#: src/Views/PreferencesView.vala:76 +msgid "If enabled, hides the bottom bar in sticky notes. Keyboard shortcuts will still function (Ctrl+T)" +msgstr "如果启用,则隐藏便笺中的底部栏。键盘快捷键仍可使用(Ctrl+T)" + +#. /TRANSLATORS: Button to autostart the application +#: src/Views/PreferencesView.vala:99 +msgid "Set autostart" +msgstr "设置自动启动" + +#. /TRANSLATORS: Button to remove the autostart for the application +#: src/Views/PreferencesView.vala:119 +msgid "Remove autostart" +msgstr "删除自动启动" + +#: src/Views/PreferencesView.vala:142 +msgid "Allow to start at login" +msgstr "允许在登录时启动" + +#: src/Views/PreferencesView.vala:144 +msgid "You can request the system to start this application automatically" +msgstr "您可以要求系统自动启动该应用程序" + +#: src/Views/PreferencesView.vala:165 +msgid "Support us!" +msgstr "支持我们" + +#: src/Views/PreferencesView.vala:177 +msgid "Close" +msgstr "关闭" + +#: src/Views/PreferencesView.vala:180 +msgid "Close preferences" +msgstr "关闭首选项" + +#: src/Windows/StickyNoteWindow.vala:83 +#: src/Windows/StickyNoteWindow.vala:182 +#: src/Windows/StickyNoteWindow.vala:263 +#: src/Windows/PreferenceWindow.vala:52 +msgid " - Jorts" +msgstr "- 短裤" + +#. ****************************************** +#. HEADERBAR BS +#. / TRANSLATORS: Feel free to improvise. The goal is a playful wording to convey the idea of app-wide settings +#: src/Windows/PreferenceWindow.vala:50 +#, fuzzy +msgid "Preferences for your Jorts" +msgstr "所有便笺的首选项" + +#: src/Windows/PreferenceWindow.vala:52 +msgid "Preferences" +msgstr "首选项" + #~ msgid "Bubblegum" #~ msgstr "泡泡糖"