mirror of
https://github.com/AetherDroid/android_device_samsung_universal7570-common.git
synced 2025-09-04 23:47:47 -04:00
universal7870: import AdvancedDisplay app
This commit is contained in:
parent
108406065d
commit
02484ab73b
299 changed files with 7852 additions and 0 deletions
33
apps/AdvancedDisplay/Android.mk
Executable file
33
apps/AdvancedDisplay/Android.mk
Executable file
|
@ -0,0 +1,33 @@
|
|||
LOCAL_PATH:= $(call my-dir)
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE_TAGS := optional
|
||||
|
||||
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
||||
|
||||
LOCAL_PACKAGE_NAME := AdvancedDisplay
|
||||
LOCAL_PRIVATE_PLATFORM_APIS := true
|
||||
LOCAL_CERTIFICATE := platform
|
||||
|
||||
LOCAL_USE_AAPT2 := true
|
||||
|
||||
LOCAL_STATIC_ANDROID_LIBRARIES := \
|
||||
androidx.appcompat_appcompat \
|
||||
androidx.preference_preference \
|
||||
androidx.recyclerview_recyclerview \
|
||||
androidx.legacy_legacy-preference-v14 \
|
||||
androidx.legacy_legacy-support-v4 \
|
||||
androidx.legacy_legacy-support-v13
|
||||
|
||||
LOCAL_STATIC_JAVA_LIBRARIES := \
|
||||
org.lineageos.platform.internal
|
||||
|
||||
LOCAL_RESOURCE_DIR := \
|
||||
$(LOCAL_PATH)/res \
|
||||
$(TOP)/packages/resources/devicesettings/res
|
||||
|
||||
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
||||
|
||||
include $(BUILD_PACKAGE)
|
||||
|
||||
include $(call all-makefiles-under,$(LOCAL_PATH))
|
32
apps/AdvancedDisplay/AndroidManifest.xml
Executable file
32
apps/AdvancedDisplay/AndroidManifest.xml
Executable file
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.lineageos.settings.device"
|
||||
android:sharedUserId="android.uid.system">
|
||||
|
||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||
|
||||
<application
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/Theme.Main">
|
||||
<receiver android:name="org.lineageos.settings.device.BootCompletedReceiver">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<activity
|
||||
android:name=".AdvancedDisplayActivity"
|
||||
android:label="@string/app_name">
|
||||
<intent-filter>
|
||||
<action android:name="com.android.settings.action.EXTRA_SETTINGS" />
|
||||
</intent-filter>
|
||||
<meta-data
|
||||
android:name="com.android.settings.category"
|
||||
android:value="com.android.settings.category.ia.display" />
|
||||
<meta-data
|
||||
android:name="com.android.settings.summary"
|
||||
android:value="@string/summary_empty" />
|
||||
</activity>
|
||||
</application>
|
||||
</manifest>
|
5
apps/AdvancedDisplay/proguard.flags
Executable file
5
apps/AdvancedDisplay/proguard.flags
Executable file
|
@ -0,0 +1,5 @@
|
|||
-keepclasseswithmembers class * {
|
||||
public <init>(android.content.Context, android.util.AttributeSet);
|
||||
}
|
||||
|
||||
-keep class ** extends android.support.v14.preference.PreferenceFragment
|
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2016 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License"
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:pathData="M0 0h24v24H0z" />
|
||||
<path
|
||||
android:fillColor="#000000"
|
||||
android:pathData="M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8
|
||||
6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1 .9 2 2 2h18c1.1 0 2-.9
|
||||
2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" />
|
||||
</vector>
|
5
apps/AdvancedDisplay/res/layout/framelayout.xml
Executable file
5
apps/AdvancedDisplay/res/layout/framelayout.xml
Executable file
|
@ -0,0 +1,5 @@
|
|||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/frameLayout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
|
19
apps/AdvancedDisplay/res/values-af/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-af/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
30
apps/AdvancedDisplay/res/values-af/strings.xml
Normal file
30
apps/AdvancedDisplay/res/values-af/strings.xml
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Gevorderde skerm</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Skerm</string>
|
||||
<string name="screen_colors_title">Kleure</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Scenario</string>
|
||||
<string name="mdnie_scenario_summary_head">Stel die mDNIe scenario</string>
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-am/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-am/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-am/strings.xml
Executable file
25
apps/AdvancedDisplay/res/values-am/strings.xml
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-ar/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-ar/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-ar/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-ar/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">عرض متقدم</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">الشاشة</string>
|
||||
<string name="screen_colors_title">الألوان</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">السيناريو</string>
|
||||
<string name="mdnie_scenario_summary_head">تعيين السيناريو mDNIe</string>
|
||||
<string name="mdnie_accessibility_title_head">وضع إمكانية الوصول</string>
|
||||
<string name="mdnie_accessibility_summary_head">قم بتعيين وضع إمكانية الوصول mDNIe</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (الافتراضي)</string>
|
||||
<string name="mdnie_scenario_video">فيديو</string>
|
||||
<string name="mdnie_scenario_video_warm">فيديو دافئ</string>
|
||||
<string name="mdnie_scenario_video_cold">فيديو بارد</string>
|
||||
<string name="mdnie_scenario_camera">الكاميرا</string>
|
||||
<string name="mdnie_scenario_navigation">التنقل</string>
|
||||
<string name="mdnie_scenario_gallery">المعرض</string>
|
||||
<string name="mdnie_scenario_vt">مكالمة فيديو</string>
|
||||
<string name="mdnie_scenario_browser">المتصفح</string>
|
||||
<string name="mdnie_scenario_ebook">كتاب الكتروني</string>
|
||||
<string name="mdnie_scenario_email">البريد الإلكتروني</string>
|
||||
<string name="mdnie_scenario_tdmb">التلفزيون الرقمي</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">عادي</string>
|
||||
<string name="mdnie_accessibility_inverse">معكوس</string>
|
||||
<string name="mdnie_accessibility_color_blind">عمى الألوان</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">حجب الشاشة</string>
|
||||
<string name="mdnie_accessibility_grayscale">رمادي</string>
|
||||
<string name="mdnie_accessibility_gray_negative">رمادي معكوس</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-as-rIN/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-as-rIN/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
30
apps/AdvancedDisplay/res/values-as-rIN/strings.xml
Executable file
30
apps/AdvancedDisplay/res/values-as-rIN/strings.xml
Executable file
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">উন্নত প্রদর্শন</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">স্ক্ৰীণ</string>
|
||||
<string name="screen_colors_title">ৰংসমূহ</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">দৃশ্যপট</string>
|
||||
<string name="mdnie_scenario_summary_head">mDNIe দৃশ্যপট ছেট কৰক</string>
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
25
apps/AdvancedDisplay/res/values-as/strings.xml
Normal file
25
apps/AdvancedDisplay/res/values-as/strings.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">উন্নত প্রদর্শন</string>
|
||||
<string name="category_screen_title">স্ক্ৰীণ</string>
|
||||
<string name="screen_colors_title">ৰংসমূহ</string>
|
||||
<string name="mdnie_scenario_title_head">দৃশ্যপট</string>
|
||||
<string name="mdnie_scenario_summary_head">mDNIe দৃশ্যপট ছেট কৰক</string>
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-ast-rES/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-ast-rES/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-ast-rES/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-ast-rES/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Visualización avanzada</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Pantalla</string>
|
||||
<string name="screen_colors_title">Colores</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Escenariu</string>
|
||||
<string name="mdnie_scenario_summary_head">Afita l\'escenariu mDNIe</string>
|
||||
<string name="mdnie_accessibility_title_head">Mou d\'accesibilidá</string>
|
||||
<string name="mdnie_accessibility_summary_head">Afitar el mou d\'accesibilidá mDNIe</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (por defeutu)</string>
|
||||
<string name="mdnie_scenario_video">Videu</string>
|
||||
<string name="mdnie_scenario_video_warm">Videu caldiu</string>
|
||||
<string name="mdnie_scenario_video_cold">Videu fríu</string>
|
||||
<string name="mdnie_scenario_camera">Cámara</string>
|
||||
<string name="mdnie_scenario_navigation">Navegación</string>
|
||||
<string name="mdnie_scenario_gallery">Galería</string>
|
||||
<string name="mdnie_scenario_vt">Videollamada</string>
|
||||
<string name="mdnie_scenario_browser">Restolador</string>
|
||||
<string name="mdnie_scenario_ebook">Llibru electrónicu</string>
|
||||
<string name="mdnie_scenario_email">Corréu electrónicu</string>
|
||||
<string name="mdnie_scenario_tdmb">Televisión dixital</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Normal</string>
|
||||
<string name="mdnie_accessibility_inverse">Invertíu</string>
|
||||
<string name="mdnie_accessibility_color_blind">Daltónicu</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Cortina de pantalla</string>
|
||||
<string name="mdnie_accessibility_grayscale">Buxu</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Gris invertíu</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
34
apps/AdvancedDisplay/res/values-az-rAZ/arrays.xml
Normal file
34
apps/AdvancedDisplay/res/values-az-rAZ/arrays.xml
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string-array name="mdnie_scenario_entries">
|
||||
<item>LineageOS (default)</item>
|
||||
<item>İstifadәçi İnterfeysi</item>
|
||||
<item>Video</item>
|
||||
<item>Video - isti</item>
|
||||
<item>Video - soyuq</item>
|
||||
<item>Kamera</item>
|
||||
<item>Hərəkət</item>
|
||||
<item>Qalereya</item>
|
||||
<item>VT</item>
|
||||
</string-array>
|
||||
<string-array name="mdnie_negative_entries">
|
||||
<item>Normal</item>
|
||||
<item>Tərsinə çevrilmiş</item>
|
||||
</string-array>
|
||||
</resources>
|
28
apps/AdvancedDisplay/res/values-az-rAZ/strings.xml
Normal file
28
apps/AdvancedDisplay/res/values-az-rAZ/strings.xml
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Qabaqcıl ekran</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Ekran</string>
|
||||
<string name="screen_colors_title">Rənglər</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Ekran rejimi</string>
|
||||
<string name="mdnie_scenario_summary_head">mDNle ssenarisini tənzimlə</string>
|
||||
<string name="mdnie_negative_title_head">Neqativ rejim</string>
|
||||
<string name="mdnie_negative_summary_head">Tərs rәnglәri aç/bağla</string>
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-az/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-az/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
30
apps/AdvancedDisplay/res/values-az/strings.xml
Normal file
30
apps/AdvancedDisplay/res/values-az/strings.xml
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Qabaqcıl ekran</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Ekran</string>
|
||||
<string name="screen_colors_title">Rənglər</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Ekran rejimi</string>
|
||||
<string name="mdnie_scenario_summary_head">mDNle ssenarisini tənzimlə</string>
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-b+sr+Latn/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-b+sr+Latn/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-b+sr+Latn/strings.xml
Executable file
25
apps/AdvancedDisplay/res/values-b+sr+Latn/strings.xml
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
34
apps/AdvancedDisplay/res/values-be-rBY/arrays.xml
Normal file
34
apps/AdvancedDisplay/res/values-be-rBY/arrays.xml
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string-array name="mdnie_scenario_entries">
|
||||
<item>LineageOS (default)</item>
|
||||
<item>Рэжым UIitem</item>
|
||||
<item>Фільм</item>
|
||||
<item>Фільм — цёплыя таны</item>
|
||||
<item>Фільм — лядоўні тону</item>
|
||||
<item>Камера</item>
|
||||
<item>Панэль навігацыі</item>
|
||||
<item>Галерэя</item>
|
||||
<item>VT</item>
|
||||
</string-array>
|
||||
<string-array name="mdnie_negative_entries">
|
||||
<item>Звычайны</item>
|
||||
<item>Інверсія</item>
|
||||
</string-array>
|
||||
</resources>
|
28
apps/AdvancedDisplay/res/values-be-rBY/strings.xml
Normal file
28
apps/AdvancedDisplay/res/values-be-rBY/strings.xml
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Налады экрана</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Экран</string>
|
||||
<string name="screen_colors_title">Колеры</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Сцэнар</string>
|
||||
<string name="mdnie_scenario_summary_head">Усталёўка сцэнара mDNIe</string>
|
||||
<string name="mdnie_negative_title_head">Негатыў</string>
|
||||
<string name="mdnie_negative_summary_head">Укл./выкл. інверсіі колераў</string>
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-be/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-be/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
30
apps/AdvancedDisplay/res/values-be/strings.xml
Normal file
30
apps/AdvancedDisplay/res/values-be/strings.xml
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Налады экрана</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Экран</string>
|
||||
<string name="screen_colors_title">Колеры</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Сцэнар</string>
|
||||
<string name="mdnie_scenario_summary_head">Усталёўка сцэнара mDNIe</string>
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-bg/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-bg/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-bg/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-bg/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Настройки на дисплея</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Екран</string>
|
||||
<string name="screen_colors_title">Цветове</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Сценарий</string>
|
||||
<string name="mdnie_scenario_summary_head">Избор на сценария mDNIe</string>
|
||||
<string name="mdnie_accessibility_title_head">Режим на достъп</string>
|
||||
<string name="mdnie_accessibility_summary_head">Задайте режим на достъп за mDNIe</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (по подразбиране)</string>
|
||||
<string name="mdnie_scenario_video">Видео</string>
|
||||
<string name="mdnie_scenario_video_warm">Видео топло</string>
|
||||
<string name="mdnie_scenario_video_cold">Видео студено</string>
|
||||
<string name="mdnie_scenario_camera">Камера</string>
|
||||
<string name="mdnie_scenario_navigation">Навигация</string>
|
||||
<string name="mdnie_scenario_gallery">Галерия</string>
|
||||
<string name="mdnie_scenario_vt">Видео разговор</string>
|
||||
<string name="mdnie_scenario_browser">Браузър</string>
|
||||
<string name="mdnie_scenario_ebook">Е-книга</string>
|
||||
<string name="mdnie_scenario_email">Имейл</string>
|
||||
<string name="mdnie_scenario_tdmb">Цифрова телевизия</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Нормален</string>
|
||||
<string name="mdnie_accessibility_inverse">Обърнат</string>
|
||||
<string name="mdnie_accessibility_color_blind">За далтонисти</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Екранна завеса</string>
|
||||
<string name="mdnie_accessibility_grayscale">Сив</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Обърнат сив</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
18
apps/AdvancedDisplay/res/values-bn-rBD/arrays.xml
Normal file
18
apps/AdvancedDisplay/res/values-bn-rBD/arrays.xml
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
21
apps/AdvancedDisplay/res/values-bn-rBD/strings.xml
Normal file
21
apps/AdvancedDisplay/res/values-bn-rBD/strings.xml
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-bn/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-bn/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-bn/strings.xml
Executable file
25
apps/AdvancedDisplay/res/values-bn/strings.xml
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-br-rFR/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-br-rFR/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-br-rFR/strings.xml
Executable file
25
apps/AdvancedDisplay/res/values-br-rFR/strings.xml
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
18
apps/AdvancedDisplay/res/values-bs-rBA/arrays.xml
Normal file
18
apps/AdvancedDisplay/res/values-bs-rBA/arrays.xml
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
21
apps/AdvancedDisplay/res/values-bs-rBA/strings.xml
Normal file
21
apps/AdvancedDisplay/res/values-bs-rBA/strings.xml
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-bs/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-bs/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-bs/strings.xml
Executable file
25
apps/AdvancedDisplay/res/values-bs/strings.xml
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-ca/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-ca/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-ca/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-ca/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Pantalla avançada</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Pantalla</string>
|
||||
<string name="screen_colors_title">Colors</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Escenari</string>
|
||||
<string name="mdnie_scenario_summary_head">Estableix l\'escenari de mDNIe</string>
|
||||
<string name="mdnie_accessibility_title_head">Mode d\'accessibilitat</string>
|
||||
<string name="mdnie_accessibility_summary_head">Estableix el mode d\'accessibilitat mDNIe</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (per defecte)</string>
|
||||
<string name="mdnie_scenario_video">Vídeo</string>
|
||||
<string name="mdnie_scenario_video_warm">Vídeo càlid</string>
|
||||
<string name="mdnie_scenario_video_cold">Vídeo fred</string>
|
||||
<string name="mdnie_scenario_camera">Càmera</string>
|
||||
<string name="mdnie_scenario_navigation">Navegació</string>
|
||||
<string name="mdnie_scenario_gallery">Galeria</string>
|
||||
<string name="mdnie_scenario_vt">Vídeotrucada</string>
|
||||
<string name="mdnie_scenario_browser">Navegador</string>
|
||||
<string name="mdnie_scenario_ebook">eBook</string>
|
||||
<string name="mdnie_scenario_email">Correu</string>
|
||||
<string name="mdnie_scenario_tdmb">Televisió digital</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Normal</string>
|
||||
<string name="mdnie_accessibility_inverse">Invertit</string>
|
||||
<string name="mdnie_accessibility_color_blind">Daltònic</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Cortina de pantalla</string>
|
||||
<string name="mdnie_accessibility_grayscale">Gris</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Gris invertit</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-cs/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-cs/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-cs/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-cs/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Rozšířené zobrazení</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Obrazovka</string>
|
||||
<string name="screen_colors_title">Barvy</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Scénář</string>
|
||||
<string name="mdnie_scenario_summary_head">Nastavit scénář pro mDNIe</string>
|
||||
<string name="mdnie_accessibility_title_head">Režim usnadnění</string>
|
||||
<string name="mdnie_accessibility_summary_head">Nastavení režimu usnadnění mDNIe</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (výchozí)</string>
|
||||
<string name="mdnie_scenario_video">Kamera</string>
|
||||
<string name="mdnie_scenario_video_warm">Režim teplých barev</string>
|
||||
<string name="mdnie_scenario_video_cold">Režim studených barev</string>
|
||||
<string name="mdnie_scenario_camera">Fotoaparát</string>
|
||||
<string name="mdnie_scenario_navigation">Navigace</string>
|
||||
<string name="mdnie_scenario_gallery">Galerie</string>
|
||||
<string name="mdnie_scenario_vt">Video hovor</string>
|
||||
<string name="mdnie_scenario_browser">Prohlížeč</string>
|
||||
<string name="mdnie_scenario_ebook">eBook</string>
|
||||
<string name="mdnie_scenario_email">E-mail</string>
|
||||
<string name="mdnie_scenario_tdmb">Digitální televize</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Normální</string>
|
||||
<string name="mdnie_accessibility_inverse">Inverzní</string>
|
||||
<string name="mdnie_accessibility_color_blind">Barvoslepost</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Záclony v obraze</string>
|
||||
<string name="mdnie_accessibility_grayscale">Šedá</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Invertovaná šedá</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
18
apps/AdvancedDisplay/res/values-csb-rPL/arrays.xml
Normal file
18
apps/AdvancedDisplay/res/values-csb-rPL/arrays.xml
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
21
apps/AdvancedDisplay/res/values-csb-rPL/strings.xml
Normal file
21
apps/AdvancedDisplay/res/values-csb-rPL/strings.xml
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-csb/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-csb/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-csb/strings.xml
Executable file
25
apps/AdvancedDisplay/res/values-csb/strings.xml
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-cy/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-cy/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
46
apps/AdvancedDisplay/res/values-cy/strings.xml
Normal file
46
apps/AdvancedDisplay/res/values-cy/strings.xml
Normal file
|
@ -0,0 +1,46 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Dangosydd uwch</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Sgrin</string>
|
||||
<string name="screen_colors_title">Lliwiau</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_accessibility_title_head">Modd hygyrchedd</string>
|
||||
<string name="mdnie_accessibility_summary_head">Gosod modd hygyrchedd mDNIe</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (rhagosodiad)</string>
|
||||
<string name="mdnie_scenario_video">Fideo</string>
|
||||
<string name="mdnie_scenario_video_warm">Fideo cynnes</string>
|
||||
<string name="mdnie_scenario_video_cold">Fideo oer</string>
|
||||
<string name="mdnie_scenario_camera">Camera</string>
|
||||
<string name="mdnie_scenario_navigation">Llywio</string>
|
||||
<string name="mdnie_scenario_gallery">Oriel</string>
|
||||
<string name="mdnie_scenario_vt">Galwad fideo</string>
|
||||
<string name="mdnie_scenario_browser">Porwr</string>
|
||||
<string name="mdnie_scenario_ebook">eLyfr</string>
|
||||
<string name="mdnie_scenario_email">Ebost</string>
|
||||
<string name="mdnie_scenario_tdmb">Teledu digidol</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Arferol</string>
|
||||
<string name="mdnie_accessibility_inverse">Wedi\'i wrthdroi</string>
|
||||
<string name="mdnie_accessibility_grayscale">Llwyd</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Llwyd wedi\'i wrthdroi</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-da/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-da/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
30
apps/AdvancedDisplay/res/values-da/strings.xml
Normal file
30
apps/AdvancedDisplay/res/values-da/strings.xml
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Avancerede skærmindstillinger</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Skærm</string>
|
||||
<string name="screen_colors_title">Farver</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Scenarie</string>
|
||||
<string name="mdnie_scenario_summary_head">Angiv mDNIe-scenariet</string>
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-de/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-de/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-de/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-de/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Erweiterte Anzeige-Einstellungen</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Bildschirm</string>
|
||||
<string name="screen_colors_title">Farben</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Szenario</string>
|
||||
<string name="mdnie_scenario_summary_head">Wählen Sie das mDNIe-Szenario</string>
|
||||
<string name="mdnie_accessibility_title_head">Barrierefreier Modus</string>
|
||||
<string name="mdnie_accessibility_summary_head">mDNIe-Modus festlegen</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (Standard)</string>
|
||||
<string name="mdnie_scenario_video">Video</string>
|
||||
<string name="mdnie_scenario_video_warm">Videomodus (warm)</string>
|
||||
<string name="mdnie_scenario_video_cold">Videomodus (kalt)</string>
|
||||
<string name="mdnie_scenario_camera">Kamera</string>
|
||||
<string name="mdnie_scenario_navigation">Navigation</string>
|
||||
<string name="mdnie_scenario_gallery">Galerie</string>
|
||||
<string name="mdnie_scenario_vt">Videoanruf</string>
|
||||
<string name="mdnie_scenario_browser">Browser</string>
|
||||
<string name="mdnie_scenario_ebook">E-Book</string>
|
||||
<string name="mdnie_scenario_email">E-Mail</string>
|
||||
<string name="mdnie_scenario_tdmb">Digitales Fernsehen</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Normal</string>
|
||||
<string name="mdnie_accessibility_inverse">Invertiert</string>
|
||||
<string name="mdnie_accessibility_color_blind">Farbenblind</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Bildschirmvorhang</string>
|
||||
<string name="mdnie_accessibility_grayscale">Grau</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Grau invertiert</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-el/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-el/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-el/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-el/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Ρυθμίσεις οθόνης για προχωρημένους</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Οθόνη</string>
|
||||
<string name="screen_colors_title">Χρώματα</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Σενάριο</string>
|
||||
<string name="mdnie_scenario_summary_head">Ορίστε το σενάριο mDNIe</string>
|
||||
<string name="mdnie_accessibility_title_head">Λειτουργία προσβασιμότητας</string>
|
||||
<string name="mdnie_accessibility_summary_head">Ορίστε τη λειτουργία προσβασιμότητας mDNIe</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (προεπιλογή)</string>
|
||||
<string name="mdnie_scenario_video">Βίντεο</string>
|
||||
<string name="mdnie_scenario_video_warm">Θερμό βίντεο</string>
|
||||
<string name="mdnie_scenario_video_cold">Ψυχρό βίντεο</string>
|
||||
<string name="mdnie_scenario_camera">Φωτογραφική μηχανή</string>
|
||||
<string name="mdnie_scenario_navigation">Πλοήγηση</string>
|
||||
<string name="mdnie_scenario_gallery">Συλλογή</string>
|
||||
<string name="mdnie_scenario_vt">Βιντεοκλήση</string>
|
||||
<string name="mdnie_scenario_browser">Περιηγητής</string>
|
||||
<string name="mdnie_scenario_ebook">eBook</string>
|
||||
<string name="mdnie_scenario_email">E-mail</string>
|
||||
<string name="mdnie_scenario_tdmb">Ψηφιακή τηλεόραση</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Κανονική</string>
|
||||
<string name="mdnie_accessibility_inverse">Ανεστραμμένη</string>
|
||||
<string name="mdnie_accessibility_color_blind">Αχρωματοψία</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Κουρτίνα οθόνης</string>
|
||||
<string name="mdnie_accessibility_grayscale">Γκρί</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Γκρι ανεστραμμένη</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-en-rAU/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-en-rAU/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-en-rAU/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-en-rAU/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Advanced display</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Screen</string>
|
||||
<string name="screen_colors_title">Colours</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Scenario</string>
|
||||
<string name="mdnie_scenario_summary_head">Set the mDNIe scenario</string>
|
||||
<string name="mdnie_accessibility_title_head">Accessibility mode</string>
|
||||
<string name="mdnie_accessibility_summary_head">Set the mDNIe accessibility mode</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (default)</string>
|
||||
<string name="mdnie_scenario_video">Video</string>
|
||||
<string name="mdnie_scenario_video_warm">Video warm</string>
|
||||
<string name="mdnie_scenario_video_cold">Video cold</string>
|
||||
<string name="mdnie_scenario_camera">Camera</string>
|
||||
<string name="mdnie_scenario_navigation">Navigation</string>
|
||||
<string name="mdnie_scenario_gallery">Gallery</string>
|
||||
<string name="mdnie_scenario_vt">Video call</string>
|
||||
<string name="mdnie_scenario_browser">Browser</string>
|
||||
<string name="mdnie_scenario_ebook">eBook</string>
|
||||
<string name="mdnie_scenario_email">E-mail</string>
|
||||
<string name="mdnie_scenario_tdmb">Digital television</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Normal</string>
|
||||
<string name="mdnie_accessibility_inverse">Inverted</string>
|
||||
<string name="mdnie_accessibility_color_blind">Colour blind</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Screen curtain</string>
|
||||
<string name="mdnie_accessibility_grayscale">Grey</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Grey inverted</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-en-rCA/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-en-rCA/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-en-rCA/strings.xml
Normal file
25
apps/AdvancedDisplay/res/values-en-rCA/strings.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-en-rGB/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-en-rGB/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
30
apps/AdvancedDisplay/res/values-en-rGB/strings.xml
Normal file
30
apps/AdvancedDisplay/res/values-en-rGB/strings.xml
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Advanced display</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Screen</string>
|
||||
<string name="screen_colors_title">Colours</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Scenario</string>
|
||||
<string name="mdnie_scenario_summary_head">Set the mDNIe scenario</string>
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-en-rIN/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-en-rIN/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-en-rIN/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-en-rIN/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Advanced display</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Screen</string>
|
||||
<string name="screen_colors_title">Colours</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Scenario</string>
|
||||
<string name="mdnie_scenario_summary_head">Set the mDNIe scenario</string>
|
||||
<string name="mdnie_accessibility_title_head">Accessibility mode</string>
|
||||
<string name="mdnie_accessibility_summary_head">Set the mDNIe accessibility mode</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (default)</string>
|
||||
<string name="mdnie_scenario_video">Video</string>
|
||||
<string name="mdnie_scenario_video_warm">Video warm</string>
|
||||
<string name="mdnie_scenario_video_cold">Video cold</string>
|
||||
<string name="mdnie_scenario_camera">Camera</string>
|
||||
<string name="mdnie_scenario_navigation">Navigation</string>
|
||||
<string name="mdnie_scenario_gallery">Gallery</string>
|
||||
<string name="mdnie_scenario_vt">Video call</string>
|
||||
<string name="mdnie_scenario_browser">Browser</string>
|
||||
<string name="mdnie_scenario_ebook">eBook</string>
|
||||
<string name="mdnie_scenario_email">E-mail</string>
|
||||
<string name="mdnie_scenario_tdmb">Digital television</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Normal</string>
|
||||
<string name="mdnie_accessibility_inverse">Inverted</string>
|
||||
<string name="mdnie_accessibility_color_blind">Colour blind</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Screen curtain</string>
|
||||
<string name="mdnie_accessibility_grayscale">Grey</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Grey inverted</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-en-rPT/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-en-rPT/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-en-rPT/strings.xml
Executable file
25
apps/AdvancedDisplay/res/values-en-rPT/strings.xml
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-eo/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-eo/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
26
apps/AdvancedDisplay/res/values-eo/strings.xml
Normal file
26
apps/AdvancedDisplay/res/values-eo/strings.xml
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<string name="screen_colors_title">Koloroj</string>
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-es-rCO/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-es-rCO/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-es-rCO/strings.xml
Executable file
25
apps/AdvancedDisplay/res/values-es-rCO/strings.xml
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-es-rMX/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-es-rMX/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-es-rMX/strings.xml
Executable file
25
apps/AdvancedDisplay/res/values-es-rMX/strings.xml
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-es-rUS/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-es-rUS/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-es-rUS/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-es-rUS/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Ajustes avanzados</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Pantalla</string>
|
||||
<string name="screen_colors_title">Colores</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Escenario</string>
|
||||
<string name="mdnie_scenario_summary_head">Establecer escenario mDNIe</string>
|
||||
<string name="mdnie_accessibility_title_head">Modo de accesibilidad</string>
|
||||
<string name="mdnie_accessibility_summary_head">Establecer el modo de accesibilidad mDNIe</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (predefinido)</string>
|
||||
<string name="mdnie_scenario_video">Vídeo</string>
|
||||
<string name="mdnie_scenario_video_warm">Vídeo cálido</string>
|
||||
<string name="mdnie_scenario_video_cold">Vídeo frío</string>
|
||||
<string name="mdnie_scenario_camera">Cámara</string>
|
||||
<string name="mdnie_scenario_navigation">Navegación</string>
|
||||
<string name="mdnie_scenario_gallery">Galería</string>
|
||||
<string name="mdnie_scenario_vt">Videollamada</string>
|
||||
<string name="mdnie_scenario_browser">Navegador</string>
|
||||
<string name="mdnie_scenario_ebook">Libro digital</string>
|
||||
<string name="mdnie_scenario_email">Correo electrónico</string>
|
||||
<string name="mdnie_scenario_tdmb">Televisión digital</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Normal</string>
|
||||
<string name="mdnie_accessibility_inverse">Invertido</string>
|
||||
<string name="mdnie_accessibility_color_blind">Daltónico</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Cortina de pantalla</string>
|
||||
<string name="mdnie_accessibility_grayscale">Gris</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Gris invertido</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-es/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-es/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
30
apps/AdvancedDisplay/res/values-es/strings.xml
Normal file
30
apps/AdvancedDisplay/res/values-es/strings.xml
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Pantalla avanzada</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Pantalla</string>
|
||||
<string name="screen_colors_title">Colores</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Escenario</string>
|
||||
<string name="mdnie_scenario_summary_head">Establecer el escenario mDNIe</string>
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
34
apps/AdvancedDisplay/res/values-et-rEE/arrays.xml
Normal file
34
apps/AdvancedDisplay/res/values-et-rEE/arrays.xml
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string-array name="mdnie_scenario_entries">
|
||||
<item>LineageOS (default)</item>
|
||||
<item>UI</item>
|
||||
<item>Video</item>
|
||||
<item>Video soe</item>
|
||||
<item>Video külm</item>
|
||||
<item>Kaamera</item>
|
||||
<item>Navigeerimine</item>
|
||||
<item>Galerii</item>
|
||||
<item>VT</item>
|
||||
</string-array>
|
||||
<string-array name="mdnie_negative_entries">
|
||||
<item>Normaalne</item>
|
||||
<item>Negatiivne</item>
|
||||
</string-array>
|
||||
</resources>
|
28
apps/AdvancedDisplay/res/values-et-rEE/strings.xml
Normal file
28
apps/AdvancedDisplay/res/values-et-rEE/strings.xml
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Täpsem displei</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Ekraan</string>
|
||||
<string name="screen_colors_title">Värvid</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Stsenaarium</string>
|
||||
<string name="mdnie_scenario_summary_head">Seadke mDNIe stsenaarium</string>
|
||||
<string name="mdnie_negative_title_head">Negatiivne režiim</string>
|
||||
<string name="mdnie_negative_summary_head">Luba/keela negatiivsed värvid</string>
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-et/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-et/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-et/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-et/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Täpsem displei</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Ekraan</string>
|
||||
<string name="screen_colors_title">Värvid</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Stsenaarium</string>
|
||||
<string name="mdnie_scenario_summary_head">Seadke mDNIe stsenaarium</string>
|
||||
<string name="mdnie_accessibility_title_head">Juurdepääsetavusrežiim</string>
|
||||
<string name="mdnie_accessibility_summary_head">Määra mDNIe juurdepääsetavusrežiim</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (vaikimisi)</string>
|
||||
<string name="mdnie_scenario_video">Video</string>
|
||||
<string name="mdnie_scenario_video_warm">Video soe</string>
|
||||
<string name="mdnie_scenario_video_cold">Video külm</string>
|
||||
<string name="mdnie_scenario_camera">Kaamera</string>
|
||||
<string name="mdnie_scenario_navigation">Navigeerimine</string>
|
||||
<string name="mdnie_scenario_gallery">Galerii</string>
|
||||
<string name="mdnie_scenario_vt">Videokõne</string>
|
||||
<string name="mdnie_scenario_browser">Veebilehitseja</string>
|
||||
<string name="mdnie_scenario_ebook">E-raamat</string>
|
||||
<string name="mdnie_scenario_email">E-post</string>
|
||||
<string name="mdnie_scenario_tdmb">Digitaalne televisioon</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Tavaline</string>
|
||||
<string name="mdnie_accessibility_inverse">Pööratud</string>
|
||||
<string name="mdnie_accessibility_color_blind">Värvipimedatele</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Ekraanikardin</string>
|
||||
<string name="mdnie_accessibility_grayscale">Hall</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Pööratud hall</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
34
apps/AdvancedDisplay/res/values-eu-rES/arrays.xml
Normal file
34
apps/AdvancedDisplay/res/values-eu-rES/arrays.xml
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string-array name="mdnie_scenario_entries">
|
||||
<item>LineageOS (default)</item>
|
||||
<item>UI</item>
|
||||
<item>Bideoa</item>
|
||||
<item>Bideo epela</item>
|
||||
<item>Bideo hotza</item>
|
||||
<item>Kamera</item>
|
||||
<item>Nabigazioa</item>
|
||||
<item>Galeria</item>
|
||||
<item>Bideodeia</item>
|
||||
</string-array>
|
||||
<string-array name="mdnie_negative_entries">
|
||||
<item>Arrunta</item>
|
||||
<item>Alderantzikatua</item>
|
||||
</string-array>
|
||||
</resources>
|
28
apps/AdvancedDisplay/res/values-eu-rES/strings.xml
Normal file
28
apps/AdvancedDisplay/res/values-eu-rES/strings.xml
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Pantaila aurreratua</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Pantaila</string>
|
||||
<string name="screen_colors_title">Koloreak</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Eszenatokia</string>
|
||||
<string name="mdnie_scenario_summary_head">mDNIe eszenatokia ezarri</string>
|
||||
<string name="mdnie_negative_title_head">Modu negatiboa</string>
|
||||
<string name="mdnie_negative_summary_head">Gaitu/ezgaitu kolore alderantzikatuak</string>
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-eu/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-eu/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-eu/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-eu/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Pantaila aurreratua</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Pantaila</string>
|
||||
<string name="screen_colors_title">Koloreak</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Eszenatokia</string>
|
||||
<string name="mdnie_scenario_summary_head">mDNIe eszenatokia ezarri</string>
|
||||
<string name="mdnie_accessibility_title_head">Irisgarritasun modua</string>
|
||||
<string name="mdnie_accessibility_summary_head">Ezarri mDNIe irisgarritasun modua</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (lehenetsia)</string>
|
||||
<string name="mdnie_scenario_video">Bideoa</string>
|
||||
<string name="mdnie_scenario_video_warm">Bideo epela</string>
|
||||
<string name="mdnie_scenario_video_cold">Bideo hotza</string>
|
||||
<string name="mdnie_scenario_camera">Kamera</string>
|
||||
<string name="mdnie_scenario_navigation">Nabigazioa</string>
|
||||
<string name="mdnie_scenario_gallery">Galeria</string>
|
||||
<string name="mdnie_scenario_vt">Bideo-deia</string>
|
||||
<string name="mdnie_scenario_browser">Nabigatzailea</string>
|
||||
<string name="mdnie_scenario_ebook">eBook</string>
|
||||
<string name="mdnie_scenario_email">E-mail</string>
|
||||
<string name="mdnie_scenario_tdmb">Telebista digitala</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Arrunta</string>
|
||||
<string name="mdnie_accessibility_inverse">Alderantzikatua</string>
|
||||
<string name="mdnie_accessibility_color_blind">Kolore-itsua</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Pantaila gortina</string>
|
||||
<string name="mdnie_accessibility_grayscale">Grisa</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Grisa alderantzikatua</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-fa/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-fa/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
30
apps/AdvancedDisplay/res/values-fa/strings.xml
Normal file
30
apps/AdvancedDisplay/res/values-fa/strings.xml
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">نمایش پیشرفته</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">صفحه نمایش</string>
|
||||
<string name="screen_colors_title">رنگها</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">خط مشی</string>
|
||||
<string name="mdnie_scenario_summary_head">تنظیم خط مشی mDNIe</string>
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-fi/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-fi/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-fi/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-fi/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Näytön lisäasetukset</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Näyttö</string>
|
||||
<string name="screen_colors_title">Värit</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Skenaario</string>
|
||||
<string name="mdnie_scenario_summary_head">Aseta mDNIe-skenaario</string>
|
||||
<string name="mdnie_accessibility_title_head">Helppokäyttötila</string>
|
||||
<string name="mdnie_accessibility_summary_head">Aseta mDNIe-tila</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (oletus)</string>
|
||||
<string name="mdnie_scenario_video">Video</string>
|
||||
<string name="mdnie_scenario_video_warm">Video (lämmin)</string>
|
||||
<string name="mdnie_scenario_video_cold">Video (kylmä)</string>
|
||||
<string name="mdnie_scenario_camera">Kamera</string>
|
||||
<string name="mdnie_scenario_navigation">Navigointi</string>
|
||||
<string name="mdnie_scenario_gallery">Galleria</string>
|
||||
<string name="mdnie_scenario_vt">Videopuhelu</string>
|
||||
<string name="mdnie_scenario_browser">Selain</string>
|
||||
<string name="mdnie_scenario_ebook">E-kirja</string>
|
||||
<string name="mdnie_scenario_email">Sähköposti</string>
|
||||
<string name="mdnie_scenario_tdmb">Digitaalinen televisio</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Normaali</string>
|
||||
<string name="mdnie_accessibility_inverse">Käänteinen</string>
|
||||
<string name="mdnie_accessibility_color_blind">Värisokea</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Näyttöverho</string>
|
||||
<string name="mdnie_accessibility_grayscale">Harmaa</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Harmaa (käänteinen)</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
18
apps/AdvancedDisplay/res/values-fil-rPH/arrays.xml
Normal file
18
apps/AdvancedDisplay/res/values-fil-rPH/arrays.xml
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
21
apps/AdvancedDisplay/res/values-fil-rPH/strings.xml
Normal file
21
apps/AdvancedDisplay/res/values-fil-rPH/strings.xml
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-fil/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-fil/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-fil/strings.xml
Executable file
25
apps/AdvancedDisplay/res/values-fil/strings.xml
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-fr-rCA/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-fr-rCA/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-fr-rCA/strings.xml
Executable file
25
apps/AdvancedDisplay/res/values-fr-rCA/strings.xml
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-fr/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-fr/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
50
apps/AdvancedDisplay/res/values-fr/strings.xml
Normal file
50
apps/AdvancedDisplay/res/values-fr/strings.xml
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Affichage avancé</string>
|
||||
<!-- Screen Preference -->
|
||||
<string name="category_screen_title">Écran</string>
|
||||
<string name="screen_colors_title">Couleurs</string>
|
||||
<!-- mDNIe -->
|
||||
<string name="mdnie_scenario_title_head">Scénario</string>
|
||||
<string name="mdnie_scenario_summary_head">Définir le scénario mDNIe</string>
|
||||
<string name="mdnie_accessibility_title_head">Mode d\'accessibilité</string>
|
||||
<string name="mdnie_accessibility_summary_head">Définir le mode d\'accessibilité mDNIe</string>
|
||||
<!-- Scenario names -->
|
||||
<string name="mdnie_scenario_ui">LineageOS (par défaut)</string>
|
||||
<string name="mdnie_scenario_video">Vidéo</string>
|
||||
<string name="mdnie_scenario_video_warm">Vidéo chaude</string>
|
||||
<string name="mdnie_scenario_video_cold">Vidéo froide</string>
|
||||
<string name="mdnie_scenario_camera">Appareil photo</string>
|
||||
<string name="mdnie_scenario_navigation">Navigation</string>
|
||||
<string name="mdnie_scenario_gallery">Galerie</string>
|
||||
<string name="mdnie_scenario_vt">Appel vidéo</string>
|
||||
<string name="mdnie_scenario_browser">Navigateur</string>
|
||||
<string name="mdnie_scenario_ebook">eBook</string>
|
||||
<string name="mdnie_scenario_email">E-mail</string>
|
||||
<string name="mdnie_scenario_tdmb">Télévision numérique</string>
|
||||
<!-- Accessibility mode names -->
|
||||
<string name="mdnie_accessibility_normal">Normal</string>
|
||||
<string name="mdnie_accessibility_inverse">Inversé</string>
|
||||
<string name="mdnie_accessibility_color_blind">Daltonien</string>
|
||||
<string name="mdnie_accessibility_screen_curtain">Rideau d\'écran</string>
|
||||
<string name="mdnie_accessibility_grayscale">Gris</string>
|
||||
<string name="mdnie_accessibility_gray_negative">Gris inversé</string>
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
18
apps/AdvancedDisplay/res/values-frp-rIT/arrays.xml
Normal file
18
apps/AdvancedDisplay/res/values-frp-rIT/arrays.xml
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
21
apps/AdvancedDisplay/res/values-frp-rIT/strings.xml
Normal file
21
apps/AdvancedDisplay/res/values-frp-rIT/strings.xml
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-frp/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-frp/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-frp/strings.xml
Executable file
25
apps/AdvancedDisplay/res/values-frp/strings.xml
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
19
apps/AdvancedDisplay/res/values-fy-rNL/arrays.xml
Executable file
19
apps/AdvancedDisplay/res/values-fy-rNL/arrays.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"></resources>
|
25
apps/AdvancedDisplay/res/values-fy-rNL/strings.xml
Normal file
25
apps/AdvancedDisplay/res/values-fy-rNL/strings.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--Generated by crowdin.com-->
|
||||
<!--
|
||||
Copyright (C) 2012-2014 The CyanogenMod Project
|
||||
Copyright (C) 2018 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Screen Preference -->
|
||||
<!-- mDNIe -->
|
||||
<!-- Scenario names -->
|
||||
<!-- Accessibility mode names -->
|
||||
<!-- DO NOT TRANSLATE Empty summary for dynamic preferences -->
|
||||
</resources>
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue