Move out the hardcoded URLs (changelog, about)

This commit is contained in:
Alex 2018-02-09 04:23:11 +03:00
parent 2a2d4a260e
commit 7320149f22
5 changed files with 11 additions and 4 deletions

View File

@ -75,6 +75,7 @@ add_custom_command(
MAIN_DEPENDENCY
${CMAKE_CURRENT_SOURCE_DIR}/Resources/langs/lang.strings
)
add_custom_target(lang_output
DEPENDS lang_auto.h lang_auto.cpp)

View File

@ -18,6 +18,12 @@ to link the code of portions of this program with the OpenSSL library.
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/
"appname" = "Kepka";
"lng_url_about" = "https://github.com/procxx/kepka";
"lng_url_changelog" = "https://github.com/procxx/kepka/releases";
// basic lang info
"lng_language_name" = "English";
"lng_switch_to_this" = "Switch to English";

View File

@ -116,7 +116,7 @@ void ApiWrap::addLocalChangelogs(int oldAppVersion) {
#endif // Q_OS_WIN
}
if (!addedSome) {
auto text = lng_new_version_wrap(lt_version, str_const_toString(AppVersionStr), lt_changes, lang(lng_new_version_minor), lt_link, qsl("https://desktop.telegram.org/changelog")).trimmed();
auto text = lng_new_version_wrap(lt_version, str_const_toString(AppVersionStr), lt_changes, lang(lng_new_version_minor), lt_link, lang(lng_url_changelog)).trimmed();
addLocalChangelog(text);
}
}

View File

@ -61,7 +61,7 @@ void AboutBox::resizeEvent(QResizeEvent *e) {
}
void AboutBox::showVersionHistory() {
QDesktopServices::openUrl(qsl("https://desktop.telegram.org/changelog"));
QDesktopServices::openUrl(lang(lng_url_changelog));
}
void AboutBox::keyPressEvent(QKeyEvent *e) {

View File

@ -66,9 +66,9 @@ MainMenu::MainMenu(QWidget *parent) : TWidget(parent)
refreshMenu();
_telegram->setRichText(textcmdLink(1, str_const_toString(AppName)));
_telegram->setLink(1, MakeShared<UrlClickHandler>(qsl("https://desktop.telegram.org")));
_telegram->setLink(1, MakeShared<UrlClickHandler>(lang(lng_url_about)));
_version->setRichText(textcmdLink(1, lng_settings_current_version(lt_version, currentVersionText())) + QChar(' ') + QChar(8211) + QChar(' ') + textcmdLink(2, lang(lng_menu_about)));
_version->setLink(1, MakeShared<UrlClickHandler>(qsl("https://desktop.telegram.org/changelog")));
_version->setLink(1, MakeShared<UrlClickHandler>(lang(lng_url_changelog)));
_version->setLink(2, MakeShared<LambdaClickHandler>([] { Ui::show(Box<AboutBox>()); }));
subscribe(Auth().downloaderTaskFinished(), [this] { update(); });