-
Notifications
You must be signed in to change notification settings - Fork 46
Fix: updated refresh message format and added missing UI labels #333
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
09d8e97
49ed59e
27b472e
df5b024
2975c97
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -527,6 +527,9 @@ class AppLocalizationsDe extends AppLocalizations { | |
| @override | ||
| String get library => 'Library'; | ||
|
|
||
| @override | ||
| String get text => 'Text'; | ||
|
Comment on lines
+530
to
+531
|
||
|
|
||
| @override | ||
| String get templates => 'Templates'; | ||
|
|
||
|
|
@@ -1282,4 +1285,27 @@ class AppLocalizationsDe extends AppLocalizations { | |
|
|
||
| @override | ||
| String get chooseImageFromGallery => 'Choose image from gallery'; | ||
|
|
||
| @override | ||
| String get processingImages => 'Processing images...'; | ||
|
|
||
| @override | ||
| String get refreshModeInfo => 'Refresh Mode Information'; | ||
|
Comment on lines
+1289
to
+1293
|
||
|
|
||
| @override | ||
| String get fullRefreshInfo => 'Full Refresh'; | ||
|
|
||
| @override | ||
| String get fullRefreshDescription => | ||
| 'Completely refreshes the entire display by clearing all pixels and redrawing the image. This provides the best image quality and contrast but takes longer to complete.'; | ||
|
|
||
| @override | ||
| String get partialRefreshInfo => 'Partial Refresh (Waveforms)'; | ||
|
|
||
| @override | ||
| String get partialRefreshDescription => | ||
| 'Updates only the changed pixels using optimized waveforms. This is faster than full refresh but may result in ghosting or reduced contrast over time.'; | ||
|
|
||
| @override | ||
| String get longPressForInfo => 'Long press for more information'; | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -527,6 +527,9 @@ class AppLocalizationsEn extends AppLocalizations { | |
| @override | ||
| String get library => 'Library'; | ||
|
|
||
| @override | ||
| String get text => 'Text'; | ||
|
Comment on lines
+530
to
+531
|
||
|
|
||
| @override | ||
| String get templates => 'Templates'; | ||
|
|
||
|
|
@@ -1282,4 +1285,27 @@ class AppLocalizationsEn extends AppLocalizations { | |
|
|
||
| @override | ||
| String get chooseImageFromGallery => 'Choose image from gallery'; | ||
|
|
||
| @override | ||
| String get processingImages => 'Processing images...'; | ||
|
|
||
| @override | ||
| String get refreshModeInfo => 'Refresh Mode Information'; | ||
|
|
||
| @override | ||
| String get fullRefreshInfo => 'Full Refresh'; | ||
|
|
||
| @override | ||
| String get fullRefreshDescription => | ||
| 'Completely refreshes the entire display by clearing all pixels and redrawing the image. This provides the best image quality and contrast but takes longer to complete.'; | ||
|
|
||
| @override | ||
| String get partialRefreshInfo => 'Partial Refresh (Waveforms)'; | ||
|
|
||
| @override | ||
| String get partialRefreshDescription => | ||
| 'Updates only the changed pixels using optimized waveforms. This is faster than full refresh but may result in ghosting or reduced contrast over time.'; | ||
|
|
||
| @override | ||
| String get longPressForInfo => 'Long press for more information'; | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The newly added
textstring lacks an accompanying metadata entry (e.g.,@text) with a description/context. Adding metadata helps translators understand where/how the label is used (button label vs. tab title, etc.) and reduces the chance of incorrect translations.