Skip to content

Commit dc4e56f

Browse files
authored
Merge branch 'master' into weblate-planner-io-github-alainm23-planify
2 parents 836c528 + 1a486fb commit dc4e56f

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

core/Services/CalDAV/CalDAVClient.vala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ public class Services.CalDAV.CalDAVClient : Services.CalDAV.WebDAVClient {
574574
}
575575
576576
public async HttpResponse add_item (Objects.Item item, bool update = false) {
577-
var url = update ? item.ical_url : "%s/%s".printf (item.project.calendar_url, "%s.ics".printf (item.id));
577+
var url = update ? item.ical_url : GLib.Path.build_path ("/", item.project.calendar_url, "%s.ics".printf (item.id));
578578
var body = item.to_vtodo ();
579579
580580
var expected = update ? new Soup.Status[]{ Soup.Status.NO_CONTENT }
@@ -614,7 +614,7 @@ public class Services.CalDAV.CalDAVClient : Services.CalDAV.WebDAVClient {
614614
615615
616616
public async HttpResponse move_item (Objects.Item item, Objects.Project destination_project) {
617-
var destination = "%s/%s".printf (destination_project.calendar_url, "%s.ics".printf (item.id));
617+
var destination = GLib.Path.build_path ("/", destination_project.calendar_url, "%s.ics".printf (item.id));
618618
619619
var headers = new HashTable<string,string> (str_hash, str_equal);
620620
headers.insert ("Destination", destination);
@@ -683,4 +683,4 @@ public class Services.CalDAV.CalDAVClient : Services.CalDAV.WebDAVClient {
683683
684684
return resourcetype.get_elements_by_tag_name ("deleted-calendar").length > 0;
685685
}
686-
}
686+
}

data/translations_metrics.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@
260260
"it": {
261261
"language": "Italian",
262262
"total_strings": 693,
263-
"translated_strings": 79,
264-
"translated_percent": 11.3
263+
"translated_strings": 133,
264+
"translated_percent": 19.1
265265
},
266266
"ja": {
267267
"language": "Japanese",

po/extra/it.po

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ msgstr ""
88
"Project-Id-Version: extra\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2025-10-08 17:08-0500\n"
11-
"PO-Revision-Date: 2025-11-08 23:51+0000\n"
11+
"PO-Revision-Date: 2025-11-10 21:51+0000\n"
1212
"Last-Translator: Giorgio <[email protected]>\n"
13-
"Language-Team: Italian <https://hosted.weblate.org/projects/planner/"
14-
"planify-extra/it/>\n"
13+
"Language-Team: Italian <https://hosted.weblate.org/projects/planner/planify-"
14+
"extra/it/>\n"
1515
"Language: it\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -104,14 +104,15 @@ msgstr ""
104104
#: data/io.github.alainm23.planify.appdata.xml.in.in:32
105105
msgid "Cross-platform synchronization to access from any device"
106106
msgstr ""
107+
"Sincronizzazione multipiattaforma per accedere da qualsiasi dispositivo"
107108

108109
#: data/io.github.alainm23.planify.appdata.xml.in.in:34
109110
msgid "* Planify is not created by, affiliated with, or supported by Doist"
110-
msgstr ""
111+
msgstr "* Planify non è creato, affiliato o supportato da Doist"
111112

112113
#: data/io.github.alainm23.planify.desktop.in.in:3
113114
msgid "Planify"
114-
msgstr ""
115+
msgstr "Planify"
115116

116117
#: data/io.github.alainm23.planify.desktop.in.in:14
117118
msgid "development;task;tasks;project;todo;reminder;reminders;event;events;calendar;todoist;"

po/it.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgstr ""
33
"Project-Id-Version: io.github.alainm23.planify\n"
44
"Report-Msgid-Bugs-To: [email protected]\n"
55
"POT-Creation-Date: 2025-11-02 17:57+0000\n"
6-
"PO-Revision-Date: 2025-11-11 14:51+0000\n"
6+
"PO-Revision-Date: 2025-11-10 10:40+0000\n"
77
"Last-Translator: Paolo Asperti <[email protected]>\n"
88
"Language-Team: Italian <https://hosted.weblate.org/projects/planner/"
99
"io-github-alainm23-planify/it/>\n"
@@ -1499,7 +1499,7 @@ msgstr ""
14991499

15001500
#: src/Dialogs/ManageSectionOrder.vala:54
15011501
msgid "You can sort your sections by dragging and dropping"
1502-
msgstr "Puoi ordinare le tue sezioni trascinandole e rilasciandole"
1502+
msgstr "Puoi riordinare le sezioni trascinandole"
15031503

15041504
#: src/Dialogs/ManageSectionOrder.vala:76
15051505
msgid "Archived"

src/Widgets/NewVersionPopup.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ public class Widgets.NewVersionPopup : Adw.Bin {
7878

7979
update_button.clicked.connect (() => {
8080
try {
81-
AppInfo.launch_default_for_uri (Constants.FLATHUB_URL, null);
81+
AppInfo.launch_default_for_uri ("appstream://io.github.alainm23.planify", null);
8282
} catch (Error e) {
83-
warning ("Error opening URL: %s", e.message);
83+
warning ("Error opening GNOME Software: %s", e.message);
8484
}
8585

8686
dismissed ();

0 commit comments

Comments
 (0)