mirror of
https://github.com/lichess-org/mobile.git
synced 2026-05-26 13:50:52 +00:00
Partially translate ios blog widgets
This commit is contained in:
@@ -5,14 +5,6 @@ enum BlogFeedChoice: String {
|
||||
case communityBlog
|
||||
case userBlog
|
||||
|
||||
var displayName: String {
|
||||
switch self {
|
||||
case .officialBlog: return "Official Blog"
|
||||
case .communityBlog: return "Community Blog"
|
||||
case .userBlog: return "User Blog"
|
||||
}
|
||||
}
|
||||
|
||||
func feedURL(username: String?) -> String? {
|
||||
switch self {
|
||||
case .officialBlog: return "https://lichess.org/@/Lichess/blog.atom"
|
||||
|
||||
@@ -12,11 +12,5 @@ struct BlogFeedEntry: TimelineEntry {
|
||||
BlogFeedEntry(date: .now, feed: feed, username: username, items: [], error: nil, isKidMode: true)
|
||||
}
|
||||
|
||||
/// Display name for the widget header.
|
||||
var headerTitle: String {
|
||||
if feed == .userBlog, let username, !username.isEmpty {
|
||||
return "@\(username)"
|
||||
}
|
||||
return feed.displayName
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -69,7 +69,8 @@ struct BlogFeedWidgetEntryView: View {
|
||||
|
||||
var body: some View {
|
||||
VStack(alignment: .leading, spacing: 0) {
|
||||
BlogFeedWidgetHeader(feedName: entry.headerTitle,
|
||||
BlogFeedWidgetHeader(feed: entry.feed,
|
||||
username: entry.username,
|
||||
updatedAt: entry.date,
|
||||
showTimestamp: family != .systemSmall)
|
||||
Divider()
|
||||
@@ -90,7 +91,7 @@ struct BlogFeedWidgetEntryView: View {
|
||||
itemsContent(spec: nil)
|
||||
.frame(maxWidth: .infinity, alignment: .leading)
|
||||
Spacer()
|
||||
Text("Updated at \(entry.date.shortTime)")
|
||||
Text(entry.date.shortTime)
|
||||
.font(.system(size: BlogFeedWidgetLayout.secondaryFontSize))
|
||||
.foregroundStyle(.secondary)
|
||||
.padding(.top, BlogFeedWidgetLayout.smallFooterTopPadding)
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
import SwiftUI
|
||||
|
||||
struct BlogFeedWidgetHeader: View {
|
||||
let feedName: String
|
||||
let feed: BlogFeedChoice
|
||||
let username: String?
|
||||
let updatedAt: Date
|
||||
var showTimestamp: Bool = true
|
||||
|
||||
@@ -11,17 +12,31 @@ struct BlogFeedWidgetHeader: View {
|
||||
.resizable()
|
||||
.frame(width: BlogFeedWidgetLayout.logoSize, height: BlogFeedWidgetLayout.logoSize)
|
||||
HStack(alignment: .lastTextBaseline, spacing: 0) {
|
||||
Text(feedName)
|
||||
headerTitle
|
||||
.font(.system(size: BlogFeedWidgetLayout.titleFontSize, weight: .semibold))
|
||||
.foregroundStyle(.primary)
|
||||
.lineLimit(1)
|
||||
if showTimestamp {
|
||||
Spacer()
|
||||
Text("Updated at \(updatedAt.shortTime)")
|
||||
Text(updatedAt.shortTime)
|
||||
.font(.system(size: BlogFeedWidgetLayout.secondaryFontSize))
|
||||
.foregroundStyle(.secondary)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ViewBuilder
|
||||
private var headerTitle: some View {
|
||||
switch feed {
|
||||
case .communityBlog:
|
||||
Text("Community")
|
||||
case .officialBlog:
|
||||
// Resolves via "xBlog %@" key → e.g. "Lichess's Blog" / "Blogue de Lichess"
|
||||
Text("xBlog \(String("Lichess"))")
|
||||
case .userBlog:
|
||||
// Resolves via "xBlog %@" key → e.g. "johndoe's Blog" / "Blogue de johndoe"
|
||||
Text("xBlog \(username ?? "")")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -299,6 +299,526 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"Community": {
|
||||
"extractionState": "manual",
|
||||
"localizations": {
|
||||
"ar": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "المجتمع"
|
||||
}
|
||||
},
|
||||
"bg": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Общност"
|
||||
}
|
||||
},
|
||||
"bs": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Zajednica"
|
||||
}
|
||||
},
|
||||
"ca": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Comunitat"
|
||||
}
|
||||
},
|
||||
"cs": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Komunita"
|
||||
}
|
||||
},
|
||||
"da": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Fællesskab"
|
||||
}
|
||||
},
|
||||
"de": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Gemeinschaft"
|
||||
}
|
||||
},
|
||||
"el": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Κοινότητα"
|
||||
}
|
||||
},
|
||||
"en": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Community"
|
||||
}
|
||||
},
|
||||
"eo": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Komunumo"
|
||||
}
|
||||
},
|
||||
"es": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Comunidad"
|
||||
}
|
||||
},
|
||||
"eu": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Komunitatea"
|
||||
}
|
||||
},
|
||||
"fa": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "همدارگان"
|
||||
}
|
||||
},
|
||||
"fi": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Yhteisön blogit"
|
||||
}
|
||||
},
|
||||
"fr": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Communauté"
|
||||
}
|
||||
},
|
||||
"gl": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Comunidade"
|
||||
}
|
||||
},
|
||||
"gsw": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "G'meinschaft"
|
||||
}
|
||||
},
|
||||
"hu": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Közösség"
|
||||
}
|
||||
},
|
||||
"it": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Comunità"
|
||||
}
|
||||
},
|
||||
"ja": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "コミュニティ"
|
||||
}
|
||||
},
|
||||
"ko": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "커뮤니티"
|
||||
}
|
||||
},
|
||||
"nb": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Fellesskap"
|
||||
}
|
||||
},
|
||||
"nl": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Gemeenschap"
|
||||
}
|
||||
},
|
||||
"pl": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Społeczność"
|
||||
}
|
||||
},
|
||||
"pt": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Comunidade"
|
||||
}
|
||||
},
|
||||
"pt-BR": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Comunidade"
|
||||
}
|
||||
},
|
||||
"ro": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Comunitate"
|
||||
}
|
||||
},
|
||||
"ru": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Сообщество"
|
||||
}
|
||||
},
|
||||
"sk": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Komunita"
|
||||
}
|
||||
},
|
||||
"sl": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Skupnost"
|
||||
}
|
||||
},
|
||||
"sq": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Bashkësi"
|
||||
}
|
||||
},
|
||||
"tr": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Topluluk"
|
||||
}
|
||||
},
|
||||
"uk": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Спільнота"
|
||||
}
|
||||
},
|
||||
"uz": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Hamjamiyat"
|
||||
}
|
||||
},
|
||||
"vi": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Cộng đồng"
|
||||
}
|
||||
},
|
||||
"zh": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "社区"
|
||||
}
|
||||
},
|
||||
"zh-TW": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "社群"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"xBlog %@": {
|
||||
"extractionState": "manual",
|
||||
"localizations": {
|
||||
"af": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@ se webjoernaal"
|
||||
}
|
||||
},
|
||||
"ar": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "مدونة %@"
|
||||
}
|
||||
},
|
||||
"be": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Блог %@"
|
||||
}
|
||||
},
|
||||
"bg": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Блогът на %@"
|
||||
}
|
||||
},
|
||||
"bs": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog korisnika %@"
|
||||
}
|
||||
},
|
||||
"ca": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog de %@"
|
||||
}
|
||||
},
|
||||
"cs": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog hráče %@"
|
||||
}
|
||||
},
|
||||
"da": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog - %@"
|
||||
}
|
||||
},
|
||||
"de": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog von %@"
|
||||
}
|
||||
},
|
||||
"el": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Ιστολόγιο του χρήστη %@"
|
||||
}
|
||||
},
|
||||
"en": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@'s Blog"
|
||||
}
|
||||
},
|
||||
"eo": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blogo de %@"
|
||||
}
|
||||
},
|
||||
"es": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog de %@"
|
||||
}
|
||||
},
|
||||
"et": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Kasutaja %@ blogi"
|
||||
}
|
||||
},
|
||||
"eu": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@ erabiltzailearen Bloga"
|
||||
}
|
||||
},
|
||||
"fa": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "وبنوشتِ %@"
|
||||
}
|
||||
},
|
||||
"fi": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Käyttäjän %@ blogi"
|
||||
}
|
||||
},
|
||||
"fr": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blogue de %@"
|
||||
}
|
||||
},
|
||||
"gl": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "O Blog de %@"
|
||||
}
|
||||
},
|
||||
"he": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "הבלוג של %@"
|
||||
}
|
||||
},
|
||||
"hi": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@ का ब्लॉग"
|
||||
}
|
||||
},
|
||||
"hr": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog korisnika %@"
|
||||
}
|
||||
},
|
||||
"hu": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@ blogja"
|
||||
}
|
||||
},
|
||||
"hy": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@-ի բլոգ"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog dari %@"
|
||||
}
|
||||
},
|
||||
"it": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog di %@"
|
||||
}
|
||||
},
|
||||
"ja": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@ のブログ"
|
||||
}
|
||||
},
|
||||
"kk": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@ блогі"
|
||||
}
|
||||
},
|
||||
"ko": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@의 블로그"
|
||||
}
|
||||
},
|
||||
"lt": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@ Tinklaraštis"
|
||||
}
|
||||
},
|
||||
"lv": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Lietotāja %@ blogs"
|
||||
}
|
||||
},
|
||||
"nb": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Bloggen til %@"
|
||||
}
|
||||
},
|
||||
"nl": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog van %@"
|
||||
}
|
||||
},
|
||||
"pl": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog gracza %@"
|
||||
}
|
||||
},
|
||||
"pt": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog de %@"
|
||||
}
|
||||
},
|
||||
"pt-BR": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog do(a) %@"
|
||||
}
|
||||
},
|
||||
"ro": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog-ul lui %@"
|
||||
}
|
||||
},
|
||||
"ru": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Блог %@"
|
||||
}
|
||||
},
|
||||
"sk": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blog užívateľa %@"
|
||||
}
|
||||
},
|
||||
"sl": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@ blog"
|
||||
}
|
||||
},
|
||||
"sq": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Blogu i %@"
|
||||
}
|
||||
},
|
||||
"sv": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@s blogg"
|
||||
}
|
||||
},
|
||||
"tr": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@ Bloğu"
|
||||
}
|
||||
},
|
||||
"uk": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Блог %@"
|
||||
}
|
||||
},
|
||||
"uz": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@ blogi"
|
||||
}
|
||||
},
|
||||
"vi": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "Bài viết của %@"
|
||||
}
|
||||
},
|
||||
"zh": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@ 的博客"
|
||||
}
|
||||
},
|
||||
"zh-TW": {
|
||||
"stringUnit": {
|
||||
"state": "translated",
|
||||
"value": "%@的部落格"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": "1.0"
|
||||
|
||||
+2
-1
@@ -1562,5 +1562,6 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} jaar gelede} other{{count} jare gelede}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{nog {count} minuut oor} other{nog {count} minute oor}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{nog {count} uur oor} other{nog {count} ure oor}}",
|
||||
"tfaTwoFactorAuth": "Tweeledige verifikasie"
|
||||
"tfaTwoFactorAuth": "Tweeledige verifikasie",
|
||||
"ublogXBlog": "{param} se webjoernaal"
|
||||
}
|
||||
+3
-1
@@ -1720,5 +1720,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =0{منذ {count} سنة} =1{منذ {count} سنة} =2{منذ {count} سنة} few{منذ {count} سنة} many{منذ {count} سنة} other{منذ {count} سنة}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =0{{count} دقيقة متبقية} =1{{count} دقيقة متبقية} =2{{count} دقيقة متبقية} few{{count} دقيقة متبقية} many{{count} دقيقة متبقية} other{{count} دقيقة متبقية}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =0{{count} ساعة متبقية} =1{{count} ساعة متبقية} =2{{count} ساعة متبقية} few{{count} ساعة متبقية} many{{count} ساعة متبقية} other{{count} ساعة متبقية}}",
|
||||
"tfaTwoFactorAuth": "التوثيق ذو العاملين"
|
||||
"tfaTwoFactorAuth": "التوثيق ذو العاملين",
|
||||
"ublogCommunity": "المجتمع",
|
||||
"ublogXBlog": "مدونة {param}"
|
||||
}
|
||||
+2
-1
@@ -1611,5 +1611,6 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} год таму} few{{count} гады таму} many{{count} гадоў таму} other{{count} гадоў таму}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{Засталася {count} хвіліна} few{Засталося {count} хвіліны} many{Засталося {count} хвілін} other{Засталося {count} хвіліны}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{Засталася {count} гадзіна} few{Засталося {count} гадзіны} many{Засталося {count} гадзін} other{Засталося {count} гадзіны}}",
|
||||
"tfaTwoFactorAuth": "Двухфактарная аўтэнтыфікацыя"
|
||||
"tfaTwoFactorAuth": "Двухфактарная аўтэнтыфікацыя",
|
||||
"ublogXBlog": "Блог {param}"
|
||||
}
|
||||
+3
-1
@@ -1774,5 +1774,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{преди {count} година} other{преди {count} години}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{остава {count} минутa} other{остават {count} минути}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{остава {count} час} other{остават {count} часа}}",
|
||||
"tfaTwoFactorAuth": "Двуфакторно удостоверяване"
|
||||
"tfaTwoFactorAuth": "Двуфакторно удостоверяване",
|
||||
"ublogCommunity": "Общност",
|
||||
"ublogXBlog": "Блогът на {param}"
|
||||
}
|
||||
+3
-1
@@ -1749,5 +1749,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{prije {count} godinu} few{prije {count} godine} other{prije {count} godina}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{Preostala je {count} minuta} few{Preostalo je {count} minuta} other{Preostalo je {count} minuta}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{Preostao je {count} sat} few{Preostalo je {count} sata} other{Preostalo je {count} sati}}",
|
||||
"tfaTwoFactorAuth": "Dvofaktorska provjera autentičnosti"
|
||||
"tfaTwoFactorAuth": "Dvofaktorska provjera autentičnosti",
|
||||
"ublogCommunity": "Zajednica",
|
||||
"ublogXBlog": "Blog korisnika {param}"
|
||||
}
|
||||
+3
-1
@@ -1827,5 +1827,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{fa {count} any} other{fa {count} anys}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{Queda {count} minut} other{Queden {count} minuts}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{Queda {count} hora} other{Queden {count} hores}}",
|
||||
"tfaTwoFactorAuth": "Autenticació de dos factors"
|
||||
"tfaTwoFactorAuth": "Autenticació de dos factors",
|
||||
"ublogCommunity": "Comunitat",
|
||||
"ublogXBlog": "Blog de {param}"
|
||||
}
|
||||
+3
-1
@@ -1749,5 +1749,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{před {count} rokem} few{před {count} lety} many{před {count} lety} other{před {count} lety}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{Zbývá {count} minuta} few{Zbývají {count} minuty} many{Zbývá {count} minut} other{Zbývá {count} minut}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{Zbývá {count} hodina} few{Zbývají {count} hodiny} many{Zbývá {count} hodin} other{Zbývá {count} hodin}}",
|
||||
"tfaTwoFactorAuth": "Dvoufázové ověření"
|
||||
"tfaTwoFactorAuth": "Dvoufázové ověření",
|
||||
"ublogCommunity": "Komunita",
|
||||
"ublogXBlog": "Blog hráče {param}"
|
||||
}
|
||||
+3
-1
@@ -1823,5 +1823,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} år siden} other{{count} år siden}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minut tilbage} other{{count} minutter tilbage}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} time tilbage} other{{count} timer tilbage}}",
|
||||
"tfaTwoFactorAuth": "To-faktor-godkendelse"
|
||||
"tfaTwoFactorAuth": "To-faktor-godkendelse",
|
||||
"ublogCommunity": "Fællesskab",
|
||||
"ublogXBlog": "Blog - {param}"
|
||||
}
|
||||
+3
-1
@@ -1824,5 +1824,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{vor {count} Jahr} other{vor {count} Jahren}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} Minute verbleibend} other{{count} Minuten verbleibend}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} Stunde verbleiben} other{{count} Stunden verbleiben}}",
|
||||
"tfaTwoFactorAuth": "Zwei-Faktor-Authentifizierung"
|
||||
"tfaTwoFactorAuth": "Zwei-Faktor-Authentifizierung",
|
||||
"ublogCommunity": "Gemeinschaft",
|
||||
"ublogXBlog": "Blog von {param}"
|
||||
}
|
||||
+3
-1
@@ -1811,5 +1811,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} χρόνο πριν} other{{count} χρόνια πριν}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{απομένει {count} λεπτό} other{απομένουν {count} λεπτά}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{απομένει {count} ώρα} other{απομένουν {count} ώρες}}",
|
||||
"tfaTwoFactorAuth": "Έλεγχος ταυτότητας δύο παραγόντων"
|
||||
"tfaTwoFactorAuth": "Έλεγχος ταυτότητας δύο παραγόντων",
|
||||
"ublogCommunity": "Κοινότητα",
|
||||
"ublogXBlog": "Ιστολόγιο του χρήστη {param}"
|
||||
}
|
||||
+10
-1
@@ -3732,5 +3732,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"tfaTwoFactorAuth": "Two-factor authentication"
|
||||
"tfaTwoFactorAuth": "Two-factor authentication",
|
||||
"ublogCommunity": "Community",
|
||||
"ublogXBlog": "{param}'s Blog",
|
||||
"@ublogXBlog": {
|
||||
"placeholders": {
|
||||
"param": {
|
||||
"type": "String"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1827,5 +1827,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} year ago} other{{count} years ago}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minute remaining} other{{count} minutes remaining}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} hour remaining} other{{count} hours remaining}}",
|
||||
"tfaTwoFactorAuth": "Two-factor authentication"
|
||||
"tfaTwoFactorAuth": "Two-factor authentication",
|
||||
"ublogCommunity": "Community",
|
||||
"ublogXBlog": "{param}'s Blog"
|
||||
}
|
||||
+3
-1
@@ -1698,5 +1698,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{antaŭ {count} jaro} other{antaŭ {count} jaroj}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{restas {count} minuto} other{restas {count} minutoj}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} horo restas} other{{count} horoj restas}}",
|
||||
"tfaTwoFactorAuth": "Dufaza aŭtentigo"
|
||||
"tfaTwoFactorAuth": "Dufaza aŭtentigo",
|
||||
"ublogCommunity": "Komunumo",
|
||||
"ublogXBlog": "Blogo de {param}"
|
||||
}
|
||||
+3
-1
@@ -1827,5 +1827,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{hace {count} año} other{hace {count} años}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minuto restante} other{{count} minutos restantes}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} hora restante} other{{count} horas restantes}}",
|
||||
"tfaTwoFactorAuth": "Autenticación en dos pasos"
|
||||
"tfaTwoFactorAuth": "Autenticación en dos pasos",
|
||||
"ublogCommunity": "Comunidad",
|
||||
"ublogXBlog": "Blog de {param}"
|
||||
}
|
||||
+2
-1
@@ -1390,5 +1390,6 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} aasta tagasi} other{{count} aastat tagasi}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minut jäänud} other{{count} minutit jäänud}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} tund jäänud} other{{count} tundi jäänud}}",
|
||||
"tfaTwoFactorAuth": "Kaheastmeline autentimine"
|
||||
"tfaTwoFactorAuth": "Kaheastmeline autentimine",
|
||||
"ublogXBlog": "Kasutaja {param} blogi"
|
||||
}
|
||||
+3
-1
@@ -1825,5 +1825,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{orain dela urte {count}} other{orain dela {count} urte}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{Minutu {count} falta da} other{{count} minutu falta dira}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{Ordu {count} falta da} other{{count} ordu falta dira}}",
|
||||
"tfaTwoFactorAuth": "Bi faktoreko autentifikazioa"
|
||||
"tfaTwoFactorAuth": "Bi faktoreko autentifikazioa",
|
||||
"ublogCommunity": "Komunitatea",
|
||||
"ublogXBlog": "{param} erabiltzailearen Bloga"
|
||||
}
|
||||
+3
-1
@@ -1819,5 +1819,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} سال پیش} other{{count} سال پیش}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} دقیقه باقی مانده} other{{count} دقیقه باقی مانده}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} ساعت باقی مانده} other{{count} ساعت باقی مانده}}",
|
||||
"tfaTwoFactorAuth": "راستینآزمایی دوعاملی"
|
||||
"tfaTwoFactorAuth": "راستینآزمایی دوعاملی",
|
||||
"ublogCommunity": "همدارگان",
|
||||
"ublogXBlog": "وبنوشتِ {param}"
|
||||
}
|
||||
+3
-1
@@ -1826,5 +1826,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} vuosi sitten} other{{count} vuotta sitten}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minuutti jäljellä} other{{count} minuuttia jäljellä}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} tunti jäljellä} other{{count} tuntia jäljellä}}",
|
||||
"tfaTwoFactorAuth": "Kaksivaiheinen tunnistautuminen"
|
||||
"tfaTwoFactorAuth": "Kaksivaiheinen tunnistautuminen",
|
||||
"ublogCommunity": "Yhteisön blogit",
|
||||
"ublogXBlog": "Käyttäjän {param} blogi"
|
||||
}
|
||||
+3
-1
@@ -1827,5 +1827,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{il y a {count} an} other{il y a {count} ans}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minute restante} other{{count} minutes restantes}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} heure restante} other{{count} heures restantes}}",
|
||||
"tfaTwoFactorAuth": "Authentification à deux facteurs"
|
||||
"tfaTwoFactorAuth": "Authentification à deux facteurs",
|
||||
"ublogCommunity": "Communauté",
|
||||
"ublogXBlog": "Blogue de {param}"
|
||||
}
|
||||
+3
-1
@@ -1827,5 +1827,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{hai {count} ano} other{hai {count} anos}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minuto restante} other{{count} minutos restantes}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} hora restante} other{{count} horas restantes}}",
|
||||
"tfaTwoFactorAuth": "Autenticación en dous pasos"
|
||||
"tfaTwoFactorAuth": "Autenticación en dous pasos",
|
||||
"ublogCommunity": "Comunidade",
|
||||
"ublogXBlog": "O Blog de {param}"
|
||||
}
|
||||
@@ -1825,5 +1825,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{vor {count} Jahr} other{vor {count} Jahr}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} Minute blibt} other{{count} Minute blibed}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} Schtund blibt} other{{count} Schtunde blibed}}",
|
||||
"tfaTwoFactorAuth": "Zwei-Faktor-Autentifizierig"
|
||||
"tfaTwoFactorAuth": "Zwei-Faktor-Autentifizierig",
|
||||
"ublogCommunity": "G'meinschaft",
|
||||
"ublogXBlog": "{param}'s Blog"
|
||||
}
|
||||
+2
-1
@@ -1664,5 +1664,6 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{לפני שנה {count}} =2{לפני {count} שנים} many{לפני {count} שנים} other{לפני {count} שנים}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{דקה {count} נותרה} =2{{count} דקות נותרו} many{{count} דקות נותרו} other{{count} דקות נותרו}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{שעה {count} נותרה} =2{{count} שעות נותרו} many{{count} שעות נותרו} other{{count} שעות נותרו}}",
|
||||
"tfaTwoFactorAuth": "אימות דו־שלבי"
|
||||
"tfaTwoFactorAuth": "אימות דו־שלבי",
|
||||
"ublogXBlog": "הבלוג של {param}"
|
||||
}
|
||||
+2
-1
@@ -1503,5 +1503,6 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} वर्ष पहले} other{{count} वर्षों पहले}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} मिनट बचा है} other{{count} मिनट बचे हैं}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} घंटा बचा है} other{{count} घंटे बचे हैं}}",
|
||||
"tfaTwoFactorAuth": "दो-चरण प्रमाणीकरण"
|
||||
"tfaTwoFactorAuth": "दो-चरण प्रमाणीकरण",
|
||||
"ublogXBlog": "{param} का ब्लॉग"
|
||||
}
|
||||
+2
-1
@@ -1600,5 +1600,6 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{prije {count} godinu} few{prije {count} godine} other{prije {count} godina}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{Preostala {count} minuta} few{Preostale {count} minute} other{Preostalo {count} minuta}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{Preostao {count} sat} few{Preostala {count} sata} other{Preostalo {count} sati}}",
|
||||
"tfaTwoFactorAuth": "Dvofaktorska provjera autentičnosti"
|
||||
"tfaTwoFactorAuth": "Dvofaktorska provjera autentičnosti",
|
||||
"ublogXBlog": "Blog korisnika {param}"
|
||||
}
|
||||
+3
-1
@@ -1807,5 +1807,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} éve} other{{count} éve}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} perc van hátra} other{{count} perc van hátra}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} óra van hátra} other{{count} óra van hátra}}",
|
||||
"tfaTwoFactorAuth": "Kétlépcsős azonosítás"
|
||||
"tfaTwoFactorAuth": "Kétlépcsős azonosítás",
|
||||
"ublogCommunity": "Közösség",
|
||||
"ublogXBlog": "{param} blogja"
|
||||
}
|
||||
+2
-1
@@ -1449,5 +1449,6 @@
|
||||
"timeagoNbWeeksAgo": "{count, plural, =1{{count} շաբաթ առաջ} other{{count} շաբաթ առաջ}}",
|
||||
"timeagoNbMonthsAgo": "{count, plural, =1{{count} ամիս առաջ} other{{count} ամիս առաջ}}",
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} տարի առաջ} other{{count} տարի առաջ}}",
|
||||
"tfaTwoFactorAuth": "Երկգործոն նույնականացում"
|
||||
"tfaTwoFactorAuth": "Երկգործոն նույնականացում",
|
||||
"ublogXBlog": "{param}-ի բլոգ"
|
||||
}
|
||||
+2
-1
@@ -1599,5 +1599,6 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, other{{count} tahun yang lalu}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, other{{count} menit tersisa}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, other{{count} jam tersisa}}",
|
||||
"tfaTwoFactorAuth": "Autentikasi dua-langkah"
|
||||
"tfaTwoFactorAuth": "Autentikasi dua-langkah",
|
||||
"ublogXBlog": "Blog dari {param}"
|
||||
}
|
||||
+3
-1
@@ -1825,5 +1825,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} anno fa} other{{count} anni fa}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minuto rimanente} other{{count} minuti rimanenti}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} ora rimanente} other{{count} ore rimanenti}}",
|
||||
"tfaTwoFactorAuth": "Autenticazione a due fattori"
|
||||
"tfaTwoFactorAuth": "Autenticazione a due fattori",
|
||||
"ublogCommunity": "Comunità",
|
||||
"ublogXBlog": "Blog di {param}"
|
||||
}
|
||||
+3
-1
@@ -1825,5 +1825,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, other{{count} 年前}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, other{残り {count} 分}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, other{残り {count} 時間}}",
|
||||
"tfaTwoFactorAuth": "2 要素認証"
|
||||
"tfaTwoFactorAuth": "2 要素認証",
|
||||
"ublogCommunity": "コミュニティ",
|
||||
"ublogXBlog": "{param} のブログ"
|
||||
}
|
||||
+2
-1
@@ -1589,5 +1589,6 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} жыл бұрын} other{{count} жыл бұрын}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} минут қалды} other{{count} минут қалды}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} сағат қалды} other{{count} сағат қалды}}",
|
||||
"tfaTwoFactorAuth": "Екісатылы өкіл-растау"
|
||||
"tfaTwoFactorAuth": "Екісатылы өкіл-растау",
|
||||
"ublogXBlog": "{param} блогі"
|
||||
}
|
||||
+3
-1
@@ -1827,5 +1827,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, other{{count}년 전}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, other{{count}분 남음}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, other{{count}시간 남음}}",
|
||||
"tfaTwoFactorAuth": "2단계 인증"
|
||||
"tfaTwoFactorAuth": "2단계 인증",
|
||||
"ublogCommunity": "커뮤니티",
|
||||
"ublogXBlog": "{param}의 블로그"
|
||||
}
|
||||
+2
-1
@@ -1639,5 +1639,6 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{Prieš {count} metus} few{Prieš {count} metus} many{Prieš {count} metų} other{Prieš {count} metų}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{Liko {count} minutė} few{Liko {count} minutės} many{Liko {count} minučių} other{Liko {count} minučių}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{Liko {count} valanda} few{Liko {count} valandos} many{Liko {count} valandų} other{Liko {count} valandų}}",
|
||||
"tfaTwoFactorAuth": "Dviejų lygių tapatumo nustatymas"
|
||||
"tfaTwoFactorAuth": "Dviejų lygių tapatumo nustatymas",
|
||||
"ublogXBlog": "{param} Tinklaraštis"
|
||||
}
|
||||
+2
-1
@@ -1484,5 +1484,6 @@
|
||||
"timeagoNbWeeksAgo": "{count, plural, =0{pirms {count} nedēļām} =1{pirms {count} nedēļas} other{pirms {count} nedēļām}}",
|
||||
"timeagoNbMonthsAgo": "{count, plural, =0{pirms {count} mēnešiem} =1{pirms {count} mēneša} other{pirms {count} mēnešiem}}",
|
||||
"timeagoNbYearsAgo": "{count, plural, =0{pirms {count} gadiem} =1{pirms {count} gada} other{pirms {count} gadiem}}",
|
||||
"tfaTwoFactorAuth": "Divfaktoru autentifikācija"
|
||||
"tfaTwoFactorAuth": "Divfaktoru autentifikācija",
|
||||
"ublogXBlog": "Lietotāja {param} blogs"
|
||||
}
|
||||
+3
-1
@@ -1825,5 +1825,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{for {count} år siden} other{for {count} år siden}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minutt igjen} other{{count} minutter igjen}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} time igjen} other{{count} timer igjen}}",
|
||||
"tfaTwoFactorAuth": "Tofaktorautentisering"
|
||||
"tfaTwoFactorAuth": "Tofaktorautentisering",
|
||||
"ublogCommunity": "Fellesskap",
|
||||
"ublogXBlog": "Bloggen til {param}"
|
||||
}
|
||||
+3
-1
@@ -1825,5 +1825,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} jaar geleden} other{{count} jaar geleden}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minuut resterend} other{{count} minuten resterend}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} uur resterend} other{{count} uur resterend}}",
|
||||
"tfaTwoFactorAuth": "Tweestapsverificatie"
|
||||
"tfaTwoFactorAuth": "Tweestapsverificatie",
|
||||
"ublogCommunity": "Gemeenschap",
|
||||
"ublogXBlog": "Blog van {param}"
|
||||
}
|
||||
+3
-1
@@ -1824,5 +1824,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} rok temu} few{{count} lata temu} many{{count} lat temu} other{{count} lat temu}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{Pozostała {count} minuta} few{Pozostały {count} minuty} many{Pozostało {count} minut} other{Pozostało {count} minut}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{Pozostała {count} godzina} few{Pozostały {count} godziny} many{Pozostało {count} godzin} other{Pozostało {count} godzin}}",
|
||||
"tfaTwoFactorAuth": "Uwierzytelnianie dwuskładnikowe"
|
||||
"tfaTwoFactorAuth": "Uwierzytelnianie dwuskładnikowe",
|
||||
"ublogCommunity": "Społeczność",
|
||||
"ublogXBlog": "Blog gracza {param}"
|
||||
}
|
||||
+3
-1
@@ -1782,5 +1782,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{há {count} ano} other{há {count} anos}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minuto restante} other{{count} minutos restantes}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} hora restante} other{{count} horas restantes}}",
|
||||
"tfaTwoFactorAuth": "Autenticação de dois fatores"
|
||||
"tfaTwoFactorAuth": "Autenticação de dois fatores",
|
||||
"ublogCommunity": "Comunidade",
|
||||
"ublogXBlog": "Blog de {param}"
|
||||
}
|
||||
@@ -1827,5 +1827,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} ano atrás} other{{count} anos atrás}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minuto restante} other{{count} minutos restantes}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} hora restante} other{{count} horas restantes}}",
|
||||
"tfaTwoFactorAuth": "Autenticação de dois fatores"
|
||||
"tfaTwoFactorAuth": "Autenticação de dois fatores",
|
||||
"ublogCommunity": "Comunidade",
|
||||
"ublogXBlog": "Blog do(a) {param}"
|
||||
}
|
||||
+3
-1
@@ -1825,5 +1825,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{cu un an în urmă} few{cu {count} ani în urmă} other{cu {count} de ani în urmă}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{un minut rămas} few{{count} minute rămase} other{{count} de minute rămase}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{o oră rămasă} few{{count} ore rămase} other{{count} de ore rămase}}",
|
||||
"tfaTwoFactorAuth": "Autentificare în doi pași"
|
||||
"tfaTwoFactorAuth": "Autentificare în doi pași",
|
||||
"ublogCommunity": "Comunitate",
|
||||
"ublogXBlog": "Blog-ul lui {param}"
|
||||
}
|
||||
+3
-1
@@ -1827,5 +1827,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} год назад} few{{count} года назад} many{{count} лет назад} other{{count} лет назад}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{осталась {count} минута} few{осталось {count} минуты} many{осталось {count} минут} other{осталось {count} минут}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{остался {count} час} few{осталось {count} часа} many{осталось {count} часов} other{осталось {count} часов}}",
|
||||
"tfaTwoFactorAuth": "Двухфакторная аутентификация"
|
||||
"tfaTwoFactorAuth": "Двухфакторная аутентификация",
|
||||
"ublogCommunity": "Сообщество",
|
||||
"ublogXBlog": "Блог {param}"
|
||||
}
|
||||
+3
-1
@@ -1760,5 +1760,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{pred {count} rokom} few{pred {count} rokmi} many{pred {count} rokmi} other{pred {count} rokmi}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{ostáva {count} minúta} few{ostávajú {count} minúty} many{ostáva {count} minút} other{ostáva {count} minút}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{ostáva {count} hodina} few{ostávajú {count} hodiny} many{ostáva {count} hodín} other{ostáva {count} hodín}}",
|
||||
"tfaTwoFactorAuth": "Dvojstupňové overenie"
|
||||
"tfaTwoFactorAuth": "Dvojstupňové overenie",
|
||||
"ublogCommunity": "Komunita",
|
||||
"ublogXBlog": "Blog užívateľa {param}"
|
||||
}
|
||||
+3
-1
@@ -1820,5 +1820,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{Pred {count} letom} =2{Pred {count} letoma} few{Pred {count} leti} other{Pred {count} leti}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{še {count} minuta} =2{še {count} minuti} few{še {count} minute} other{še {count} minut}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{še {count} ura} =2{še {count} uri} few{še {count} ure} other{še {count} ur}}",
|
||||
"tfaTwoFactorAuth": "Dvojna avtentikacija"
|
||||
"tfaTwoFactorAuth": "Dvojna avtentikacija",
|
||||
"ublogCommunity": "Skupnost",
|
||||
"ublogXBlog": "{param} blog"
|
||||
}
|
||||
+3
-1
@@ -1778,5 +1778,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} vit më parë} other{para {count} viteve}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{Edhe {count} minutë} other{Edhe {count} minuta}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{Edhe {count} orë} other{Edhe {count} orë}}",
|
||||
"tfaTwoFactorAuth": "Mirëfilltësim dyfaktorësh"
|
||||
"tfaTwoFactorAuth": "Mirëfilltësim dyfaktorësh",
|
||||
"ublogCommunity": "Bashkësi",
|
||||
"ublogXBlog": "Blogu i {param}"
|
||||
}
|
||||
+3
-1
@@ -1694,5 +1694,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} år sedan} other{{count} år sedan}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} minut återstår} other{{count} minuter återstår}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} timme återstår} other{{count} timmar återstår}}",
|
||||
"tfaTwoFactorAuth": "Tvåfaktorsautentisering"
|
||||
"tfaTwoFactorAuth": "Tvåfaktorsautentisering",
|
||||
"ublogCommunity": "Community",
|
||||
"ublogXBlog": "{param}s blogg"
|
||||
}
|
||||
+3
-1
@@ -1827,5 +1827,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} yıl önce} other{{count} yıl önce}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} dakika kaldı} other{{count} dakika kaldı}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} saat kaldı} other{{count} saat kaldı}}",
|
||||
"tfaTwoFactorAuth": "İki faktörlü kimlik doğrulama"
|
||||
"tfaTwoFactorAuth": "İki faktörlü kimlik doğrulama",
|
||||
"ublogCommunity": "Topluluk",
|
||||
"ublogXBlog": "{param} Bloğu"
|
||||
}
|
||||
+3
-1
@@ -1827,5 +1827,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} рік тому} few{{count} роки тому} many{{count} років тому} other{{count} року тому}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{залишилася {count} хвилина} few{залишилося {count} хвилини} many{залишилося {count} хвилин} other{залишилося {count} хвилини}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{залишилася {count} година} few{залишилося {count} години} many{залишилося {count} годин} other{залишилося {count} години}}",
|
||||
"tfaTwoFactorAuth": "Двофакторна автентифікація"
|
||||
"tfaTwoFactorAuth": "Двофакторна автентифікація",
|
||||
"ublogCommunity": "Спільнота",
|
||||
"ublogXBlog": "Блог {param}"
|
||||
}
|
||||
+3
-1
@@ -1825,5 +1825,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, =1{{count} yil oldin} other{{count} yil oldin}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, =1{{count} daqiqa qoldi} other{{count} daqiqa qoldi}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, =1{{count} soat qoldi} other{{count} soat qoldi}}",
|
||||
"tfaTwoFactorAuth": "Ikki bosqishli autentifikatsiya"
|
||||
"tfaTwoFactorAuth": "Ikki bosqishli autentifikatsiya",
|
||||
"ublogCommunity": "Hamjamiyat",
|
||||
"ublogXBlog": "{param} blogi"
|
||||
}
|
||||
+3
-1
@@ -1827,5 +1827,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, other{{count} năm trước}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, other{còn {count} phút}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, other{còn {count} giờ}}",
|
||||
"tfaTwoFactorAuth": "Xác thực 2 bước"
|
||||
"tfaTwoFactorAuth": "Xác thực 2 bước",
|
||||
"ublogCommunity": "Cộng đồng",
|
||||
"ublogXBlog": "Bài viết của {param}"
|
||||
}
|
||||
+3
-1
@@ -1827,5 +1827,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, other{{count} 年前}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, other{剩余 {count} 分钟}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, other{剩余 {count} 小时}}",
|
||||
"tfaTwoFactorAuth": "双重认证"
|
||||
"tfaTwoFactorAuth": "双重认证",
|
||||
"ublogCommunity": "社区",
|
||||
"ublogXBlog": "{param} 的博客"
|
||||
}
|
||||
@@ -1677,5 +1677,7 @@
|
||||
"timeagoNbYearsAgo": "{count, plural, other{{count}年前}}",
|
||||
"timeagoNbMinutesRemaining": "{count, plural, other{剩下 {count} 分鐘}}",
|
||||
"timeagoNbHoursRemaining": "{count, plural, other{剩下 {count} 小時}}",
|
||||
"tfaTwoFactorAuth": "兩步驟驗證"
|
||||
"tfaTwoFactorAuth": "兩步驟驗證",
|
||||
"ublogCommunity": "社群",
|
||||
"ublogXBlog": "{param}的部落格"
|
||||
}
|
||||
@@ -11169,6 +11169,18 @@ abstract class AppLocalizations {
|
||||
/// In en, this message translates to:
|
||||
/// **'Two-factor authentication'**
|
||||
String get tfaTwoFactorAuth;
|
||||
|
||||
/// No description provided for @ublogCommunity.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Community'**
|
||||
String get ublogCommunity;
|
||||
|
||||
/// No description provided for @ublogXBlog.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'{param}\'s Blog'**
|
||||
String ublogXBlog(String param);
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsAf extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Tweeledige verifikasie';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param se webjoernaal';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6942,4 +6942,12 @@ class AppLocalizationsAr extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'التوثيق ذو العاملين';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'المجتمع';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'مدونة $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6560,4 +6560,12 @@ class AppLocalizationsAz extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => '2 mərhələli təsdiqləmə';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param\'s Blog';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6740,4 +6740,12 @@ class AppLocalizationsBe extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Двухфактарная аўтэнтыфікацыя';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Блог $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsBg extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Двуфакторно удостоверяване';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Общност';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Блогът на $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsBn extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'টু-ফ্যাক্টর অথেন্টিকেশন';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param\'s Blog';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6657,4 +6657,12 @@ class AppLocalizationsBs extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Dvofaktorska provjera autentičnosti';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Zajednica';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog korisnika $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsCa extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Autenticació de dos factors';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Comunitat';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog de $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6750,4 +6750,12 @@ class AppLocalizationsCs extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Dvoufázové ověření';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Komunita';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog hráče $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsDa extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'To-faktor-godkendelse';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Fællesskab';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog - $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Zwei-Faktor-Authentifizierung';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Gemeinschaft';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog von $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsEl extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Έλεγχος ταυτότητας δύο παραγόντων';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Κοινότητα';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Ιστολόγιο του χρήστη $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6560,6 +6560,14 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Two-factor authentication';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param\'s Blog';
|
||||
}
|
||||
}
|
||||
|
||||
/// The translations for English, as used in the United States (`en_US`).
|
||||
@@ -13120,4 +13128,12 @@ class AppLocalizationsEnUs extends AppLocalizationsEn {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Two-factor authentication';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param\'s Blog';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsEo extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Dufaza aŭtentigo';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Komunumo';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blogo de $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsEs extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Autenticación en dos pasos';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Comunidad';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog de $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsEt extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Kaheastmeline autentimine';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Kasutaja $param blogi';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsEu extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Bi faktoreko autentifikazioa';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Komunitatea';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param erabiltzailearen Bloga';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsFa extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'راستینآزمایی دوعاملی';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'همدارگان';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'وبنوشتِ $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsFi extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Kaksivaiheinen tunnistautuminen';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Yhteisön blogit';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Käyttäjän $param blogi';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsFr extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Authentification à deux facteurs';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Communauté';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blogue de $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsGl extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Autenticación en dous pasos';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Comunidade';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'O Blog de $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsGsw extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Zwei-Faktor-Autentifizierig';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'G\'meinschaft';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param\'s Blog';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6748,4 +6748,12 @@ class AppLocalizationsHe extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'אימות דו־שלבי';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'הבלוג של $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6560,4 +6560,12 @@ class AppLocalizationsHi extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'दो-चरण प्रमाणीकरण';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param का ब्लॉग';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6654,4 +6654,12 @@ class AppLocalizationsHr extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Dvofaktorska provjera autentičnosti';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog korisnika $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsHu extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Kétlépcsős azonosítás';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Közösség';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param blogja';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsHy extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Երկգործոն նույնականացում';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param-ի բլոգ';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6473,4 +6473,12 @@ class AppLocalizationsId extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Autentikasi dua-langkah';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog dari $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsIt extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Autenticazione a due fattori';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Comunità';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog di $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6467,4 +6467,12 @@ class AppLocalizationsJa extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => '2 要素認証';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'コミュニティ';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param のブログ';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsKk extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Екісатылы өкіл-растау';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param блогі';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6467,4 +6467,12 @@ class AppLocalizationsKo extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => '2단계 인증';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => '커뮤니티';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param의 블로그';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6750,4 +6750,12 @@ class AppLocalizationsLt extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Dviejų lygių tapatumo nustatymas';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param Tinklaraštis';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6649,4 +6649,12 @@ class AppLocalizationsLv extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Divfaktoru autentifikācija';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Lietotāja $param blogs';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsMk extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Двофакторна автентикација';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Community';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param\'s Blog';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsNb extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Tofaktorautentisering';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Fellesskap';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Bloggen til $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsNl extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Tweestapsverificatie';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Gemeenschap';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog van $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6752,4 +6752,12 @@ class AppLocalizationsPl extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Uwierzytelnianie dwuskładnikowe';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Społeczność';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog gracza $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,6 +6562,14 @@ class AppLocalizationsPt extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Autenticação de dois fatores';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Comunidade';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog de $param';
|
||||
}
|
||||
}
|
||||
|
||||
/// The translations for Portuguese, as used in Brazil (`pt_BR`).
|
||||
@@ -13122,4 +13130,12 @@ class AppLocalizationsPtBr extends AppLocalizationsPt {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Autenticação de dois fatores';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Comunidade';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog do(a) $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6657,4 +6657,12 @@ class AppLocalizationsRo extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Autentificare în doi pași';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Comunitate';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog-ul lui $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6752,4 +6752,12 @@ class AppLocalizationsRu extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Двухфакторная аутентификация';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Сообщество';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Блог $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6752,4 +6752,12 @@ class AppLocalizationsSk extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Dvojstupňové overenie';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Komunita';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blog užívateľa $param';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6752,4 +6752,12 @@ class AppLocalizationsSl extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Dvojna avtentikacija';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Skupnost';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return '$param blog';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6562,4 +6562,12 @@ class AppLocalizationsSq extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get tfaTwoFactorAuth => 'Mirëfilltësim dyfaktorësh';
|
||||
|
||||
@override
|
||||
String get ublogCommunity => 'Bashkësi';
|
||||
|
||||
@override
|
||||
String ublogXBlog(String param) {
|
||||
return 'Blogu i $param';
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user