Skip to content

Commit 6467f9f

Browse files
committed
Update translate
1 parent 728ec11 commit 6467f9f

19 files changed

+3787
-3639
lines changed

core/Layouts/HeaderItem.vala

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public class Layouts.HeaderItem : Adw.Bin {
127127
listbox.margin_start = 3;
128128
listbox.margin_end = 3;
129129
} else {
130-
listbox.css_classes = { };
130+
listbox.css_classes = { };
131131
listbox.margin_top = 0;
132132
listbox.margin_bottom = 0;
133133
listbox.margin_start = 0;

core/Services/Todoist.vala

+1-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ public class Services.Todoist : GLib.Object {
5656

5757
var network_monitor = GLib.NetworkMonitor.get_default ();
5858
network_monitor.network_changed.connect (() => {
59-
if (GLib.NetworkMonitor.get_default ().network_available &&
60-
is_logged_in () &&
59+
if (GLib.NetworkMonitor.get_default ().network_available && is_logged_in () &&
6160
Services.Settings.get_default ().settings.get_boolean ("todoist-sync-server")) {
6261
sync_async ();
6362
}

core/Util/Util.vala

+3-3
Original file line numberDiff line numberDiff line change
@@ -899,17 +899,17 @@ public class Util : GLib.Object {
899899
public Gtk.Image get_priority_icon (int priority) {
900900
if (priority == Constants.PRIORITY_1) {
901901
return new Gtk.Image.from_icon_name ("flag-outline-thick-symbolic") {
902-
css_classes = { "priority-1-icon" },
902+
css_classes = { "priority-1-icon" },
903903
pixel_size = 19
904904
};
905905
} else if (priority == Constants.PRIORITY_2) {
906906
return new Gtk.Image.from_icon_name ("flag-outline-thick-symbolic") {
907-
css_classes = { "priority-1-icon" },
907+
css_classes = { "priority-1-icon" },
908908
pixel_size = 19
909909
};
910910
} else if (priority == Constants.PRIORITY_3) {
911911
return new Gtk.Image.from_icon_name ("flag-outline-thick-symbolic") {
912-
css_classes = { "priority-1-icon" },
912+
css_classes = { "priority-1-icon" },
913913
pixel_size = 19
914914
};
915915
} else if (priority == Constants.PRIORITY_4) {

core/Widgets/PinButton.vala

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@ public class Widgets.PinButton : Gtk.Button {
6262
}
6363

6464
public void reset () {
65-
pinned_image.css_classes = { };
65+
pinned_image.css_classes = { };
6666
}
6767
}

core/Widgets/PriorityButton.vala

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public class Widgets.PriorityButton : Adw.Bin {
8383
} else if (item.priority == Constants.PRIORITY_3) {
8484
priority_image.css_classes = { "priority-3-icon" };
8585
} else {
86-
priority_image.css_classes = { };
86+
priority_image.css_classes = { };
8787
}
8888
}
8989

@@ -95,7 +95,7 @@ public class Widgets.PriorityButton : Adw.Bin {
9595
} else if (priority == Constants.PRIORITY_3) {
9696
priority_image.css_classes = { "priority-3-icon" };
9797
} else {
98-
priority_image.css_classes = { };
98+
priority_image.css_classes = { };
9999
}
100100
}
101101

data/io.github.alainm23.planify.appdata.xml.in.in

+12
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,18 @@
6363
<url type="donation">https://www.patreon.com/alainm23</url>
6464
<launchable type="desktop-id">@appid@.desktop</launchable>
6565
<releases>
66+
<release version="4.5.6" date="2024-03-20">
67+
<description translatable="no">
68+
<ul>
69+
<li>A URL validation was added when syncing with Nextcloud.</li>
70+
<li>The Pinboard view can now be selected as the homepage.</li>
71+
<li>Fixed bug where the completion icon was not displayed.</li>
72+
<li>Fixed bug that did not update tasks in the Pinboard view.</li>
73+
<li>Fixed bug that displayed the incorrect date format in the Scheduled view.</li>
74+
</ul>
75+
</description>
76+
</release>
77+
6678
<release version="4.5.4" date="2024-03-18">
6779
<description translatable="no">
6880
<ul>

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'io.github.alainm23.planify',
33
'vala', 'c',
4-
version: '4.5.4'
4+
version: '4.5.6'
55
)
66

77
gnome = import('gnome')

po/POTFILES

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ core/Services/Todoist.vala
1313

1414
core/Layouts/HeaderItem.vala
1515

16-
core/Widgets/DynamicIcon.vala
1716
core/Widgets/LoadingButton.vala
1817
core/Widgets/Entries.vala
1918
core/Widgets/IconColorProject.vala

0 commit comments

Comments
 (0)