Localize app_name
This commit is contained in:
parent
07d28414be
commit
d40859c5d8
4 changed files with 14 additions and 2 deletions
|
|
@ -16,7 +16,7 @@
|
|||
FlutterApplication and put your custom class here. -->
|
||||
<application
|
||||
android:name="io.flutter.app.FlutterApplication"
|
||||
android:label="All Against The Fire!"
|
||||
android:label="@string/app_name"
|
||||
android:icon="@mipmap/launch_image">
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
defined in @style/LaunchTheme). -->
|
||||
<meta-data
|
||||
android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
|
||||
android:value="true"/>
|
||||
android:value="true" />
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<category android:name="android.intent.category.LAUNCHER"/>
|
||||
|
|
|
|||
4
android/app/src/main/res/values-es/strings.xml
Normal file
4
android/app/src/main/res/values-es/strings.xml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">¡Tod@s contra el Fuego!</string>
|
||||
</resources>
|
||||
4
android/app/src/main/res/values-gl/strings.xml
Normal file
4
android/app/src/main/res/values-gl/strings.xml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">Tod@s contra o Lume!</string>
|
||||
</resources>
|
||||
4
android/app/src/main/res/values/strings.xml
Normal file
4
android/app/src/main/res/values/strings.xml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">All Against The Fire!</string>
|
||||
</resources>
|
||||
Loading…
Add table
Add a link
Reference in a new issue