Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Appdata related changes #47

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions data/me.iepure.Ticketbooth.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ SPDX-License-Identifier: CC0-1.0
<id>@app_id@</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-or-later</project_license>
<name translatable="no">Ticket Booth</name>
<name translate="no">Ticket Booth</name>
<launchable type="desktop-id">@[email protected]</launchable>
<summary>Keep track of your favorite shows</summary>
<developer_name translatable="no">Alessandro Iepure</developer_name>
<developer_name translate="no">Alessandro Iepure</developer_name>
<developer id="me.iepure">
<name translate="no">Alessandro Iepure</name>
</developer>
<description>
<p>Ticket Booth allows you to build your watchlist of movies and TV Shows, keep track of
watched titles, and find information about the latest releases.</p>
Expand Down Expand Up @@ -42,17 +45,17 @@ SPDX-License-Identifier: CC0-1.0
<content_rating type="oars-1.1" />
<releases>
<release version="1.0.3.1" date="2023-10-02">
<description translatable="no">
<description translate="no">
<p>Fixed issue that prevented application start with version 1.0.3</p>
</description>
</release>
<release version="1.0.3" date="2023-10-02">
<description translatable="no">
<description translate="no">
<p>Stability improvements: fixed high peaks utilization and crashing. </p>
</description>
</release>
<release version="1.0.2" date="2023-09-27">
<description translatable="no">
<description translate="no">
<p>What's Changed</p>
<ul>
<li>Stability improvements</li>
Expand All @@ -62,12 +65,12 @@ SPDX-License-Identifier: CC0-1.0
</description>
</release>
<release version="1.0.1" date="2023-09-25">
<description translatable="no">
<description translate="no">
<p>Fixes issue that prevented the addition of movies with large budgets and revenues.</p>
</description>
</release>
<release version="1.0" date="2023-09-21">
<description translatable="no">
<description translate="no">
<p>First release</p>
</description>
</release>
Expand Down
20 changes: 10 additions & 10 deletions src/ui/dialogs/message_dialogs.blp
Original file line number Diff line number Diff line change
Expand Up @@ -6,38 +6,38 @@ using Gtk 4.0;
using Adw 1;

Adw.MessageDialog _clear_cache_dialog {
heading: C_('message dialog heading', 'Clear Cached Data?');
body: C_('message dialog body', 'This operation will clear all stored cache data. It might get downloaded again next time you add content from TMDB.');
heading: C_("message dialog heading", "Clear Cached Data?");
body: C_("message dialog body", "This operation will clear all stored cache data. It might get downloaded again next time you add content from TMDB.");

responses[
cache_cancel: C_('message dialog action', "Cancel"),
cache_clear: C_('message dialog action', "Clear") destructive
cache_cancel: C_("message dialog action", "Cancel"),
cache_clear: C_("message dialog action", "Clear") destructive
]
}

Adw.MessageDialog _clear_data_dialog {
heading: C_('message dialog heading', 'Clear Stored Data?');
body: C_('message dialog body', 'This operation will permanentlly delete the selected data, loosing all your changes.');
heading: C_("message dialog heading", "Clear Stored Data?");
body: C_("message dialog body", "This operation will permanentlly delete the selected data, loosing all your changes.");
extra-child: Adw.PreferencesGroup {
Adw.ActionRow _movies_row {
[prefix]
CheckButton _movies_checkbtn {}

title: _('Movies');
title: _("Movies");
activatable-widget: _movies_checkbtn;
}

Adw.ActionRow _series_row {
[prefix]
CheckButton _series_checkbtn {}

title: _('TV Series');
title: _("TV Series");
activatable-widget: _series_checkbtn;
}
};

responses[
data_cancel: C_('message dialog action', "Cancel"),
data_clear: C_('message dialog action', "Clear") destructive
data_cancel: C_("message dialog action", "Cancel"),
data_clear: C_("message dialog action", "Clear") destructive
]
}
2 changes: 1 addition & 1 deletion src/ui/preferences.blp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ template $PreferencesWindow: Adw.PreferencesWindow {

[suffix]
Button _check_own_key_button {
label: C_('preferences', 'Save Key');
label: C_("preferences", "Save Key");
valign: center;

clicked => $_on_check_own_key_button_clicked();
Expand Down