Skip to content

Commit 0418ec5

Browse files
committed
fix: Add auto rollout to docs
1 parent c854afe commit 0418ec5

File tree

3 files changed

+108
-218
lines changed

3 files changed

+108
-218
lines changed

adminforth/documentation/docs/tutorial/07-Plugins/10-i18n.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ export default {
236236
plugins: [
237237
new I18nPlugin({
238238
// Support both basic and regional language codes
239-
supportedLanguages: ['en', 'en-GB', 'en-US', 'pt', 'pt-BR', 'fr', 'fr-CA'],
239+
supportedLanguages: ['en', 'en-GB', 'en-US', 'pt', 'pt-BR', 'fr'],
240240

241241
// Map language codes to database field names
242242
translationFieldNames: {
@@ -246,7 +246,6 @@ export default {
246246
pt: 'pt_string',
247247
'pt-BR': 'ptBR_string',
248248
fr: 'fr_string',
249-
'fr-CA': 'frCA_string',
250249
},
251250

252251
categoryFieldName: 'category',
@@ -284,7 +283,6 @@ model translations {
284283
enGB_string String? // British English
285284
enUS_string String? // American English
286285
ptBR_string String? // Brazilian Portuguese
287-
frCA_string String? // Canadian French
288286

289287
category String
290288
source String?

0 commit comments

Comments
 (0)