Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
l10n(Create/OpenSite): Change key savePath to websitePath
Browse files Browse the repository at this point in the history
  • Loading branch information
iakdis committed Mar 26, 2023
1 parent a4c14b6 commit 010f488
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assets/l10n/app_de.arb
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
"ssg": { "type": "String" }
}
},
"savePath": "Speicherpfad",
"websitePath": "Pfad der Webseite",
"siteName": "Name der Webseite",
"finish": "Fertigstellen",
"createWebsiteNamed": "{ssg} Webseite erstellen namens:\n",
Expand Down
2 changes: 1 addition & 1 deletion assets/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
"ssg": { "type": "String" }
}
},
"savePath": "Save path",
"websitePath": "Website path",
"siteName": "Website name",
"finish": "Finish",
"createWebsiteNamed": "Create {ssg} website named:\n",
Expand Down
2 changes: 1 addition & 1 deletion assets/l10n/app_zh.arb
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@
"ssg": { "type": "String" }
}
},
"savePath": "保存路径",
"websitePath": "网站路径",
"siteName": "网站名称",
"finish": "完成",
"createWebsiteNamed": "创建{ssg}网站,命名为:\n",
Expand Down
2 changes: 1 addition & 1 deletion lib/src/pages/create_website.dart
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ class _CreateWebsiteState extends State<CreateWebsite> {
: null,
errorMaxLines: 5,
border: const OutlineInputBorder(),
labelText: Localization.appLocalizations().savePath,
labelText: Localization.appLocalizations().websitePath,
isDense: true,
hintText: Platform.isWindows
? 'C:\\Documents\\Websites'
Expand Down
2 changes: 1 addition & 1 deletion lib/src/pages/open_website.dart
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class _OpenWebsiteState extends State<OpenWebsite> {
? Localization.appLocalizations().cantBeEmpty
: null,
border: const OutlineInputBorder(),
labelText: Localization.appLocalizations().savePath,
labelText: Localization.appLocalizations().websitePath,
isDense: true,
hintText: Platform.isWindows
? 'C:\\Documents\\Projects\\my-website'
Expand Down

0 comments on commit 010f488

Please sign in to comment.