Remove GPL and GitHub from translations.

This commit is contained in:
John Preston
2019-06-23 16:43:21 +02:00
parent ee4501810c
commit 29532f8232
2 changed files with 6 additions and 8 deletions
+6 -6
View File
@@ -33,13 +33,13 @@ rpl::producer<TextWithEntities> Text1() {
rpl::producer<TextWithEntities> Text2() {
return tr::lng_about_text2(
lt_gpl_link,
tr::lng_about_text2_gpl(
) | Ui::Text::ToLink(
"https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE"),
rpl::single(Ui::Text::Link(
"GNU GPL",
"https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE")),
lt_github_link,
tr::lng_about_text2_github(
) | Ui::Text::ToLink(
"https://github.com/telegramdesktop/tdesktop"),
rpl::single(Ui::Text::Link(
"GitHub",
"https://github.com/telegramdesktop/tdesktop")),
Ui::Text::WithEntities);
}