mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-05-25 17:02:12 +00:00
add translation
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
This commit is contained in:
parent
0204a41d43
commit
df974cd9f7
5 changed files with 17 additions and 4 deletions
|
|
@ -3235,6 +3235,12 @@ abstract class AppLocalizations {
|
|||
/// In en, this message translates to:
|
||||
/// **'Zero ads. Total privacy.'**
|
||||
String get subscriptionPledgeSubtitle;
|
||||
|
||||
/// No description provided for @dragToZoom.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Drag to Zoom'**
|
||||
String get dragToZoom;
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate
|
||||
|
|
|
|||
|
|
@ -1820,4 +1820,7 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||
|
||||
@override
|
||||
String get subscriptionPledgeSubtitle => 'Keine Werbung. Volle Privatsphäre.';
|
||||
|
||||
@override
|
||||
String get dragToZoom => 'Zum Zoomen ziehen';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1804,4 +1804,7 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
|
||||
@override
|
||||
String get subscriptionPledgeSubtitle => 'Zero ads. Total privacy.';
|
||||
|
||||
@override
|
||||
String get dragToZoom => 'Drag to Zoom';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 8660b9b11721adda59e387a129f9017bb9e72c67
|
||||
Subproject commit a8c5a355abf95578f1bdbf6a71077c5078b9dd93
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
||||
import 'package:twonly/src/utils/misc.dart';
|
||||
|
||||
class ZoomTutorialOverlay extends StatefulWidget {
|
||||
const ZoomTutorialOverlay({
|
||||
|
|
@ -107,9 +108,9 @@ class _ZoomTutorialOverlayState extends State<ZoomTutorialOverlay>
|
|||
color: Colors.black,
|
||||
borderRadius: BorderRadius.circular(16),
|
||||
),
|
||||
child: const Text(
|
||||
'Drag to Zoom',
|
||||
style: TextStyle(
|
||||
child: Text(
|
||||
context.lang.dragToZoom,
|
||||
style: const TextStyle(
|
||||
color: Colors.white,
|
||||
fontSize: 12,
|
||||
fontWeight: FontWeight.w700,
|
||||
|
|
|
|||
Loading…
Reference in a new issue