Skip to content

Commit 6d737a5

Browse files
authored
Fix 1 word on Spanish translation and add French translation (GameTec-live#175)
1 parent 9e9313d commit 6d737a5

File tree

9 files changed

+1089
-903
lines changed

9 files changed

+1089
-903
lines changed

chameleonultragui/lib/gui/page/connect.dart

+6-5
Original file line numberDiff line numberDiff line change
@@ -71,19 +71,20 @@ class ConnectPage extends StatelessWidget {
7171
context: context,
7272
builder: (BuildContext context) =>
7373
AlertDialog(
74-
title: Text(
75-
localizations.chamaleon_is_dfu),
74+
title:
75+
Text(localizations.chameleon_is_dfu),
7676
content: Text(
7777
localizations.firmware_is_corrupted),
7878
actions: <Widget>[
7979
TextButton(
80-
onPressed: () =>
81-
Navigator.pop(context, localizations.cancel),
80+
onPressed: () => Navigator.pop(
81+
context, localizations.cancel),
8282
child: Text(localizations.cancel),
8383
),
8484
TextButton(
8585
onPressed: () async {
86-
Navigator.pop(context, localizations.flash);
86+
Navigator.pop(
87+
context, localizations.flash);
8788
appState.changesMade();
8889
Uint8List applicationDat,
8990
applicationBin;

chameleonultragui/lib/gui/page/debug.dart

+6-3
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ class DebugPage extends StatelessWidget {
4949
Text('${localizations.platform}: ${Platform.operatingSystem}'),
5050
Text('${localizations.android}: ${appState.onAndroid}'),
5151
Text('${localizations.serial_protocol}: ${appState.connector}'),
52-
Text('${localizations.chameleon_connected}: ${appState.connector.connected}'),
53-
Text('${localizations.chameleon_device_type}: ${appState.connector.device}'),
52+
Text(
53+
'${localizations.chameleon_connected}: ${appState.connector.connected}'),
54+
Text(
55+
'${localizations.chameleon_device_type}: ${appState.connector.device}'),
5456
ElevatedButton(
5557
onPressed: () async {
5658
await appState.communicator!.setReaderDeviceMode(true);
@@ -262,7 +264,8 @@ class DebugPage extends StatelessWidget {
262264
await appState.communicator!.factoryReset();
263265
},
264266
child: Column(children: [
265-
Text('✅ ${localizations.safe_option}: ${localizations.restart_chamaleon} ✅'),
267+
Text(
268+
'✅ ${localizations.safe_option}: ${localizations.restart_chameleon} ✅'),
266269
]),
267270
),
268271
],

0 commit comments

Comments
 (0)