Refactor renamed strings

This commit is contained in:
Davide De Rosa 2019-04-26 18:28:01 +02:00
parent ba8afd9ad7
commit b1cde74798
7 changed files with 20 additions and 18 deletions

View File

@ -154,10 +154,10 @@ extension AboutViewController {
cell.rightText = Utils.versionString()
case .seeChangelog:
cell.leftText = L10n.Version.Buttons.changelog
cell.leftText = L10n.About.Cells.Changelog.caption
case .seeCredits:
cell.leftText = L10n.Version.Buttons.credits
cell.leftText = L10n.About.Cells.Credits.caption
case .website:
cell.leftText = L10n.About.Cells.Website.caption

View File

@ -246,6 +246,8 @@
"about.title" = "Über";
"about.sections.web.header" = "Web";
"about.sections.share.header" = "Teilen";
"about.cells.changelog.caption" = "Changelog";
"about.cells.credits.caption" = "Credits";
"about.cells.website.caption" = "Homepage";
"about.cells.faq.caption" = "FAQ";
"about.cells.disclaimer.caption" = "Haftungsausschluss";
@ -266,8 +268,6 @@
"version.title" = "Version";
"version.labels.intro" = "Passepartout und TunnelKit sind geschrieben und gewartet von by Davide De Rosa (keeshux).\n\nQuellcode für Passepartout und TunnelKit ist öffentlich auf GitHub unter GPLv3 verfügbar, du findest die Links auf der Homepage.\n\nPassepartout ist ein inoffizieller client und auf keine Art und Weise mit OpenVPN Inc. verbunden.";
"version.buttons.changelog" = "CHANGELOG";
"version.buttons.credits" = "CREDITS";
"credits.title" = "Credits";
"credits.sections.licenses.header" = "Lizenzen";

View File

@ -244,6 +244,8 @@
"about.title" = "About";
"about.sections.web.header" = "Web";
"about.sections.share.header" = "Share";
"about.cells.changelog.caption" = "Changelog";
"about.cells.credits.caption" = "Credits";
"about.cells.website.caption" = "Home page";
"about.cells.faq.caption" = "FAQ";
"about.cells.disclaimer.caption" = "Disclaimer";
@ -264,8 +266,6 @@
"version.title" = "Version";
"version.labels.intro" = "Passepartout and TunnelKit are written and maintained by Davide De Rosa (keeshux).\n\nSource code for Passepartout and TunnelKit is publicly available on GitHub under the GPLv3, you can find links in the home page.\n\nPassepartout is a non-official client and is in no way affiliated with OpenVPN Inc.";
"version.buttons.changelog" = "CHANGELOG";
"version.buttons.credits" = "CREDITS";
"credits.title" = "Credits";
"credits.sections.licenses.header" = "Licenses";

View File

@ -246,6 +246,8 @@
"about.title" = "Informazioni su";
"about.sections.web.header" = "Web";
"about.sections.share.header" = "Condividi";
"about.cells.changelog.caption" = "Changelog";
"about.cells.credits.caption" = "Credits";
"about.cells.website.caption" = "Home page";
"about.cells.faq.caption" = "FAQ";
"about.cells.disclaimer.caption" = "Disclaimer";
@ -266,8 +268,6 @@
"version.title" = "Versione";
"version.labels.intro" = "Passepartout e TunnelKit sono scritti e mantenuti da Davide De Rosa (keeshux).\n\nIl codice sorgente di Passepartout e TunnelKit è pubblicamente disponibile su GitHub in accordo con la GPLv3, puoi trovare i link nella home page.\n\nPassepartout è un client non ufficiale e non è affiliato ad OpenVPN Inc. in alcuna maniera.";
"version.buttons.changelog" = "CHANGELOG";
"version.buttons.credits" = "CREDITS";
"credits.title" = "Credits";
"credits.sections.licenses.header" = "Licenze";

View File

@ -250,6 +250,8 @@
"about.title" = "Sobre";
"about.sections.web.header" = "Web";
"about.sections.share.header" = "Compartilhar";
"about.cells.changelog.caption" = "Changelog";
"about.cells.credits.caption" = "Créditos";
"about.cells.website.caption" = "Home page";
"about.cells.faq.caption" = "FAQ";
"about.cells.disclaimer.caption" = "Disclaimer";
@ -270,8 +272,6 @@
"version.title" = "Versão";
"version.labels.intro" = "Passepartout e TunnelKit são desenvolvidos e mantidos por Davide De Rosa (keeshux).\n\nO código de fonte está disponível no GitHub sobre a licença GPLv3, você pode encontrar links na home page.\n\nPassepartout não é um cliente oficial e não possui nenhuma ligação com a OpenVPN Inc.";
"version.buttons.changelog" = "CHANGELOG";
"version.buttons.credits" = "CRÉDITOS";
"credits.title" = "Créditos";
"credits.sections.licenses.header" = "Licenças";

View File

@ -246,6 +246,8 @@
"about.title" = "О нас";
"about.sections.web.header" = "Веб";
"about.sections.share.header" = "Поделиться";
"about.cells.changelog.caption" = "Журнал изменений";
"about.cells.credits.caption" = "Благодарности";
"about.cells.website.caption" = "Домашняя страница";
"about.cells.faq.caption" = "FAQ";
"about.cells.disclaimer.caption" = "Предупреждение";
@ -266,8 +268,6 @@
"version.title" = "Версия";
"version.labels.intro" = "Passepartout и TunnelKit написаны и установлены Davide De Rosa (keeshux).\n\nИсходные коды для Passepartout и TunnelKit публично доступны на GitHub под GPLv3, вы можете найти ссылки на домашней странице.\n\nPassepartout является неофициальным клиентом, и никаким образом не связан с OpenVPN Inc.";
"version.buttons.changelog" = "ЖУРНАЛ ИЗМЕНЕНИЙ";
"version.buttons.credits" = "БЛАГОДАРНОСТИ";
"credits.title" = "Благодарность";
"credits.sections.licenses.header" = "Лицензии";

View File

@ -16,6 +16,14 @@ public enum L10n {
/// About
public static let title = L10n.tr("Localizable", "about.title")
public enum Cells {
public enum Changelog {
/// Changelog
public static let caption = L10n.tr("Localizable", "about.cells.changelog.caption")
}
public enum Credits {
/// Credits
public static let caption = L10n.tr("Localizable", "about.cells.credits.caption")
}
public enum Disclaimer {
/// Disclaimer
public static let caption = L10n.tr("Localizable", "about.cells.disclaimer.caption")
@ -892,12 +900,6 @@ public enum L10n {
public enum Version {
/// Version
public static let title = L10n.tr("Localizable", "version.title")
public enum Buttons {
/// CHANGELOG
public static let changelog = L10n.tr("Localizable", "version.buttons.changelog")
/// CREDITS
public static let credits = L10n.tr("Localizable", "version.buttons.credits")
}
public enum Labels {
/// Passepartout and TunnelKit are written and maintained by Davide De Rosa (keeshux).\n\nSource code for Passepartout and TunnelKit is publicly available on GitHub under the GPLv3, you can find links in the home page.\n\nPassepartout is a non-official client and is in no way affiliated with OpenVPN Inc.
public static let intro = L10n.tr("Localizable", "version.labels.intro")