SetupWizard: Initial PawletOS fork
Forked from LineageOS android_packages_apps_SetupWizard. Changes from upstream: - Package renamed from org.lineageos.setupwizard to me.pawlet.setupwizard - Module renamed from LineageSetupWizard to PawletSetupWizard - Source tree moved from src/org/lineageos/ to src/me/pawlet/ - WelcomeActivity and FinishActivity migrated to Kotlin/Compose - PawletTheme: Material3 lavender color scheme with Ubuntu font family - WelcomeScreen and FinishScreen Compose composables - Added Ubuntu font assets (regular/medium/bold) - Added missing strings: setup_welcome_description, setup_complete_title, setup_complete_description; os_name set to PawletOS - Android.bp: added Compose deps, pawlet-system framework API - Privapp-permissions file renamed to me.pawlet.setupwizard.xml - Helper scripts renamed from start_lineage_wizard to start_pawlet_wizard - Removed unused org.lineageos.platform.internal dependency
This commit is contained in:
44
Android.bp
Normal file
44
Android.bp
Normal file
@@ -0,0 +1,44 @@
|
||||
//
|
||||
// SPDX-FileCopyrightText: The LineageOS Project
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
|
||||
android_app {
|
||||
name: "PawletSetupWizard",
|
||||
|
||||
srcs: [
|
||||
"src/**/*.java",
|
||||
"src/**/*.kt",
|
||||
],
|
||||
|
||||
kotlincflags: ["-Xjvm-default=all"],
|
||||
|
||||
certificate: "platform",
|
||||
privileged: true,
|
||||
privapp_allowlist: "me.pawlet.setupwizard.xml",
|
||||
system_ext_specific: true,
|
||||
platform_apis: true,
|
||||
|
||||
overrides: ["Provision"],
|
||||
|
||||
optimize: {
|
||||
proguard_flags_files: ["proguard.flags"],
|
||||
},
|
||||
|
||||
static_libs: [
|
||||
"androidx.activity_activity",
|
||||
"androidx.activity_activity-compose",
|
||||
"androidx.compose.runtime_runtime",
|
||||
"androidx.compose.ui_ui",
|
||||
"androidx.compose.foundation_foundation",
|
||||
"androidx.compose.material3_material3",
|
||||
"androidx.compose.ui_ui-graphics",
|
||||
"SettingsLib",
|
||||
"setupcompat",
|
||||
"setupdesign",
|
||||
"SystemUISharedLib",
|
||||
"pawlet-system.stubs.system",
|
||||
],
|
||||
|
||||
libs: ["telephony-common"],
|
||||
}
|
||||
309
AndroidManifest.xml
Normal file
309
AndroidManifest.xml
Normal file
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="me.pawlet.setupwizard"
|
||||
android:versionCode="5"
|
||||
android:sharedUserId="android.uid.system">
|
||||
|
||||
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
|
||||
<uses-permission android:name="android.permission.STATUS_BAR" />
|
||||
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
|
||||
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
|
||||
<uses-permission android:name="android.permission.SET_TIME_ZONE" />
|
||||
<uses-permission android:name="android.permission.SET_TIME" />
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||||
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.GET_ACCOUNTS_PRIVILEGED" />
|
||||
<uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" />
|
||||
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
|
||||
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
|
||||
<uses-permission android:name="android.permission.MANAGE_USERS" />
|
||||
<uses-permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE" />
|
||||
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
|
||||
<uses-permission android:name="lineageos.permission.HARDWARE_ABSTRACTION_ACCESS" />
|
||||
<uses-permission android:name="android.permission.BACKUP" />
|
||||
<uses-permission android:name="android.permission.NETWORK_SETTINGS" />
|
||||
<uses-permission android:name="lineageos.permission.FINISH_SETUP" />
|
||||
<uses-permission android:name="lineageos.permission.WRITE_SETTINGS" />
|
||||
<uses-permission android:name="lineageos.permission.WRITE_SECURE_SETTINGS" />
|
||||
|
||||
<permission
|
||||
android:name="lineageos.permission.FINISH_SETUP"
|
||||
android:protectionLevel="signatureOrSystem" />
|
||||
|
||||
<protected-broadcast
|
||||
android:name="me.pawlet.setupwizard.LINEAGE_SETUP_COMPLETE"
|
||||
android:permission="lineageos.permission.FINISH_SETUP" />
|
||||
|
||||
<protected-broadcast
|
||||
android:name="me.pawlet.setupwizard.SETUP_FINISHED"
|
||||
android:permission="lineageos.permission.FINISH_SETUP" />
|
||||
|
||||
<application
|
||||
android:label="@string/app_name"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:theme="@style/Theme.Setup"
|
||||
android:uiOptions="none"
|
||||
android:taskAffinity="com.android.wizard"
|
||||
android:name=".SetupWizardApp">
|
||||
|
||||
<activity
|
||||
android:theme="@style/NoDisplay"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:name=".wizardmanager.WizardManager"
|
||||
android:enabled="false"
|
||||
android:exported="false"
|
||||
android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation|screenSize"
|
||||
android:immersive="true">
|
||||
<intent-filter>
|
||||
<action android:name="com.android.wizard.LOAD" />
|
||||
<action android:name="com.android.wizard.NEXT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".SetupWizardActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:lockTaskMode="normal"
|
||||
android:launchMode="singleTask"
|
||||
android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation|screenSize"
|
||||
android:immersive="true"
|
||||
android:exported="true"
|
||||
android:windowSoftInputMode="stateAlwaysHidden"
|
||||
android:theme="@style/NoDisplay">
|
||||
|
||||
<intent-filter android:priority="9">
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.intent.action.DEVICE_INITIALIZATION_WIZARD" />
|
||||
<category android:name="android.intent.category.HOME" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".BluetoothSetupActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="false"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_BLUETOOTH_SETUP" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".WelcomeActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="false"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_WELCOME" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".LocaleActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="false"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_LOCALE" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".DateTimeActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="false"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_DATETIME" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".SimMissingActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="false"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_SIM_MISSING" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".NetworkSetupActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="false"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_NETWORK_SETUP" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".LocationSettingsActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="false"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_LOCATION_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".UpdateRecoveryActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="true"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_RECOVERY_UPDATE" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".DeviceSpecificActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:immersive="true"
|
||||
android:exported="true"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.DEVICE_SPECIFIC" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".LineageSettingsActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="true"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".NavigationSettingsActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="true"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.NAVIGATION_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".BiometricActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="false"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_BIOMETRIC_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".ScreenLockActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="false"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_LOCKSCREEN_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".backup.RestoreIntroActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="true"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_RESTORE_BACKUP" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".ThemeSettingsActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="true"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.THEME_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".FinishActivity"
|
||||
android:label="@string/activity_label_empty"
|
||||
android:configChanges="mcc|mnc"
|
||||
android:immersive="true"
|
||||
android:exported="true"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
<intent-filter>
|
||||
<action android:name="me.pawlet.setupwizard.LINEAGE_SETUP_COMPLETE" />
|
||||
<action android:name="me.pawlet.setupwizard.SETUP_FINISHED" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<receiver
|
||||
android:name=".PartnerReceiver"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="com.android.setupwizard.action.PARTNER_CUSTOMIZATION" />
|
||||
<action android:name="com.google.android.tvsetup.action.PARTNER_CUSTOMIZATION" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
</application>
|
||||
</manifest>
|
||||
73
LICENSES/Apache-2.0.txt
Normal file
73
LICENSES/Apache-2.0.txt
Normal file
@@ -0,0 +1,73 @@
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
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.
|
||||
13
REUSE.toml
Normal file
13
REUSE.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
# SPDX-FileCopyrightText: The LineageOS Project
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
version = 1
|
||||
SPDX-PackageName = "SetupWizard"
|
||||
SPDX-PackageSupplier = "The LineageOS Project"
|
||||
SPDX-PackageDownloadLocation = "https://github.com/LineageOS/android_packages_apps_SetupWizard"
|
||||
|
||||
[[annotations]]
|
||||
path = ["res/raw/lottie_system_nav_3_button.json", "res/raw/lottie_system_nav_fully_gestural.json"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "2019 The Android Open Source Project"
|
||||
SPDX-License-Identifier = "Apache-2.0"
|
||||
23
exit_wizard.sh
Executable file
23
exit_wizard.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
# SPDX-FileCopyrightText: The LineageOS Project
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
adb root
|
||||
wait ${!}
|
||||
has_google_suw=$(adb shell pm list packages com.google.android.setupwizard)
|
||||
adb shell pm enable me.pawlet.setupwizard/.FinishActivity || true
|
||||
if [[ ! -z "$has_google_suw" ]]
|
||||
then
|
||||
wait ${!}
|
||||
adb shell pm enable com.google.android.setupwizard/.SetupWizardExitActivity || true
|
||||
wait ${!}
|
||||
fi
|
||||
sleep 1
|
||||
adb shell am start me.pawlet.setupwizard/.FinishActivity || true
|
||||
if [[ ! -z "$has_google_suw" ]]
|
||||
then
|
||||
wait ${!}
|
||||
sleep 1
|
||||
adb shell am start com.google.android.setupwizard/.SetupWizardExitActivity
|
||||
fi
|
||||
20
me.pawlet.setupwizard.xml
Normal file
20
me.pawlet.setupwizard.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<permissions>
|
||||
<privapp-permissions package="me.pawlet.setupwizard">
|
||||
<permission name="android.permission.BACKUP" />
|
||||
<permission name="android.permission.CHANGE_COMPONENT_ENABLED_STATE" />
|
||||
<permission name="android.permission.CHANGE_CONFIGURATION" />
|
||||
<permission name="android.permission.GET_ACCOUNTS_PRIVILEGED" />
|
||||
<permission name="android.permission.INTERACT_ACROSS_USERS" />
|
||||
<permission name="android.permission.MANAGE_USERS" />
|
||||
<permission name="android.permission.READ_PRIVILEGED_PHONE_STATE" />
|
||||
<permission name="android.permission.SET_TIME" />
|
||||
<permission name="android.permission.SET_TIME_ZONE" />
|
||||
<permission name="android.permission.STATUS_BAR" />
|
||||
<permission name="android.permission.WRITE_SECURE_SETTINGS" />
|
||||
</privapp-permissions>
|
||||
</permissions>
|
||||
16
proguard.flags
Normal file
16
proguard.flags
Normal file
@@ -0,0 +1,16 @@
|
||||
# SPDX-FileCopyrightText: 2015 The CyanogenMod Project
|
||||
# SPDX-FileCopyrightText: The LineageOS Project
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
-keep class * extends java.util.ListResourceBundle {
|
||||
protected Object[][] getContents();
|
||||
}
|
||||
|
||||
# Needed for Parcelable/SafeParcelable Creators to not get stripped
|
||||
-keepnames class * implements android.os.Parcelable {
|
||||
public static final ** CREATOR;
|
||||
}
|
||||
|
||||
# Needed when building against the Marshmallow SDK
|
||||
-dontwarn org.apache.http.**
|
||||
-dontwarn androidx.**
|
||||
12
res/anim/translucent_enter.xml
Normal file
12
res/anim/translucent_enter.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2009 The Android Open Source Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:interpolator/decelerate_quad">
|
||||
<alpha
|
||||
android:fromAlpha="0.0"
|
||||
android:toAlpha="1.0"
|
||||
android:duration="@android:integer/config_shortAnimTime" />
|
||||
</set>
|
||||
12
res/anim/translucent_exit.xml
Normal file
12
res/anim/translucent_exit.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2009 The Android Open Source Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:interpolator/accelerate_quad">
|
||||
<alpha
|
||||
android:fromAlpha="1.0"
|
||||
android:toAlpha="0"
|
||||
android:duration="@android:integer/config_shortAnimTime" />
|
||||
</set>
|
||||
9
res/color/button_bar_text.xml
Normal file
9
res/color/button_bar_text.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2015 The CyanogenMod Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:color="@color/button_bar_text_disabled" />
|
||||
<item android:color="@color/button_bar_text_enabled" />
|
||||
</selector>
|
||||
8
res/drawable/background.xml
Normal file
8
res/drawable/background.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="?android:attr/colorBackground" />
|
||||
</shape>
|
||||
11
res/drawable/divider.xml
Normal file
11
res/drawable/divider.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2015 The CyanogenMod Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="@color/divider" />
|
||||
<size
|
||||
android:width="316dp"
|
||||
android:height="1px" />
|
||||
</shape>
|
||||
17
res/drawable/ic_datetime.xml
Normal file
17
res/drawable/ic_datetime.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<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="?android:colorControlNormal"
|
||||
android:pathData="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99 .9 -1.99 2L3 19c0 1.1 .89 2 2 2h14c1.1 0
|
||||
2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z" />
|
||||
</vector>
|
||||
15
res/drawable/ic_dialer.xml
Normal file
15
res/drawable/ic_dialer.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="?android:colorControlNormal"
|
||||
android:pathData="M20,15.5C18.8,15.5 17.5,15.3 16.4,14.9C16.3,14.9 16.2,14.9 16.1,14.9C15.8,14.9 15.6,15 15.4,15.2L13.2,17.4C10.4,15.9 8,13.6 6.6,10.8L8.8,8.6C9.1,8.3 9.2,7.9 9,7.6C8.7,6.5 8.5,5.2 8.5,4C8.5,3.5 8,3 7.5,3H4C3.5,3 3,3.5 3,4C3,13.4 10.6,21 20,21C20.5,21 21,20.5 21,20V16.5C21,16 20.5,15.5 20,15.5M5,5H6.5C6.6,5.9 6.8,6.8 7,7.6L5.8,8.8C5.4,7.6 5.1,6.3 5,5M19,19C17.7,18.9 16.4,18.6 15.2,18.2L16.4,17C17.2,17.2 18.1,17.4 19,17.4V19Z" />
|
||||
</vector>
|
||||
15
res/drawable/ic_eye.xml
Normal file
15
res/drawable/ic_eye.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="?android:colorControlNormal"
|
||||
android:pathData="M12,9A3,3 0 0,1 15,12A3,3 0 0,1 12,15A3,3 0 0,1 9,12A3,3 0 0,1 12,9M12,4.5C17,4.5 21.27,7.61 23,12C21.27,16.39 17,19.5 12,19.5C7,19.5 2.73,16.39 1,12C2.73,7.61 7,4.5 12,4.5M3.18,12C4.83,15.36 8.24,17.5 12,17.5C15.76,17.5 19.17,15.36 20.82,12C19.17,8.64 15.76,6.5 12,6.5C8.24,6.5 4.83,8.64 3.18,12Z" />
|
||||
</vector>
|
||||
23
res/drawable/ic_features.xml
Normal file
23
res/drawable/ic_features.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<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 0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="?android:colorControlNormal"
|
||||
android:pathData="M11.8 12.5v-1l1.1-.8c.1-.1 .1 -.2 .1 -.3l-1-1.7c-.1-.1-.2-.2-.3-.1l-1.3 .4
|
||||
c-.3-.2-.6-.4-.9-.5l-.2-1.3c0-.1-.1-.2-.3-.2H7c-.1 0-.2 .1 -.3 .2 l-.2 1.3c-.3
|
||||
.1 -.6 .3 -.9 .5 l-1.3-.5c-.1 0-.2 0-.3 .1 l-1 1.7c-.1 .1 0 .2 .1 .3l1.1 .8
|
||||
v1l-1.1 .8 c-.1 .2 -.1 .3 -.1 .4 l1 1.7c.1 .1 .2 .2 .3 .1 l1.4-.4c.3 .2 .6 .4 .9
|
||||
.5 l.2 1.3c-.1 .1 .1 .2 .2 .2 h2c.1 0 .2-.1 .3 -.2l.2-1.3c.3-.1 .6 -.3 .9
|
||||
-.5l1.3 .5 c.1 0 .2 0 .3-.1l1-1.7c.1-.1 0-.2-.1-.3l-1.1-.9zM8 14c-1.1
|
||||
0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM19 1H9c-1.1 0-2 .9-2
|
||||
2v3h2V4h10v16H9v-2H7v3c0 1.1 .9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z" />
|
||||
</vector>
|
||||
15
res/drawable/ic_launcher_background.xml
Normal file
15
res/drawable/ic_launcher_background.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="108dp"
|
||||
android:height="108dp"
|
||||
android:viewportWidth="108"
|
||||
android:viewportHeight="108">
|
||||
|
||||
<path
|
||||
android:pathData="M0,0h108v108h-108z"
|
||||
android:fillColor="#ffffff" />
|
||||
</vector>
|
||||
37
res/drawable/ic_launcher_foreground.xml
Normal file
37
res/drawable/ic_launcher_foreground.xml
Normal file
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:aapt="http://schemas.android.com/aapt"
|
||||
android:width="108dp"
|
||||
android:height="108dp"
|
||||
android:viewportWidth="108"
|
||||
android:viewportHeight="108">
|
||||
|
||||
<group>
|
||||
<clip-path android:pathData="M0,0h108v108h-108z" />
|
||||
<path
|
||||
android:pathData="M53.671,54.898C53.707,54.605 53.744,54.312 53.744,54C53.744,53.688 53.707,53.395 53.671,53.102L55.651,51.598C55.834,51.47 55.87,51.213 55.761,51.012L53.872,47.84C53.762,47.638 53.506,47.565 53.304,47.638L50.957,48.555C50.462,48.188 49.931,47.895 49.362,47.657L48.995,45.218C48.995,44.998 48.794,44.833 48.556,44.833H44.797C44.559,44.833 44.357,44.998 44.32,45.218L43.954,47.638C43.386,47.858 42.854,48.188 42.359,48.537L40.012,47.62C39.792,47.528 39.554,47.62 39.444,47.822L37.556,50.993C37.445,51.213 37.5,51.452 37.684,51.598L39.664,53.102C39.627,53.395 39.609,53.707 39.609,54C39.609,54.312 39.646,54.605 39.682,54.898L37.684,56.42C37.5,56.548 37.464,56.805 37.574,57.007L39.462,60.178C39.572,60.38 39.829,60.453 40.03,60.38L42.377,59.463C42.872,59.83 43.404,60.123 43.972,60.362L44.339,62.782C44.357,63.002 44.559,63.167 44.797,63.167H48.574C48.812,63.167 49.014,63.002 49.032,62.782L49.399,60.362C49.967,60.142 50.499,59.812 50.994,59.463L53.34,60.38C53.561,60.472 53.799,60.38 53.909,60.178L55.797,57.007C55.907,56.805 55.87,56.567 55.687,56.42L53.671,54.898ZM46.667,57.208C44.852,57.208 43.367,55.778 43.367,54C43.367,52.222 44.852,50.792 46.667,50.792C48.482,50.792 49.967,52.222 49.967,54C49.967,55.778 48.5,57.208 46.667,57.208ZM66.834,33.852L48.5,33.833C46.484,33.833 44.834,35.483 44.834,37.5V43H48.5V41.167H66.834V66.833H48.5V65H44.834V70.5C44.834,72.517 46.484,74.167 48.5,74.167H66.834C68.851,74.167 70.501,72.517 70.501,70.5V37.5C70.501,35.483 68.851,33.852 66.834,33.852Z"
|
||||
android:fillColor="#167C80" />
|
||||
<path
|
||||
android:pathData="M28.54,28.54m-72,0a72,72 0,1 1,144 0a72,72 0,1 1,-144 0"
|
||||
android:fillAlpha="0.6">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:gradientRadius="72"
|
||||
android:centerX="28.54"
|
||||
android:centerY="28.54"
|
||||
android:type="radial">
|
||||
<item
|
||||
android:offset="0"
|
||||
android:color="#19FFFFFF" />
|
||||
<item
|
||||
android:offset="1"
|
||||
android:color="#00FFFFFF" />
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
</group>
|
||||
</vector>
|
||||
20
res/drawable/ic_locale.xml
Normal file
20
res/drawable/ic_locale.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<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="?android:colorControlNormal"
|
||||
android:pathData="M12.87 15.07l-2.54-2.51 .03 -.03c1.74-1.94 2.98-4.17
|
||||
3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3
|
||||
9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11 .76
|
||||
-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12
|
||||
17h-3.24z" />
|
||||
</vector>
|
||||
17
res/drawable/ic_location.xml
Normal file
17
res/drawable/ic_location.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="?android:colorControlNormal"
|
||||
android:pathData="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0
|
||||
9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" />
|
||||
<path android:pathData="M0 0h24v24H0z" />
|
||||
</vector>
|
||||
15
res/drawable/ic_navigation.xml
Normal file
15
res/drawable/ic_navigation.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: Material Design Authors / Google LLC
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="?android:colorControlNormal"
|
||||
android:pathData="M4.59,6.89C5.29,6.18 6,5.54 6.3,5.67C6.8,5.87 6.3,6.7 6,7.19C5.75,7.61 3.14,11.08 3.14,13.5C3.14,14.78 3.62,15.84 4.5,16.5C5.23,17.04 6.22,17.21 7.12,16.94C8.19,16.63 9.07,15.54 10.18,14.17C11.39,12.68 13,10.73 14.26,10.73C15.89,10.73 15.91,11.74 16,12.5C12.24,13.16 10.64,16.19 10.64,17.89C10.64,19.59 12.08,21 13.85,21C15.5,21 18.14,19.65 18.54,14.88H21V12.38H18.53C18.38,10.73 17.44,8.18 14.5,8.18C12.25,8.18 10.32,10.09 9.56,11C9,11.75 7.5,13.5 7.27,13.74C7,14.04 6.59,14.58 6.16,14.58C5.71,14.58 5.44,13.75 5.8,12.66C6.15,11.57 7.2,9.8 7.65,9.14C8.43,8 8.95,7.22 8.95,5.86C8.95,3.69 7.31,3 6.44,3C5.12,3 3.97,4 3.72,4.25C3.36,4.61 3.06,4.91 2.84,5.18L4.59,6.89M13.88,18.55C13.57,18.55 13.14,18.29 13.14,17.83C13.14,17.23 13.87,15.63 16,15.07C15.71,17.76 14.58,18.55 13.88,18.55Z" />
|
||||
</vector>
|
||||
15
res/drawable/ic_restore.xml
Normal file
15
res/drawable/ic_restore.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: Material Design Authors / Google LLC
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="?android:colorControlNormal"
|
||||
android:pathData="M17,13L12,18L7,13H10V9H14V13M19.35,10.03C18.67,6.59 15.64,4 12,4C9.11,4 6.6,5.64 5.35,8.03C2.34,8.36 0,10.9 0,14A6,6 0 0,0 6,20H19A5,5 0 0,0 24,15C24,12.36 21.95,10.22 19.35,10.03Z" />
|
||||
</vector>
|
||||
17
res/drawable/ic_sim.xml
Normal file
17
res/drawable/ic_sim.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="?android:colorControlNormal"
|
||||
android:pathData="M19.99 4c0-1.1-.89-2-1.99-2h-8L4 8v12c0 1.1 .9 2 2 2h12.01c1.1 0 1.99-.9
|
||||
1.99-2l-.01-16zM9 19H7v-2h2v2zm8 0h-2v-2h2v2zm-8-4H7v-4h2v4zm4
|
||||
4h-2v-4h2v4zm0-6h-2v-2h2v2zm4 2h-2v-4h2v4z" />
|
||||
</vector>
|
||||
15
res/drawable/ic_system_update.xml
Normal file
15
res/drawable/ic_system_update.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
|
||||
<path
|
||||
android:fillColor="?android:colorControlNormal"
|
||||
android:pathData="M17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19L7,19L7,5h10v14zM16,13h-3L13,8h-2v5L8,13l4,4 4,-4z" />
|
||||
</vector>
|
||||
15
res/drawable/ic_theme.xml
Normal file
15
res/drawable/ic_theme.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2019 The Android Open Source Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="?android:colorControlNormal"
|
||||
android:pathData="M4,2v9c0,1.65 1.35,3 3,3h2v6c0,1.1 0.9,2 2,2h2c1.1,0 2,-0.9 2,-2v-6h2c1.65,0 3,-1.35 3,-3V2C20,2 4,2 4,2zM11,20v-6h2v6H11zM18,11c0,0.55 -0.45,1 -1,1h-2H9H7c-0.55,0 -1,-0.45 -1,-1v-0.93h12V11zM18,8.07H6V4h2.81v2.15h2V4h2.38v2.15h2V4H18V8.07z" />
|
||||
</vector>
|
||||
17
res/drawable/logo.xml
Normal file
17
res/drawable/logo.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="512dp"
|
||||
android:height="260dp"
|
||||
android:viewportWidth="512"
|
||||
android:viewportHeight="260">
|
||||
|
||||
<path
|
||||
android:fillColor="@color/lineage_accent"
|
||||
android:pathData="M416,128a39.92,39.92,0,0,0-31.11,14.87l-1.5-.6A294.79,294.79,0,0,0,336,128.14s0-.09,0-.14a80,80,0,1,0-160,0s0,.09,0,.13l-1.72
|
||||
.38 a293.48,293.48,0,0,0-45.67,13.76l-1.5 .6
|
||||
a40,40,0,1,0,7.39,14.28h0a277.33,277.33,0,0,1,43.1-13,80,80,0,0,0,156.73,0,277.3,277.3,0,0,1,43.11,13h0A40,40,0,1,0,416,128ZM96,192a24,24,0,1,1,24-24A24,24,0,0,1,96,192Zm160,0a64,64,0,1,1,64-64A64.07,64.07,0,0,1,256,192Zm160,0a24,24,0,1,1,24-24A24,24,0,0,1,416,192ZM288,128a32,32,0,1,1-32-32A32,32,0,0,1,288,128Z" />
|
||||
</vector>
|
||||
6
res/font/ubuntu.xml
Normal file
6
res/font/ubuntu.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<font-family xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<font android:fontStyle="normal" android:fontWeight="400" android:font="@font/ubuntu_regular" />
|
||||
<font android:fontStyle="normal" android:fontWeight="500" android:font="@font/ubuntu_medium" />
|
||||
<font android:fontStyle="normal" android:fontWeight="700" android:font="@font/ubuntu_bold" />
|
||||
</font-family>
|
||||
BIN
res/font/ubuntu_bold.ttf
Normal file
BIN
res/font/ubuntu_bold.ttf
Normal file
Binary file not shown.
BIN
res/font/ubuntu_medium.ttf
Normal file
BIN
res/font/ubuntu_medium.ttf
Normal file
Binary file not shown.
BIN
res/font/ubuntu_regular.ttf
Normal file
BIN
res/font/ubuntu_regular.ttf
Normal file
Binary file not shown.
93
res/layout-sw600dp/welcome_activity.xml
Normal file
93
res/layout-sw600dp/welcome_activity.xml
Normal file
@@ -0,0 +1,93 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2016 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
style="@style/SudContentFrame">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center_vertical"
|
||||
android:weightSum="100"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/brand_logo"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="65"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/logo"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="fitCenter"
|
||||
android:gravity="center"
|
||||
android:paddingTop="@dimen/content_margin_top"
|
||||
android:paddingRight="@dimen/content_margin_left"
|
||||
android:paddingLeft="@dimen/content_margin_left"
|
||||
android:paddingBottom="0dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="35"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
style="@style/WelcomeTitle"
|
||||
android:id="@+id/welcome_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hyphenationFrequency="none"
|
||||
android:gravity="center" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/start"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:text="@string/start"
|
||||
style="@style/SudGlifButton.Primary" />
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:gravity="center"
|
||||
android:visibility="gone">
|
||||
|
||||
<Button
|
||||
android:id="@+id/emerg_dialer"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:drawableTop="@drawable/ic_dialer"
|
||||
android:text="@string/emergency_call"
|
||||
style="@style/SudGlifButton.Secondary" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/launch_accessibility"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:drawableTop="@drawable/ic_eye"
|
||||
android:text="@string/accessibility_settings"
|
||||
style="@style/SudGlifButton.Secondary" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/skip"
|
||||
style="@style/SudGlifButton.Secondary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/skip"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
93
res/layout-television/welcome_activity.xml
Normal file
93
res/layout-television/welcome_activity.xml
Normal file
@@ -0,0 +1,93 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2016 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
style="@style/SudContentFrame">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center_vertical"
|
||||
android:weightSum="100"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/brand_logo"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="65"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/logo"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="fitCenter"
|
||||
android:gravity="center"
|
||||
android:paddingTop="@dimen/content_margin_top"
|
||||
android:paddingRight="@dimen/content_margin_left"
|
||||
android:paddingLeft="@dimen/content_margin_left"
|
||||
android:paddingBottom="0dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="35"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
style="@style/WelcomeTitle"
|
||||
android:id="@+id/welcome_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hyphenationFrequency="none"
|
||||
android:gravity="center" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/start"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:text="@string/start"
|
||||
style="@style/SudGlifButton.Primary" />
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:gravity="center"
|
||||
android:visibility="gone">
|
||||
|
||||
<Button
|
||||
android:id="@+id/emerg_dialer"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:drawableTop="@drawable/ic_dialer"
|
||||
android:text="@string/emergency_call"
|
||||
style="@style/SudGlifButton.Secondary" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/launch_accessibility"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:drawableTop="@drawable/ic_eye"
|
||||
android:text="@string/accessibility_settings"
|
||||
style="@style/SudGlifButton.Secondary" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/skip"
|
||||
style="@style/SudGlifButton.Secondary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/skip"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
30
res/layout/date_time_setup_custom_list_item_2.xml
Normal file
30
res/layout/date_time_setup_custom_list_item_2.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013 The CyanogenMod Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<!-- Based on simple_list_item_2.xml in framework -->
|
||||
<TwoLineListItem xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="?android:attr/listPreferredItemHeight"
|
||||
android:mode="twoLine"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@android:id/text1"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="16dip"
|
||||
style="@style/SpinnerItem" />
|
||||
|
||||
<TextView
|
||||
android:id="@android:id/text2"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="10dip"
|
||||
android:layout_below="@android:id/text1"
|
||||
android:layout_alignStart="@android:id/text1"
|
||||
android:fontFamily="sans-serif-medium"
|
||||
style="@style/SpinnerItem" />
|
||||
</TwoLineListItem>
|
||||
11
res/layout/divider.xml
Normal file
11
res/layout/divider.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2015 The CyanogenMod Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<ImageView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:scaleType="fitXY"
|
||||
android:src="@drawable/divider" />
|
||||
49
res/layout/finish_activity.xml
Normal file
49
res/layout/finish_activity.xml
Normal file
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2016 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<android.widget.FrameLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/root"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fitsSystemWindows="true"
|
||||
app:insetForeground="@android:color/transparent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/background"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@drawable/background"
|
||||
android:visibility="visible"/>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/linear_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
style="@style/SudContentFrame">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/brand_logo"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0px"
|
||||
android:layout_weight="1"
|
||||
android:src="@drawable/logo"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="fitCenter"
|
||||
android:gravity="center"
|
||||
android:padding="@dimen/content_margin_left"/>
|
||||
|
||||
<me.pawlet.setupwizard.NavigationLayout
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</android.widget.FrameLayout>
|
||||
33
res/layout/intro_restore_activity.xml
Normal file
33
res/layout/intro_restore_activity.xml
Normal file
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<com.google.android.setupdesign.GlifLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/setup_wizard_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
style="@style/SudContentFrame">
|
||||
|
||||
<View
|
||||
android:id="@+id/page"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<me.pawlet.setupwizard.NavigationLayout
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:showSkipButton="true" />
|
||||
|
||||
</LinearLayout>
|
||||
</com.google.android.setupdesign.GlifLayout>
|
||||
33
res/layout/locale_picker.xml
Normal file
33
res/layout/locale_picker.xml
Normal file
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2008 The Android Open Source Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<merge xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/lp__increment"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="22dip"
|
||||
android:paddingBottom="22dip" />
|
||||
|
||||
<view
|
||||
class="me.pawlet.setupwizard.widget.LocalePicker$CustomEditText"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
android:id="@+id/localepicker_input"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:singleLine="true"
|
||||
android:background="@null" />
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/lp__decrement"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="22dip"
|
||||
android:paddingBottom="22dip" />
|
||||
|
||||
</merge>
|
||||
22
res/layout/locale_picker_item.xml
Normal file
22
res/layout/locale_picker_item.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013 The CyanogenMod Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="horizontal"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:gravity="left"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingTop="6dp"
|
||||
android:paddingBottom="6dp"
|
||||
android:paddingEnd="16dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/locale"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="left"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium" />
|
||||
</LinearLayout>
|
||||
100
res/layout/location_settings.xml
Normal file
100
res/layout/location_settings.xml
Normal file
@@ -0,0 +1,100 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<com.google.android.setupdesign.GlifLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/setup_wizard_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
style="@style/SudContentFrame">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/page"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/location"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="@dimen/location_margin_left"
|
||||
android:paddingRight="@dimen/content_margin_right"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:clickable="true">
|
||||
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/location_checkbox"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:duplicateParentState="true"
|
||||
android:clickable="false"
|
||||
style="@style/SudCheckBox.Multiline" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/location_summary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/location_access_summary"
|
||||
style="@style/SudCheckBox.Multiline" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/location_agps"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="@dimen/location_margin_left"
|
||||
android:paddingRight="@dimen/content_margin_right"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:clickable="true">
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/location_agps_checkbox"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:duplicateParentState="true"
|
||||
android:clickable="false"
|
||||
android:checked="true"
|
||||
style="@style/SudCheckBox.Multiline" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/location_agps_summary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/location_agps_access_summary"
|
||||
style="@style/SudCheckBox.Multiline" />
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</FrameLayout>
|
||||
|
||||
<me.pawlet.setupwizard.NavigationLayout
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</LinearLayout>
|
||||
</com.google.android.setupdesign.GlifLayout>
|
||||
28
res/layout/navigation_layout.xml
Normal file
28
res/layout/navigation_layout.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<RelativeLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<Button
|
||||
android:id="@+id/navbar_skip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentStart="true"
|
||||
android:text="@string/skip"
|
||||
android:visibility="gone"
|
||||
style="@style/SudGlifButton.Secondary" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/navbar_next"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:text="@string/next"
|
||||
style="@style/SudGlifButton.Primary" />
|
||||
|
||||
</RelativeLayout>
|
||||
106
res/layout/setup_datetime_page.xml
Normal file
106
res/layout/setup_datetime_page.xml
Normal file
@@ -0,0 +1,106 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<com.google.android.setupdesign.GlifLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/setup_wizard_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
style="@style/SudContentFrame">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/page"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<Spinner
|
||||
android:id="@+id/timezone_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="24dp"
|
||||
android:saveEnabled="false" />
|
||||
|
||||
<TwoLineListItem
|
||||
android:id="@+id/date_item"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="?android:attr/listPreferredItemHeight"
|
||||
android:mode="twoLine"
|
||||
android:clickable="true"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/date_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/setup_current_date"
|
||||
style="@style/SpinnerItem" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/date_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/date_title"
|
||||
android:layout_alignStart="@id/date_title"
|
||||
android:fontFamily="sans-serif-medium"
|
||||
style="@style/SpinnerItem" />
|
||||
</TwoLineListItem>
|
||||
|
||||
<TwoLineListItem
|
||||
android:id="@+id/time_item"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="?android:attr/listPreferredItemHeight"
|
||||
android:mode="twoLine"
|
||||
android:clickable="true"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/time_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/setup_current_time"
|
||||
style="@style/SpinnerItem" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/time_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/time_title"
|
||||
android:layout_alignStart="@id/time_title"
|
||||
android:fontFamily="sans-serif-medium"
|
||||
style="@style/SpinnerItem" />
|
||||
</TwoLineListItem>
|
||||
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</FrameLayout>
|
||||
|
||||
<me.pawlet.setupwizard.NavigationLayout
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</LinearLayout>
|
||||
</com.google.android.setupdesign.GlifLayout>
|
||||
10
res/layout/setup_device_specific.xml
Normal file
10
res/layout/setup_device_specific.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical" />
|
||||
104
res/layout/setup_lineage_settings.xml
Normal file
104
res/layout/setup_lineage_settings.xml
Normal file
@@ -0,0 +1,104 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<com.google.android.setupdesign.GlifLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/setup_wizard_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
style="@style/SudContentFrame"
|
||||
android:layout_marginTop="@dimen/base_margin_top">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/page"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<!-- Whether or not to enable metrics -->
|
||||
<LinearLayout
|
||||
android:id="@+id/metrics"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="@dimen/location_margin_left"
|
||||
android:paddingRight="@dimen/content_margin_right"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:clickable="true">
|
||||
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/enable_metrics_checkbox"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:duplicateParentState="true"
|
||||
android:clickable="false"
|
||||
style="@style/SudCheckBox.Multiline" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/enable_metrics_summary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/services_metrics_label"
|
||||
style="@style/SudCheckBox.Multiline" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Checkbox for using on-screen nav keys -->
|
||||
<LinearLayout
|
||||
android:id="@+id/nav_keys"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="@dimen/location_margin_left"
|
||||
android:paddingRight="@dimen/content_margin_right"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:clickable="true">
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/nav_keys_checkbox"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="top"
|
||||
android:duplicateParentState="true"
|
||||
android:clickable="false"
|
||||
style="@style/SudCheckBox.Multiline" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/nav_keys_summary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/services_os_nav_keys_label"
|
||||
style="@style/SudCheckBox.Multiline" />
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</FrameLayout>
|
||||
|
||||
<me.pawlet.setupwizard.NavigationLayout
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</LinearLayout>
|
||||
</com.google.android.setupdesign.GlifLayout>
|
||||
|
||||
41
res/layout/setup_loading_page.xml
Normal file
41
res/layout/setup_loading_page.xml
Normal file
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<com.google.android.setupdesign.GlifLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/setup_wizard_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/progressBar1"
|
||||
style="?android:attr/progressBarStyleHorizontal"
|
||||
android:indeterminateOnly="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="8dp"
|
||||
android:paddingStart="0dp"
|
||||
android:paddingEnd="0dp" />
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/page"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
style="@style/SudContentFrame" />
|
||||
|
||||
<com.google.android.setupdesign.view.NavigationBar
|
||||
android:id="@+id/navigation_bar"
|
||||
style="@style/SudNavBarTheme"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/sud_navbar_height" />
|
||||
|
||||
</LinearLayout>
|
||||
</com.google.android.setupdesign.GlifLayout>
|
||||
43
res/layout/setup_locale.xml
Normal file
43
res/layout/setup_locale.xml
Normal file
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<com.google.android.setupdesign.GlifLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/setup_wizard_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
style="@style/SudContentFrame">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center">
|
||||
|
||||
<me.pawlet.setupwizard.widget.LocalePicker
|
||||
android:id="@+id/locale_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:focusable="true"
|
||||
android:focusableInTouchMode="true"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
style="@style/LocaleWidget.Material.LocalePicker" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<me.pawlet.setupwizard.NavigationLayout
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</LinearLayout>
|
||||
</com.google.android.setupdesign.GlifLayout>
|
||||
83
res/layout/setup_navigation.xml
Normal file
83
res/layout/setup_navigation.xml
Normal file
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<com.google.android.setupdesign.GlifLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/setup_wizard_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
style="@style/SudContentFrame"
|
||||
android:layout_marginTop="@dimen/base_margin_top">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/page"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<com.airbnb.lottie.LottieAnimationView
|
||||
android:id="@+id/navigation_illustration"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:lottie_rawRes="@raw/lottie_system_nav_fully_gestural"
|
||||
app:lottie_autoPlay="true"
|
||||
app:lottie_loop="true" />
|
||||
|
||||
<RadioGroup
|
||||
android:id="@+id/navigation_radio_group"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/radio_gesture"
|
||||
android:text="@string/gesture_navigation"
|
||||
android:checked="true"
|
||||
style="@style/SudRadioButton" />
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/radio_sw_keys"
|
||||
android:text="@string/navbar_navigation"
|
||||
style="@style/SudRadioButton" />
|
||||
|
||||
</RadioGroup>
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/hide_navigation_hint"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/hide_gesture_hint"
|
||||
android:layout_marginTop="0dp"
|
||||
android:layout_marginBottom="6dp"
|
||||
android:layout_marginLeft="-6dp"
|
||||
android:paddingLeft="18dp"
|
||||
style="@style/SudCheckBox" />
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</FrameLayout>
|
||||
|
||||
<me.pawlet.setupwizard.NavigationLayout
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</LinearLayout>
|
||||
</com.google.android.setupdesign.GlifLayout>
|
||||
|
||||
55
res/layout/setup_theme.xml
Normal file
55
res/layout/setup_theme.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<com.google.android.setupdesign.GlifLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/setup_wizard_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
style="@style/SudContentFrame"
|
||||
android:layout_marginTop="@dimen/base_margin_top">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/page"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true">
|
||||
|
||||
<RadioGroup
|
||||
android:id="@+id/theme_radio_group"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/radio_dark"
|
||||
android:text="@string/dark"
|
||||
style="@style/SudRadioButton" />
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/radio_light"
|
||||
android:text="@string/light"
|
||||
style="@style/SudRadioButton" />
|
||||
|
||||
</RadioGroup>
|
||||
</ScrollView>
|
||||
</FrameLayout>
|
||||
|
||||
<me.pawlet.setupwizard.NavigationLayout
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</LinearLayout>
|
||||
</com.google.android.setupdesign.GlifLayout>
|
||||
39
res/layout/sim_missing_page.xml
Normal file
39
res/layout/sim_missing_page.xml
Normal file
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<com.google.android.setupdesign.GlifLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/setup_wizard_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
style="@style/SudContentFrame">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/page"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
|
||||
<me.pawlet.setupwizard.NavigationLayout
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</LinearLayout>
|
||||
</com.google.android.setupdesign.GlifLayout>
|
||||
71
res/layout/update_recovery_page.xml
Normal file
71
res/layout/update_recovery_page.xml
Normal file
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<com.google.android.setupdesign.GlifLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/setup_wizard_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
style="@style/SudContentFrame">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/page"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/update_recovery_checkbox_view"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="@dimen/location_margin_left"
|
||||
android:paddingRight="@dimen/content_margin_right"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:clickable="true">
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/update_recovery_checkbox"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:duplicateParentState="true"
|
||||
android:clickable="false"
|
||||
style="@style/SudCheckBox.Multiline" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/update_recovery_setting"
|
||||
android:textStyle="bold"
|
||||
style="@style/SudCheckBox.Multiline" />
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</FrameLayout>
|
||||
|
||||
<me.pawlet.setupwizard.NavigationLayout
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</LinearLayout>
|
||||
</com.google.android.setupdesign.GlifLayout>
|
||||
132
res/layout/welcome_activity.xml
Normal file
132
res/layout/welcome_activity.xml
Normal file
@@ -0,0 +1,132 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2016 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<com.google.android.setupdesign.GlifLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/setup_wizard_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<Space
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="2" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/brand_logo"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/logo" />
|
||||
|
||||
<Space
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="0.5" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
style="@style/SudContentFrame"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom"
|
||||
android:orientation="vertical"
|
||||
android:paddingStart="@dimen/welcome_content_container_padding_start"
|
||||
android:paddingEnd="@dimen/welcome_content_container_padding_end"
|
||||
android:paddingBottom="@dimen/welcome_content_container_padding_bottom">
|
||||
|
||||
<TextView
|
||||
style="@style/WelcomeTitle"
|
||||
android:id="@+id/welcome_title"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hyphenationFrequency="none"
|
||||
android:paddingBottom="@dimen/welcome_content_container_padding_bottom" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:animateLayoutChanges="true"
|
||||
android:focusableInTouchMode="true"
|
||||
android:importantForAccessibility="no"
|
||||
android:orientation="vertical">
|
||||
|
||||
<Button
|
||||
android:id="@+id/launch_accessibility"
|
||||
style="@style/SudGlifButton.Secondary"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:drawableStart="@drawable/ic_eye"
|
||||
android:gravity="start|center"
|
||||
android:drawablePadding="@dimen/welcome_content_container_padding_end"
|
||||
android:textSize="@dimen/welcome_accessibility_text_size"
|
||||
android:textColor="?android:textColorPrimary"
|
||||
android:text="@string/accessibility_settings" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
style="@style/SudGlifButtonBar.Stackable"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom">
|
||||
|
||||
<Button
|
||||
android:id="@+id/emerg_dialer"
|
||||
style="@style/SudGlifButton.Secondary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/emergency_call" />
|
||||
|
||||
<Space
|
||||
android:layout_width="0.0dip"
|
||||
android:layout_height="0.0dip"
|
||||
android:layout_weight="1.0" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/skip"
|
||||
style="@style/SudGlifButton.Secondary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/skip"
|
||||
android:visibility="gone" />
|
||||
|
||||
<Space
|
||||
android:layout_width="0.0dip"
|
||||
android:layout_height="0.0dip"
|
||||
android:layout_weight="1.0" />
|
||||
|
||||
<Button
|
||||
android:id="@id/start"
|
||||
style="@style/SudGlifButton.Primary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/start" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</com.google.android.setupdesign.GlifLayout>
|
||||
9
res/mipmap-anydpi/ic_launcher.xml
Normal file
9
res/mipmap-anydpi/ic_launcher.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<background android:drawable="@drawable/ic_launcher_background" />
|
||||
<foreground android:drawable="@drawable/ic_launcher_foreground" />
|
||||
</adaptive-icon>
|
||||
55
res/raw-television/lineage_wizard_script.xml
Normal file
55
res/raw-television/lineage_wizard_script.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2016 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<WizardScript xmlns:wizard="http://schemas.android.com/apk/res/com.google.android.setupwizard"
|
||||
wizard:firstAction="bluetooth_setup">
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_BLUETOOTH_SETUP;end"
|
||||
id="bluetooth_setup">
|
||||
<result wizard:action="welcome" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_WELCOME;end"
|
||||
id="welcome">
|
||||
<result wizard:action="locale" />
|
||||
</WizardAction>
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_LOCALE;end"
|
||||
id="locale">
|
||||
<result wizard:action="network_setup" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_NETWORK_SETUP;end"
|
||||
id="network_setup">
|
||||
<result wizard:action="device_specific" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.DEVICE_SPECIFIC;end"
|
||||
id="device_specific">
|
||||
<result wizard:action="recovery_update" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_RECOVERY_UPDATE;end"
|
||||
id="recovery_update">
|
||||
<result wizard:action="lineage_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_SETTINGS;end"
|
||||
id="lineage_settings">
|
||||
<result wizard:action="finish" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_SETUP_COMPLETE;end"
|
||||
id="finish" />
|
||||
|
||||
</WizardScript>
|
||||
105
res/raw/lineage_wizard_script.xml
Normal file
105
res/raw/lineage_wizard_script.xml
Normal file
@@ -0,0 +1,105 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2016 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<WizardScript xmlns:wizard="http://schemas.android.com/apk/res/com.google.android.setupwizard"
|
||||
wizard:firstAction="bluetooth_setup">
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_BLUETOOTH_SETUP;end"
|
||||
id="bluetooth_setup">
|
||||
<result wizard:action="welcome" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_WELCOME;end"
|
||||
id="welcome">
|
||||
<result wizard:name="skip" wizard:resultCode="1" />
|
||||
<result wizard:action="locale" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_LOCALE;end"
|
||||
id="locale">
|
||||
<result wizard:action="sim_missing" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_SIM_MISSING;end"
|
||||
id="sim_missing">
|
||||
<result wizard:action="network_setup" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_NETWORK_SETUP;end"
|
||||
id="network_setup">
|
||||
<result wizard:action="datetime" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_DATETIME;end"
|
||||
id="datetime">
|
||||
<result wizard:action="restore" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_RESTORE_BACKUP;end"
|
||||
id="restore">
|
||||
<result wizard:action="location_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_LOCATION_SETTINGS;end"
|
||||
id="location_settings">
|
||||
<result wizard:action="device_specific" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.DEVICE_SPECIFIC;end"
|
||||
id="device_specific">
|
||||
<result wizard:action="recovery_update" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_RECOVERY_UPDATE;end"
|
||||
id="recovery_update">
|
||||
<result wizard:action="lineage_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_SETTINGS;end"
|
||||
id="lineage_settings">
|
||||
<result wizard:action="biometric_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_BIOMETRIC_SETTINGS;end"
|
||||
id="biometric_settings">
|
||||
<result wizard:action="lockscreen_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_LOCKSCREEN_SETTINGS;end"
|
||||
id="lockscreen_settings">
|
||||
<result wizard:action="theme_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.THEME_SETTINGS;end"
|
||||
id="theme_settings">
|
||||
<result wizard:action="navigation_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.NAVIGATION_SETTINGS;end"
|
||||
id="navigation_settings">
|
||||
<result wizard:action="finish" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_SETUP_COMPLETE;end"
|
||||
id="finish" />
|
||||
|
||||
</WizardScript>
|
||||
34
res/raw/lineage_wizard_script_managed_profile.xml
Normal file
34
res/raw/lineage_wizard_script_managed_profile.xml
Normal file
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2016 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: 2021 The Calyx Institute
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<WizardScript xmlns:wizard="http://schemas.android.com/apk/res/com.google.android.setupwizard"
|
||||
wizard:firstAction="welcome">
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_WELCOME;end"
|
||||
id="welcome">
|
||||
<result wizard:name="skip" wizard:resultCode="1" />
|
||||
<result wizard:action="restore" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_RESTORE_BACKUP;end"
|
||||
id="restore">
|
||||
<result wizard:action="location_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_LOCATION_SETTINGS;end"
|
||||
id="location_settings">
|
||||
<result wizard:action="finish" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_SETUP_COMPLETE;end"
|
||||
id="finish" />
|
||||
|
||||
</WizardScript>
|
||||
57
res/raw/lineage_wizard_script_user.xml
Normal file
57
res/raw/lineage_wizard_script_user.xml
Normal file
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2016 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<WizardScript xmlns:wizard="http://schemas.android.com/apk/res/com.google.android.setupwizard"
|
||||
wizard:firstAction="welcome">
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_WELCOME;end"
|
||||
id="welcome">
|
||||
<result wizard:name="skip" wizard:resultCode="1" />
|
||||
<result wizard:action="restore" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_RESTORE_BACKUP;end"
|
||||
id="restore">
|
||||
<result wizard:action="location_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_LOCATION_SETTINGS;end"
|
||||
id="location_settings">
|
||||
<result wizard:action="biometric_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_BIOMETRIC_SETTINGS;end"
|
||||
id="biometric_settings">
|
||||
<result wizard:action="lockscreen_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_LOCKSCREEN_SETTINGS;end"
|
||||
id="lockscreen_settings">
|
||||
<result wizard:action="theme_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.THEME_SETTINGS;end"
|
||||
id="theme_settings">
|
||||
<result wizard:action="navigation_settings" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.NAVIGATION_SETTINGS;end"
|
||||
id="navigation_settings">
|
||||
<result wizard:action="finish" />
|
||||
</WizardAction>
|
||||
|
||||
<WizardAction
|
||||
wizard:uri="intent:#Intent;action=me.pawlet.setupwizard.LINEAGE_SETUP_COMPLETE;end"
|
||||
id="finish" />
|
||||
|
||||
</WizardScript>
|
||||
1
res/raw/lottie_system_nav_3_button.json
Normal file
1
res/raw/lottie_system_nav_3_button.json
Normal file
File diff suppressed because one or more lines are too long
1
res/raw/lottie_system_nav_fully_gestural.json
Normal file
1
res/raw/lottie_system_nav_fully_gestural.json
Normal file
File diff suppressed because one or more lines are too long
157
res/raw/wizard_script.xml
Normal file
157
res/raw/wizard_script.xml
Normal file
@@ -0,0 +1,157 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2014 Google Inc.
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
|
||||
<!--
|
||||
The wizard:uris recorded here have the inconvenience of being generated by hand, but they allow
|
||||
for the full spread of launch flags (we need FLAG_ACTIVITY_NEW_TASK [0x10000000]), where the
|
||||
<intent> tag processed by Intent.parseIntent() does not.
|
||||
|
||||
adb shell am to-intent-uri -a com.android.setupwizard.WELCOME -f 0x10000000 \-\-ez firstRun true
|
||||
-->
|
||||
<WizardScript wizard:version="2"
|
||||
xmlns:wizard="http://schemas.android.com/apk/res/com.google.android.setupwizard">
|
||||
<WizardAction wizard:uri="intent:#Intent;action=com.android.setupwizard.OEM_PRE_SETUP;end" id="oem_pre_setup" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.WELCOME;end" id="welcome">
|
||||
<result wizard:action="check_user_unlock_qr" wizard:name="start_qr_provision" wizard:resultCode="101" />
|
||||
<result wizard:action="check_user_unlock_dpm_user_complete" wizard:name="dpm_user_complete" wizard:resultCode="111" />
|
||||
<result wizard:action="check_user_unlock_dpm_user_complete" wizard:name="dpm_profile_complete" wizard:resultCode="112" />
|
||||
<result wizard:action="check_user_unlock_work_setup_interrupted_qr_scan" wizard:name="check_user_unlock_work_setup_interrupted_qr_scan" wizard:resultCode="114" />
|
||||
<result wizard:action="check_user_unlock_work_setup_interrupted_consumer_flow" wizard:name="check_user_unlock_work_setup_interrupted_consumer_flow" wizard:resultCode="115" />
|
||||
<result wizard:action="check_user_unlock_nfc" wizard:name="check_user_unlock_nfc" wizard:resultCode="124" />
|
||||
<result wizard:action="check_user_unlock_work_setup_interrupted_nfc_tap" wizard:name="check_user_unlock_work_setup_interrupted_nfc_tap" wizard:resultCode="125" />
|
||||
<result wizard:action="check_user_unlock_fail_provisioning" wizard:name="provisioning_extras_not_saved" wizard:resultCode="128" />
|
||||
<result wizard:action="check_user_unlock" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.CHECK_USER_UNLOCK;end" id="check_user_unlock_fail_provisioning">
|
||||
<result wizard:action="fail_provisioning" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.SHOW_PROVISIONING_ERROR;end" id="fail_provisioning" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.CHECK_USER_UNLOCK;end" id="check_user_unlock_work_setup_interrupted_nfc_tap">
|
||||
<result wizard:action="work_setup_interrupted_nfc_tap" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.WORK_SETUP_INTERRUPTED;end" id="work_setup_interrupted_nfc_tap">
|
||||
<result wizard:action="nfc_provision_flow" wizard:name="continue_start_nfc_provisioning" wizard:resultCode="1" />
|
||||
<result wizard:action="factory_reset" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.CHECK_USER_UNLOCK;end" id="check_user_unlock_nfc">
|
||||
<result wizard:action="nfc_provision_flow" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_nfc_provision_flow" id="nfc_provision_flow">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.CHECK_USER_UNLOCK;end" id="check_user_unlock_work_setup_interrupted_qr_scan" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.WORK_SETUP_INTERRUPTED;end" id="work_setup_interrupted_qr_scan">
|
||||
<result wizard:action="check_user_unlock_qr" wizard:name="continue_start_qr_scan" wizard:resultCode="1" />
|
||||
<result wizard:action="factory_reset" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.CHECK_USER_UNLOCK;end" id="check_user_unlock_work_setup_interrupted_consumer_flow" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.WORK_SETUP_INTERRUPTED;end" id="work_setup_interrupted_consumer_flow">
|
||||
<result wizard:action="check_user_unlock" wizard:name="continue_start_consumer_flow" wizard:resultCode="1" />
|
||||
<result wizard:action="factory_reset" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.CHECK_USER_UNLOCK;end" id="check_user_unlock_qr">
|
||||
<result wizard:action="qr_provision_flow" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.CHECK_USER_UNLOCK;end" id="check_user_unlock_dpm_user_complete">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.CHECK_USER_UNLOCK;end" id="check_user_unlock" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.SLOTS_SELECTION;end" id="slots_selection">
|
||||
<result wizard:action="sim_missing" wizard:name="skip" wizard:resultCode="1" />
|
||||
<result wizard:action="carrier_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.SIM_MISSING;end" id="sim_missing">
|
||||
<result wizard:action="esim_intro" wizard:name="esim" wizard:resultCode="101" />
|
||||
<result wizard:action="carrier_setup" wizard:name="esim_only" wizard:resultCode="102" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.SIM_READY;end" id="sim_ready">
|
||||
<result wizard:action="carrier_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.ESIM_INTRO;end" id="esim_intro" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.CARRIER_SETUP;end" id="carrier_setup">
|
||||
<result wizard:action="sim_setup" wizard:name="all_subscriptions_completed" wizard:resultCode="98765" />
|
||||
<result wizard:action="sim_setup" wizard:name="skip" wizard:resultCode="1" />
|
||||
<result wizard:action="carrier_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.SIM_SETUP;end" id="sim_setup" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.DEVICE_OWNER_WARNING;end" id="device_owner_warning">
|
||||
<result wizard:action="check_frp" wizard:name="skip" wizard:resultCode="1" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.FACTORY_RESET;end" id="factory_reset" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.CHECK_FRP;end" id="check_frp" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.CHECK_QUICK_START;end" id="check_quick_start">
|
||||
<result wizard:action="quick_start_flow" wizard:name="quick_start" wizard:resultCode="101" />
|
||||
<result wizard:action="connect_and_update" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_quick_start_flow" id="quick_start_flow">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_connect_and_update_flow" id="connect_and_update">
|
||||
<result wizard:action="no_network_flow" wizard:name="no_connection" wizard:resultCode="1" />
|
||||
<result wizard:action="no_network_flow" wizard:name="skip_in_esim_only" wizard:resultCode="102" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_zero_touch_flow" id="zero_touch">
|
||||
<result wizard:action="post_dpm_user_flow" wizard:name="dpm_user_complete" wizard:resultCode="111" />
|
||||
<result wizard:action="add_personal_account_after_work_profile" wizard:name="add_personal_account_after_work_profile" wizard:resultCode="120" />
|
||||
<result wizard:action="setup_as_new_flow" wizard:name="financed_device_provisioning_complete" wizard:resultCode="121" />
|
||||
<result wizard:action="work_profile_setup" wizard:name="work_profile_setup" wizard:resultCode="122" />
|
||||
<result wizard:action="post_dpm_user_flow" wizard:name="device_owner_setup" wizard:resultCode="123" />
|
||||
<result wizard:action="setup_as_new_flow" wizard:name="gmscore_zero_touch" wizard:resultCode="116" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_unified_restore_flow" id="unified_restore_flow">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_post_dpm_provision_finalization_flow" id="work_profile_setup">
|
||||
<result wizard:action="transition_to_personal_profile_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_no_network_flow" id="no_network_flow">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.TRANSITION_TO_PERSONAL_PROFILE_SETUP;end" id="transition_to_personal_profile_setup">
|
||||
<result wizard:action="no_account_flow" wizard:name="skip_add_personal_account" wizard:resultCode="1" />
|
||||
<result wizard:action="add_personal_account_after_work_profile" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_account_flow" id="add_personal_account_after_work_profile">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:flow="SetupAsNewFlow" wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_account_flow" id="setup_as_new_flow">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_no_account_flow" id="no_account_flow">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_post_dpm_user_flow" id="post_dpm_user_flow">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_qr_provision_flow" id="qr_provision_flow">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=me.pawlet.setupwizard;action=me.pawlet.setupwizard.LINEAGE_RESTORE_BACKUP;end" id="oem_post_setup">
|
||||
<result wizard:action="device_specific" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=me.pawlet.setupwizard;action=me.pawlet.setupwizard.DEVICE_SPECIFIC;end" id="device_specific">
|
||||
<result wizard:action="recovery_update" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=me.pawlet.setupwizard;action=me.pawlet.setupwizard.LINEAGE_RECOVERY_UPDATE;end" id="recovery_update">
|
||||
<result wizard:action="lineage_settings" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=me.pawlet.setupwizard;action=me.pawlet.setupwizard.LINEAGE_SETTINGS;end" id="lineage_settings">
|
||||
<result wizard:action="theme_settings" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=me.pawlet.setupwizard;action=me.pawlet.setupwizard.THEME_SETTINGS;end" id="theme_settings">
|
||||
<result wizard:action="navigation_settings" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=me.pawlet.setupwizard;action=me.pawlet.setupwizard.NAVIGATION_SETTINGS;end" id="navigation_settings">
|
||||
<result wizard:action="finish" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=me.pawlet.setupwizard;action=me.pawlet.setupwizard.LINEAGE_SETUP_COMPLETE;end" id="finish">
|
||||
<result wizard:action="exit" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_post_dpm_provision_finalization_flow" id="enterprise_finalization_flow" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.KID_POST_SETUP;end" id="kid_post_setup" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.EXIT;end" id="exit" />
|
||||
</WizardScript>
|
||||
73
res/raw/wizard_script_user.xml
Normal file
73
res/raw/wizard_script_user.xml
Normal file
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2014 Google Inc.
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
|
||||
<!--
|
||||
The wizard:uris recorded here have the inconvenience of being generated by hand, but they allow
|
||||
for the full spread of launch flags (we need FLAG_ACTIVITY_NEW_TASK [0x10000000]), where the
|
||||
<intent> tag processed by Intent.parseIntent() does not.
|
||||
|
||||
adb shell am to-intent-uri -a com.android.setupwizard.WELCOME -f 0x10000000 \-\-ez firstRun true
|
||||
-->
|
||||
<WizardScript wizard:version="2"
|
||||
xmlns:wizard="http://schemas.android.com/apk/res/com.google.android.setupwizard">
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.OEM_PRE_SETUP;end" id="oem_pre_setup" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.USER_WARNING;end" id="secondary_user_warning">
|
||||
<result wizard:action="check_user_unlock_dpm_user_complete" wizard:name="dpm_user_complete" wizard:resultCode="111" />
|
||||
<result wizard:action="check_user_unlock" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.CHECK_USER_UNLOCK;end" id="check_user_unlock_dpm_user_complete">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.CHECK_USER_UNLOCK;end" id="check_user_unlock" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.NETWORK_SETTINGS;end" id="network_settings">
|
||||
<result wizard:action="wifi_settings" wizard:name="see_all_wifi" wizard:resultCode="102" />
|
||||
<result wizard:action="no_account_flow" wizard:name="skip" wizard:resultCode="1" />
|
||||
<result wizard:action="complete_in_flight_updates" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.WIFI_SETTINGS;end" id="wifi_settings">
|
||||
<result wizard:action="no_account_flow" wizard:name="skip" wizard:resultCode="1" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.COMPLETE_IN_FLIGHT_UPDATES;end" id="complete_in_flight_updates" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.PRE_CHECKIN_AND_UPDATE;B.checkCaptivePortal=true;end" id="pre_checkin_and_update">
|
||||
<result wizard:action="network_unavailable" wizard:name="timeout" wizard:resultCode="101" />
|
||||
<result wizard:action="post_checkin_and_update" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.POST_CHECKIN_AND_UPDATE;end" id="post_checkin_and_update">
|
||||
<result wizard:action="search_selector_presync" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.apps.setupwizard.searchselector;action=com.google.android.setupwizard.SELECT_SEARCH_ENGINE_PRESYNC;end" id="search_selector_presync">
|
||||
<result wizard:action="network_check" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.NETWORK_CHECK;end" id="network_check">
|
||||
<result wizard:action="network_unavailable" wizard:name="no_connection" wizard:resultCode="1" />
|
||||
<result wizard:action="load_account_intent" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.NETWORK_TIMEOUT;end" id="network_unavailable" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.LOAD_ADD_ACCOUNT_INTENT;end" id="load_account_intent" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.ACCOUNT_SETUP;end" id="account_setup">
|
||||
<result wizard:action="no_account_flow" wizard:name="skip" wizard:resultCode="1" />
|
||||
<result wizard:action="rollback_auth_early_update" wizard:name="unintentional_cancel" wizard:resultCode="102" />
|
||||
<result wizard:action="oem_post_setup" wizard:name="dpm_user_complete" wizard:resultCode="111" />
|
||||
<result wizard:action="gms_account_checkin" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_rollback_auth_early_update_flow" id="rollback_auth_early_update">
|
||||
<result wizard:action="load_account_intent" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.GMS_ACCOUNT_CHECKIN;B.saveUserName=true;end" id="gms_account_checkin">
|
||||
<result wizard:action="no_account_flow" wizard:name="skip" wizard:resultCode="1" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:flow="UserAccountFlow" wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_user_account_flow" id="account_flow">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:script="android.resource://com.google.android.setupwizard/xml/wizard_script_user_account_flow" id="no_account_flow">
|
||||
<result wizard:action="oem_post_setup" />
|
||||
</WizardAction>
|
||||
<WizardAction wizard:uri="intent:#Intent;package=me.pawlet.setupwizard;action=me.pawlet.setupwizard.LINEAGE_SETUP_COMPLETE;end" id="oem_post_setup" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.google.android.setupwizard.KID_POST_SETUP;end" id="kid_post_setup" />
|
||||
<WizardAction wizard:uri="intent:#Intent;package=com.google.android.setupwizard;action=com.android.setupwizard.EXIT;end" id="exit" />
|
||||
<WizardAction id="END_OF_SCRIPT" />
|
||||
</WizardScript>
|
||||
29
res/values-af/strings.xml
Normal file
29
res/values-af/strings.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Opstel Ghoeroe</string>
|
||||
<string name="next">Volgende</string>
|
||||
<string name="skip">Slaan oor</string>
|
||||
<string name="start">Begin</string>
|
||||
<string name="done">Gedoen</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">Net \'n sekonde\u2026</string>
|
||||
<string name="emergency_call">Noodoproep</string>
|
||||
<string name="setup_locale">Taal</string>
|
||||
<string name="sim_locale_changed">%1$s SIM opgespoor</string>
|
||||
<string name="setup_sim_missing">SIM-kaart ontbreek</string>
|
||||
<string name="sim_missing_summary" product="tablet">\'n SIM-kaart is nie bespeur in jou tablet. Om \'n SIM-kaart by te voeg, lees die instruksies wat saam gekom het met jou tablet.</string>
|
||||
<string name="sim_missing_summary" product="default">\'n SIM-kaart is nie bespeur in jou foon. Om \'n SIM-kaart by te voeg, lees die instruksies wat saam gekom het met jou foon.</string>
|
||||
<string name="setup_datetime">Datum & tyd</string>
|
||||
<string name="date_time_summary">Stel jou tydsone en pas huidige datum en tyd toe, indien nodig</string>
|
||||
<string name="setup_current_date">Huidige datum</string>
|
||||
<string name="setup_current_time">Huidige tyd</string>
|
||||
<string name="setup_location">Ligging dienste</string>
|
||||
<string name="location_access_summary"><b>Laat programme toe wat jou toestemming gevra het</b> om jou ligging inligting te gebruik. Dit kan jou huidige ligging en plekke asook liggings en plekke uit die verlede insluit.</string>
|
||||
<string name="setup_services">LineageOS kenmerke</string>
|
||||
<string name="services_os_nav_keys_label"><b>Gebruik skerm navigasie sleutels</b> in plaas van hardeware sleutels.</string>
|
||||
</resources>
|
||||
47
res/values-ar/strings.xml
Normal file
47
res/values-ar/strings.xml
Normal file
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">معالج الإعداد</string>
|
||||
<string name="next">التالي</string>
|
||||
<string name="skip">تخطي</string>
|
||||
<string name="start">البداية</string>
|
||||
<string name="done">تم</string>
|
||||
<string name="ok">موافق</string>
|
||||
<string name="loading">ثانية واحدة</string>
|
||||
<string name="setup_welcome_message">مرحبا بك في <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="emergency_call">مكالمة طوارئ</string>
|
||||
<string name="accessibility_settings">إعدادات إمكانية الوصول</string>
|
||||
<string name="setup_locale">اللغة</string>
|
||||
<string name="sim_locale_changed">تم اكتشاف %1$s SIM</string>
|
||||
<string name="setup_sim_missing">شريحة SIM مفقودة</string>
|
||||
<string name="sim_missing_summary" product="tablet">لم يتم العثور على شريحة SIM في الكمبيوتر اللوحي الخاص بك. لإدخال شريحة SIM، عليك قراءة الإرشادات المرفقة بجهازك.</string>
|
||||
<string name="sim_missing_summary" product="default">لم يتم العثور على شريحة SIM في هاتفك. لإدخال شريحة SIM، عليك قراءة الإرشادات المرفقة بجهازك.</string>
|
||||
<string name="setup_datetime">التاريخ والوقت</string>
|
||||
<string name="date_time_summary">تعيين منطقتك الزمنية وضبط الوقت والتاريخ الحالي إذا لزم الأمر</string>
|
||||
<string name="setup_current_date">التاريخ الحالي</string>
|
||||
<string name="setup_current_time">الوقت الحالي</string>
|
||||
<string name="intro_restore_title">استعادة التطبيقات والبيانات</string>
|
||||
<string name="intro_restore_button">استعادة من نسخة احتياطية</string>
|
||||
<string name="setup_location">خدمات الموقع</string>
|
||||
<string name="location_access_summary"><b>يسمح للتطبيقات التي طلبت إذنك</b> باستخدام معلومات موقعك. وقد يشمل ذلك موقعك الحالي ومواقعك السابقة.</string>
|
||||
<string name="location_agps_access_summary">عندما يكون الموقع قيد التشغيل، <b>قم بتنزيل بيانات مساعدة الأقمار الصناعية من الإنترنت</b>، مما يمكن أن يحسن أداء بدء تشغيل GPS بشكل كبير.</string>
|
||||
<string name="update_recovery_title">تحديث وضع الاسترداد (recovery)</string>
|
||||
<string name="update_recovery_description">تحديث Lineage Recovery عند أول تشغيل بعد كل تحديث.</string>
|
||||
<string name="update_recovery_warning">سيُحدث وضع الاسترداد بمجرد الانتهاء من الإعداد. إذا كنت ترغب في الحفاظ على وضع الاسترداد الحالي، قم بتعطيل هذه الميزة.</string>
|
||||
<string name="update_recovery_setting">تحديث Lineage Recovery إلى جانب نظام التشغيل</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">ميزات LineageOS</string>
|
||||
<string name="services_find_privacy_policy">يمكنك قراءة سياسة الخصوصية على جهاز آخر بزيارة <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">ساهم في تحسين <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_os_nav_keys_label"><b>استخدام مفاتيح التنقل على الشاشة</b> بدلاً من مفاتيح الأجهزة.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">التنقل</string>
|
||||
<string name="navigation_summary">اختر طريقة التنقل المفضلة</string>
|
||||
<string name="gesture_navigation">التنقل بالإيماءات</string>
|
||||
<string name="navbar_navigation">التنقل باستخدام ثلاثة أزرار</string>
|
||||
<string name="hide_gesture_hint">إخفاء تلميحات التنقل الإيمائي</string>
|
||||
</resources>
|
||||
26
res/values-as/strings.xml
Normal file
26
res/values-as/strings.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">ছেটআপ ৱিজাৰ্ড</string>
|
||||
<string name="next">পৰৱৰ্তী</string>
|
||||
<string name="skip">বাদ দিয়া</string>
|
||||
<string name="start">আৰম্ভ</string>
|
||||
<string name="ok">ঠিক</string>
|
||||
<string name="loading">মাত্র একছেকেণ্ড\u2026</string>
|
||||
<string name="emergency_call">জৰুৰীকালীন কল</string>
|
||||
<string name="sim_locale_changed">%1$s SIM চিনাক্ত কৰা হৈছে</string>
|
||||
<string name="setup_sim_missing">SIM কার্ড হেৰাইছে</string>
|
||||
<string name="sim_missing_summary" product="tablet">আপোনাৰ টেবলেটত এখন SIM কাৰ্ড চিনাক্ত কৰা হোৱা নাই। এখন SIM কাৰ্ড আন্তঃসংযোগ কৰিবলৈ আপোনাৰ ডিভাইচৰ সৈতে অহা নিৰ্দেশনা পঢ়ক।</string>
|
||||
<string name="sim_missing_summary" product="default">আপোনাৰ ফোনত এখন SIM কাৰ্ড চিনাক্ত কৰা হোৱা নাই। এখন SIM কাৰ্ড আন্তঃসংযোগ কৰিবলৈ আপোনাৰ ডিভাইচৰ সৈতে অহা নিৰ্দেশনা পঢ়ক।</string>
|
||||
<string name="setup_datetime">তাৰিখ আৰু সময়</string>
|
||||
<string name="date_time_summary">যদি প্ৰয়োজন হয় তেন্তে চলিত তাৰিখ আৰু সময় মিলাওক</string>
|
||||
<string name="setup_current_date">চলিত তাৰিখ</string>
|
||||
<string name="setup_current_time">চলিত সময়</string>
|
||||
<string name="setup_location">স্থান সেৱাসমূহ</string>
|
||||
<string name="location_access_summary">আপোনাৰ অৱস্থান তথ্য ব্যৱহাৰ কৰিবলৈ <b>অনুমতি বিচৰা এপ্প্বোৰক অনুমতি দিয়ক</b>। ইয়াত আপোনাৰ চলিত আৰু অতীতৰ অৱস্থান অন্তৰ্ভুক্ত থাকিব পাৰে।</string>
|
||||
<string name="services_os_nav_keys_label">হাৰ্ডৱেৰ কীবোৰৰ পৰিৱৰ্তে স্ক্ৰীণ <b>নেভিগেচন কীবোৰ ব্যৱহাৰ কৰক</b>।</string>
|
||||
</resources>
|
||||
52
res/values-ast-rES/strings.xml
Normal file
52
res/values-ast-rES/strings.xml
Normal file
@@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Encontu pa la configuración</string>
|
||||
<string name="next">Siguiente</string>
|
||||
<string name="skip">Saltar</string>
|
||||
<string name="start">Comenzar</string>
|
||||
<string name="done">Fecho</string>
|
||||
<string name="ok">D\'acuerdu</string>
|
||||
<string name="loading">Un segundín\u2026</string>
|
||||
<string name="setup_welcome_message">Afáyate en <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="emergency_call">Llamada d\'emerxencia</string>
|
||||
<string name="accessibility_settings">Configuración de l\'accesibilidá</string>
|
||||
<string name="setup_locale">Llingua</string>
|
||||
<string name="sim_locale_changed">Detectóse la locale «%1$s» de la SIM</string>
|
||||
<string name="setup_sim_missing">Falta la tarxeta SIM</string>
|
||||
<string name="sim_missing_summary" product="tablet">Nun se detectó nenguna tarxeta SIM na tableta. Pa inxertar una, llei les instrucciones que vinieron col preséu.</string>
|
||||
<string name="sim_missing_summary" product="default">Nun se detectó nenguna tarxeta SIM nel teléfonu. Pa inxertar una, llei les instrucciones que vinieron col preséu.</string>
|
||||
<string name="setup_datetime">Data y hora</string>
|
||||
<string name="date_time_summary">Si ye preciso, afita\'l to fusu horariu y configura la data y la hora actuales</string>
|
||||
<string name="setup_current_date">Data actual</string>
|
||||
<string name="setup_current_time">Hora actual</string>
|
||||
<string name="intro_restore_title">Restauración d\'aplicaciones y datos</string>
|
||||
<string name="intro_restore_subtitle">Si tienes una copia de seguranza de Seedvault de <xliff:g id="name" example="LineageOS">%s</xliff:g> o d\'otru SO, pues restaurala equí.</string>
|
||||
<string name="setup_location">Servicios de llocalización</string>
|
||||
<string name="location_access_summary"><b>Permitir que les aplicaciones que pidieren el to permisu</b> usen la información de la llocalización. Esta opción pue incluyir la llocalización actual y les anteriores.</string>
|
||||
<string name="location_agps_access_summary">Al activar la llocalización, <b>baxa los datos d\'asistencia satelitales d\'internet</b> que puen ameyorar muncho\'l rindimientu inicial del GPS</string>
|
||||
<string name="update_recovery_title">Anovar el recovery de Lineage</string>
|
||||
<string name="update_recovery_description">Anueva\'l recovery de Lineage nel primer arrinque de cada anovamientu.</string>
|
||||
<string name="update_recovery_warning">El recovery anuévase namás que fine la configuración. Si nun lu quies tocar, desactiva esta función.</string>
|
||||
<string name="update_recovery_setting">Anovar el recovery xunto con LineageOS</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">Funciones de LineageOS</string>
|
||||
<string name="services_pp_explanation">Estos servicios funcionen p\'aumentar les funciones del preséu. Los datos van usase d\'acuerdu cola política de privacidá de <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="services_find_privacy_policy">Pues lleer la política de privacidá n\'otru preséu pente la visita a <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Ayudar a ameyorar <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> pente l\'unviu los datos de diagnósticu y d\'usu a <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Esta información nun se pue usar pa identificate mas val p\'agabitar a los desendolcadores pa que trabayen en coses como la duración de la batería, el rindimientu de les aplicaciones y les funciones nueves de <xliff:g id="name" example="LineageOS">%3$s</xliff:g>.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navegación</string>
|
||||
<string name="navigation_summary">Escueyi\'l métodu de navegación preferíu</string>
|
||||
<string name="gesture_navigation">Navegación xestual</string>
|
||||
<string name="navbar_navigation">Navegación con trés botones</string>
|
||||
<string name="hide_gesture_hint">Esconder l\'indicador de la navegación xestual</string>
|
||||
<string name="setup_theme">Estilu</string>
|
||||
<string name="theme_summary">L\'estilu «Escuridá» usa un fondu en prieto p\'ayudar a que la batería de los preseos con pantalles OLED dure más</string>
|
||||
<string name="dark">Escuridá</string>
|
||||
<string name="light">Claridá</string>
|
||||
</resources>
|
||||
55
res/values-az/strings.xml
Normal file
55
res/values-az/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Quraşdırma Sehrbazı</string>
|
||||
<string name="next">Sonrakı</string>
|
||||
<string name="skip">Ötür</string>
|
||||
<string name="start">Başla</string>
|
||||
<string name="done">Hazırdır</string>
|
||||
<string name="ok">Oldu</string>
|
||||
<string name="loading">Bir saniyə\u2026</string>
|
||||
<string name="setup_welcome_message"><xliff:g id="name" example="LineageOS">%1$s</xliff:g> xoş gəldiniz</string>
|
||||
<string name="setup_managed_profile_welcome_message">İş profilinizi qurun</string>
|
||||
<string name="emergency_call">Fövqəladə hal zəngləri</string>
|
||||
<string name="accessibility_settings">Erişiləbilənlik ayarları</string>
|
||||
<string name="setup_locale">Dil</string>
|
||||
<string name="sim_locale_changed">%1$s SIM aşkarlandı</string>
|
||||
<string name="setup_sim_missing">SIM kart yoxdur</string>
|
||||
<string name="sim_missing_summary" product="tablet">Planşetinizdə SIM kart aşkarlanmadı. SIM kart taxmaq üçün cihazınızla birgə gələn təlimatları oxuyun.</string>
|
||||
<string name="sim_missing_summary" product="default">Telefonunuzda SIM kart aşkarlanmadı. SIM kart taxmaq üçün cihazınızla birgə gələn təlimatları oxuyun.</string>
|
||||
<string name="setup_datetime">Tarix & vaxt</string>
|
||||
<string name="date_time_summary">Saat qurşağınızı seçin və lazım olsa hazırkı tarix və saatı ayarlayın</string>
|
||||
<string name="setup_current_date">Hazırkı tarix</string>
|
||||
<string name="setup_current_time">Hazırkı vaxt</string>
|
||||
<string name="intro_restore_title">Tətbiqləri və veriləri bərpa et</string>
|
||||
<string name="intro_restore_subtitle"><xliff:g id="name" example="LineageOS">%s</xliff:g> və ya başqa bir əməliyyat sistemindən Seedvault nüsxəniz varsa, onu burada bərpa edə bilərsiniz.</string>
|
||||
<string name="intro_restore_button">Nüsxədən bərpa et</string>
|
||||
<string name="setup_location">Yerləşmə xidmətləri</string>
|
||||
<string name="location_access_summary"><b>Yer məlumatlarınızı istəyən tətbiqlərə icazə verin.</b> Bu hazırkı və keçmiş yerləşmənizi ehtiva edə bilər.</string>
|
||||
<string name="location_agps_access_summary">Yerləşmə açıq olduqda, <b>peyk köməkçi verilərini internetdən endirin</b>, bu GPS-in başlatma performansını əhəmiyyətli dərəcədə artıra bilər.</string>
|
||||
<string name="update_recovery_title">Lineage Geri qaytarma Rejimini Güncəllə</string>
|
||||
<string name="update_recovery_description">Hər güncəlləmədən sonrakı ilk açılışda Lineage Geri qaytarma rejimini güncəlləyir.</string>
|
||||
<string name="update_recovery_warning">Quraşdırma bitən kimi Geri qaytarma rejimi güncəllənəcək. Sağlam qalmasını istəyirsinizsə, bu özəlliyi sıradan çıxardın.</string>
|
||||
<string name="update_recovery_setting">ƏS ilə birgə Lineage Geri qaytarma rejimini də güncəllə</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">LineageOS özəllikləri</string>
|
||||
<string name="services_pp_explanation">Bu xidmətlər cihazınızın imkanlarını artırır. Verilər, <xliff:g id="name" example="LineageOS">%1$s</xliff:g>un məxfilik siyasətinə uyğun olaraq istifadə ediləcək.</string>
|
||||
<string name="services_find_privacy_policy">Məxfilik siyasətini fərqli cihazda <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g> ünvanını ziyarət edərək oxuya bilərsiniz</string>
|
||||
<string name="services_help_improve_cm"><xliff:g id="name" example="LineageOS">%s</xliff:g>u təkmilləşdirməyə kömək edin</string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="LineageOS">%2$s</xliff:g>-a diaqnostikanı və istifadə verilərini avtomatik göndərərək <xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g>. Bu məlumatlar, kimliyinizi müəyyənləşdirmək üçün istifadə edilmir və batareya ömrü, tətbiq performansı və yeni <xliff:g id="name" example="LineageOS">%3$s</xliff:g> xüsusiyyətləri kimi işlərlə məşğul olan komandalara kömək edir.</string>
|
||||
<string name="services_os_nav_keys_label">Donanım düymələri əvəzinə <b>ekran üzərindəki naviqasiya düymələrini istifadə edin.</b></string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Hərəkət</string>
|
||||
<string name="navigation_summary">Tərcih edilən naviqasiya üsulunu seçin</string>
|
||||
<string name="gesture_navigation">Jest hərəkəti</string>
|
||||
<string name="navbar_navigation">3 düyməli hərəkət</string>
|
||||
<string name="hide_gesture_hint">Jestlə hərəkət məsləhətini gizlət</string>
|
||||
<string name="setup_theme">Tema</string>
|
||||
<string name="theme_summary">Qaranlıq tema, bəzi ekranlarda batareyanın daha uzun müddət dayanmasına kömək etmək üçün qara arxaplan istifadə edir</string>
|
||||
<string name="dark">Qaranlıq</string>
|
||||
<string name="light">İşıqlı</string>
|
||||
</resources>
|
||||
26
res/values-be/strings.xml
Normal file
26
res/values-be/strings.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="next">Далей</string>
|
||||
<string name="skip">Прапусціць</string>
|
||||
<string name="start">Пачаць</string>
|
||||
<string name="loading">Секунду\u2026</string>
|
||||
<string name="setup_welcome_message">Вітаем у <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="emergency_call">Экстранны выклік</string>
|
||||
<string name="setup_locale">Мова</string>
|
||||
<string name="setup_datetime">Дата і час</string>
|
||||
<string name="setup_current_date">Бягучая дата</string>
|
||||
<string name="setup_current_time">Бягучы час</string>
|
||||
<string name="intro_restore_title">Аднавіць праграмы і даныя</string>
|
||||
<string name="setup_location">Службы месцазнаходжання</string>
|
||||
<string name="location_agps_access_summary">Калі месцазнаходжанне ўключана, <b>спампуйце даныя дапамогі спадарожнікаў з інтэрнэту</b>, якія могуць значна падвысіць хуткасць запуску GPS.</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="services_os_nav_keys_label"><b>Выкарыстоўваць кнопкі навігацыі на экране</b> замест апаратных.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Навігацыя</string>
|
||||
<string name="gesture_navigation">Навігацыя жэстамі</string>
|
||||
</resources>
|
||||
55
res/values-bg/strings.xml
Normal file
55
res/values-bg/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Съветник за инсталиране</string>
|
||||
<string name="next">Следваща</string>
|
||||
<string name="skip">Пропусни</string>
|
||||
<string name="start">Старт</string>
|
||||
<string name="done">Готово</string>
|
||||
<string name="ok">Добре</string>
|
||||
<string name="loading">Само секунда\u2026</string>
|
||||
<string name="setup_welcome_message">Добре дошли в <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Настройте Вашият работен профил</string>
|
||||
<string name="emergency_call">Спешни повиквания</string>
|
||||
<string name="accessibility_settings">Настройки на достъпност</string>
|
||||
<string name="setup_locale">Език</string>
|
||||
<string name="sim_locale_changed">Намерена %1$s СИМ карта</string>
|
||||
<string name="setup_sim_missing">Липсва СИМ карта</string>
|
||||
<string name="sim_missing_summary" product="tablet">СИМ карта не е открита в таблета. За да научите как да поставите СИМ карта, прочетете инструкциите на устройството.</string>
|
||||
<string name="sim_missing_summary" product="default">СИМ карта не е открита в телефона. За да научите как да поставите СИМ карта, прочетете инструкциите на устройството.</string>
|
||||
<string name="setup_datetime">Дата & час</string>
|
||||
<string name="date_time_summary">Задайте часовата си зона и настройте текущата дата и час, ако е необходимо</string>
|
||||
<string name="setup_current_date">Днешна дата</string>
|
||||
<string name="setup_current_time">Актуално време</string>
|
||||
<string name="intro_restore_title">Възстановяване на приложения и данни</string>
|
||||
<string name="intro_restore_subtitle">Ако имате Seedvault резервно копие от <xliff:g id="name" example="LineageOS">%s</xliff:g> или друга ОС, можете да го възстановите тук.</string>
|
||||
<string name="intro_restore_button">Възстановяване от архив</string>
|
||||
<string name="setup_location">Услуги за местоположение</string>
|
||||
<string name="location_access_summary"><b>Разреши приложения, които са поискали разрешение</b> за да използва информацията за вашето местоположение. Това може да включва текущото местоположение и последните места.</string>
|
||||
<string name="location_agps_access_summary">Когато местоположението е включено, <b>изтегли помощна сателитна информация от интернет</b>, за да повиши продуктивността на GPS при стартиране.</string>
|
||||
<string name="update_recovery_title">Актуализиране на Lineage Recovery</string>
|
||||
<string name="update_recovery_description">Актуализира Lineage Recovery при първо зареждане след всяка актуализация.</string>
|
||||
<string name="update_recovery_warning">Recovery ще се актуализира веднага щом завършите настройката. Ако искате да го запазите непокътнат, деактивирайте тази функция.</string>
|
||||
<string name="update_recovery_setting">Актуализирайте Lineage Recovery заедно с операционната система</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">LineageOS функции</string>
|
||||
<string name="services_pp_explanation">Тези услуги работят за вас, за да разширите възможностите на вашето устройство. Данните ще бъдат използвани в съответствие с<xliff:g id="name" example="LineageOS">%1$s</xliff:g> политика за поверителност.</string>
|
||||
<string name="services_find_privacy_policy">Можете да прочетете политиката за поверителност на друго устройство, като посетите <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Помогне за подобряване на <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> чрез автоматично изпращане на диагностични данни и данни за употреба до <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Тази информация не може да се използва, за да ви идентифицира и помага на екипи, работещи по неща като живот на батерията, производителност на приложенията и нови <xliff:g id="name" example="LineageOS">%3$s</xliff:g> функции.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Използване на клавишите за навигация на екрана</b> вместо хардуерните бутони.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Ориентиране</string>
|
||||
<string name="navigation_summary">Изберете предпочитан начин за ориентиране</string>
|
||||
<string name="gesture_navigation">Жестово ориентиране</string>
|
||||
<string name="navbar_navigation">Ориентиране с три бутона</string>
|
||||
<string name="hide_gesture_hint">Скрий подсказката за жестово ориентиране</string>
|
||||
<string name="setup_theme">Тема</string>
|
||||
<string name="theme_summary">Тъмна тема използва черен фон, за да пести батерия при някои екрани</string>
|
||||
<string name="dark">Тъмен</string>
|
||||
<string name="light">Светъл</string>
|
||||
</resources>
|
||||
39
res/values-bn/strings.xml
Normal file
39
res/values-bn/strings.xml
Normal file
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">সেটাপ উইজার্ড</string>
|
||||
<string name="next">পরবর্তী</string>
|
||||
<string name="skip">এড়িয়ে যান</string>
|
||||
<string name="start">শুরু</string>
|
||||
<string name="done">সম্পন্ন</string>
|
||||
<string name="ok">ঠিক আছে</string>
|
||||
<string name="loading">মাত্র কয়েক মুহূর্ত\u2026</string>
|
||||
<string name="setup_welcome_message"><xliff:g id="name" example="LineageOS">%1$s</xliff:g> এ আপনাকে স্বাগতম!</string>
|
||||
<string name="emergency_call">জরুরী কল</string>
|
||||
<string name="setup_locale">ভাষা</string>
|
||||
<string name="setup_sim_missing">সিম কার্ড অনুপস্থিত</string>
|
||||
<string name="sim_missing_summary" product="tablet">আপনার ট্যাবলেটে সিমকার্ড অনুপস্থিত। সিমকার্ড ঢোকাতে, আপনার ডিভাইসের নির্দেশিকা পড়ুন।</string>
|
||||
<string name="sim_missing_summary" product="default">আপনার ফোনে সিমকার্ড অনুপস্থিত। সিমকার্ড ঢোকাতে, আপনার ডিভাইসের নির্দেশিকা পড়ুন।</string>
|
||||
<string name="setup_datetime">তারিখ & সময়</string>
|
||||
<string name="date_time_summary">আপনার সময় অঞ্চল নির্ধারণ করুন এবং প্রয়োজন হলে বর্তমান তারিখ এবং সময় ঠিক করুন</string>
|
||||
<string name="setup_current_date">বর্তমান তারিখ</string>
|
||||
<string name="setup_current_time">বর্তমান সময়</string>
|
||||
<string name="setup_location">অবস্থান পরিষেবা</string>
|
||||
<string name="update_recovery_title">লিনিয়েজ রিকভারি আপডেট করুন</string>
|
||||
<string name="update_recovery_description">প্রতিবার আপডেট সম্পন্ন হওয়ার পর প্রথম বুটে লিনিয়েজ রিকভারি আপডেট করে</string>
|
||||
<string name="update_recovery_warning">সেটআপটি সম্পন্ন করার সাথে সাথে রিকভারি আপডেট হয়ে যাবে। আপনি যদি রিকভারি আপডেট করতে না চান, এই ফিচারটি অক্ষম করুন।</string>
|
||||
<string name="update_recovery_setting">OS এর সাথে সাথে লিনিয়েজ রিকভারি আপডেট করুন</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">LineageOS এর বৈশিষ্ট্যসমূহ</string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> কে সাহায্য করুন সয়ংক্রিয়ভাবে ইউজেজ ও ডায়াগনস্টিক ডাটা
|
||||
<xliff:g id="name" example="LineageOS">%2$s</xliff:g> কে পাঠানোর মাধ্যমে। এই তথ্য দ্বারা আপনাকে চিহ্নিত করা যাবে না এবং আপনি এর মাধ্যমে প্রজেক্ট এর দলকে বিভিন্ন <xliff:g id="name" example="LineageOS">%3$s</xliff:g> ফিচার তৈরিতে সাহায্য করতে পারবেন।</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">ন্যাভিগেশন</string>
|
||||
<string name="navigation_summary">আপনার পছন্দের ন্যাভিগেশন মাধ্যম বেছে নিন</string>
|
||||
<string name="gesture_navigation">জেশচার ন্যাভিগেশন</string>
|
||||
<string name="navbar_navigation">ত্রি-বোতাম ন্যাভিগেশন</string>
|
||||
</resources>
|
||||
9
res/values-bs/strings.xml
Normal file
9
res/values-bs/strings.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="services_help_improve_cm">Pomozite poboljšati <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
</resources>
|
||||
55
res/values-ca/strings.xml
Normal file
55
res/values-ca/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Assistent de configuració</string>
|
||||
<string name="next">Següent</string>
|
||||
<string name="skip">Omet</string>
|
||||
<string name="start">Inicia</string>
|
||||
<string name="done">Fet</string>
|
||||
<string name="ok">Accepta</string>
|
||||
<string name="loading">Només un seg\u2026</string>
|
||||
<string name="setup_welcome_message">Benvingut a <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Configureu el perfil de treball</string>
|
||||
<string name="emergency_call">Trucada d\'emergència</string>
|
||||
<string name="accessibility_settings">Configuració d\'accessibilitat</string>
|
||||
<string name="setup_locale">Idioma</string>
|
||||
<string name="sim_locale_changed">%1$s SIM detectada</string>
|
||||
<string name="setup_sim_missing">Falta la targeta SIM</string>
|
||||
<string name="sim_missing_summary" product="tablet">No s\'ha detectat una targeta SIM a la teva tauleta. Per inserir una targeta SIM, llegeix les instruccions que venien amb el teu dispositiu.</string>
|
||||
<string name="sim_missing_summary" product="default">No s\'ha detectat una targeta SIM al teu telèfon. Per inserir una targeta SIM, llegeix les instruccions que venien amb el teu dispositiu.</string>
|
||||
<string name="setup_datetime">Data i hora</string>
|
||||
<string name="date_time_summary">Estableix el teu fus horari i ajusta la data i hora actual si és necessari</string>
|
||||
<string name="setup_current_date">Data actual</string>
|
||||
<string name="setup_current_time">Hora actual</string>
|
||||
<string name="intro_restore_title">Restauració d\'aplicacions i dades</string>
|
||||
<string name="intro_restore_subtitle">Si teniu una còpia de seguretat del Seedvault de <xliff:g id="name" example="LineageOS">%s</xliff:g> o qualsevol altre sistema operatiu, podeu recuperar-la aquí.</string>
|
||||
<string name="intro_restore_button">Restaura des de la còpia de seguretat</string>
|
||||
<string name="setup_location">Serveis d\'ubicació</string>
|
||||
<string name="location_access_summary"><b>Permet a les aplicacions que han demanat el teu permís</b> utilitzar la teva informació d\'ubicació. Això pot incloure la teva ubicació i ubicacions anteriors.</string>
|
||||
<string name="location_agps_access_summary">Quan la ubicació està activada, <b>baixa dades d\'assistència satelital d\'Internet</b>, cosa que pot millorar en gran mesura el rendiment inicial del GPS.</string>
|
||||
<string name="update_recovery_title">Actualització del recuperador del Lineage</string>
|
||||
<string name="update_recovery_description">Actualitza el recuperador del Lineage en el primer inici posterior a cada actualització.</string>
|
||||
<string name="update_recovery_warning">La recuperació s\'actualitzarà tan bon punt hàgiu acabat la configuració. Si voleu mantenir-lo intacte, desactiveu aquesta funció.</string>
|
||||
<string name="update_recovery_setting">Actualitza el recuperador del Lineage juntament amb el sistema operatiu</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">Característiques de LineageOS</string>
|
||||
<string name="services_pp_explanation">Aquests serveis funcionen per ampliar les capacitats del vostre dispositiu. Les dades s\'utilitzaran d\'acord amb la política de privadesa de <xliff:g id="name" example="LineageOS">.</string>
|
||||
<string name="services_find_privacy_policy">Podeu llegir la política de privadesa en un altre dispositiu visitant <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Ajuda a millorar <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS"> enviant automàticament dades de diagnòstic i d\'ús a <xliff:g id="name" example="LineageOS">. Aquesta informació no es pot utilitzar per identificar-vos i dóna un cop de mà als equips que treballen en coses com ara la durada de la bateria, el rendiment de les aplicacions i les noves característiques de <xliff:g id="name" example="LineageOS">.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Utilitza les tecles de navegació en pantalla</b> enlloc de les tecles físiques.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation"/>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navegació</string>
|
||||
<string name="navigation_summary">Trieu el mètode de navegació preferit</string>
|
||||
<string name="gesture_navigation">Navegació gestual</string>
|
||||
<string name="navbar_navigation">Navegació de 3 botons</string>
|
||||
<string name="hide_gesture_hint">Amaga l\'indicador de navegació gestual</string>
|
||||
<string name="setup_theme">Tema</string>
|
||||
<string name="theme_summary">El tema fosc utilitza un fons negre per mantenir la bateria viva durant més temps en algunes pantalles</string>
|
||||
<string name="dark">Fosc</string>
|
||||
<string name="light">Clar</string>
|
||||
</resources>
|
||||
55
res/values-ckb/strings.xml
Normal file
55
res/values-ckb/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">یاریدەدەری دامەزراندن</string>
|
||||
<string name="next">دواتر</string>
|
||||
<string name="skip">تێپەڕاندن</string>
|
||||
<string name="start">دەستپێکردن</string>
|
||||
<string name="done">تەواو</string>
|
||||
<string name="ok">باشە</string>
|
||||
<string name="loading">تەنها چرکەیەک…</string>
|
||||
<string name="setup_welcome_message">بەخێربێیت بۆ <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">پڕۆفایلی کارەکەت ڕێک بخە</string>
|
||||
<string name="emergency_call">پەیوەندیی فریاگوزاری</string>
|
||||
<string name="accessibility_settings">ڕێکخستنەکانی ئاسانکاریی دەستگەیشتن</string>
|
||||
<string name="setup_locale">زمان</string>
|
||||
<string name="sim_locale_changed">سیمی %1$s دۆزرایەوە</string>
|
||||
<string name="setup_sim_missing">سیمکارت نییە</string>
|
||||
<string name="sim_missing_summary" product="tablet">سیمکارت لە ناو تاتەبژمێرەکەتدا نەدۆزرایەوە. بۆ تێکردنی سیمکارت، ئەو ڕێنماییانە بخوێنەرەوە کە لەگەڵ ئامێرەکەتدا هاتوون.</string>
|
||||
<string name="sim_missing_summary" product="default">سیمکارت لە ناو مۆبایلەکەتدا نەدۆزرایەوە. بۆ تێکردنی سیمکارت، ئەو ڕێنماییانە بخوێنەرەوە کە لەگەڵ ئامێرەکەتدا هاتوون.</string>
|
||||
<string name="setup_datetime">ڕۆژ & کات</string>
|
||||
<string name="date_time_summary">ناوچەی کاتیی خۆت دیاری بکە و ڕێکەوت و کاتی ئێستا ڕێکبخە ئەگەر پێویست بوو</string>
|
||||
<string name="setup_current_date">ڕێکەوتی ئێستا</string>
|
||||
<string name="setup_current_time">کاتی ئێستا</string>
|
||||
<string name="intro_restore_title">گەڕانەوەی بەرنامە و داتاکان</string>
|
||||
<string name="intro_restore_subtitle">ئەگەر باکبەرنامەی Seedvaultـت هەیە لە <xliff:g id="name" example="LineageOS">%s</xliff:g> یان هەر سیستمێکی تر، دەتوانیت لێرەدا بیگەڕێنیتەوە.</string>
|
||||
<string name="intro_restore_button">گەڕانەوە لە باکبەرنامەوە</string>
|
||||
<string name="setup_location">خزمەتگوزارییەکانی شوێن</string>
|
||||
<string name="location_access_summary"><b>مۆڵەت بدە بەو بەرنامانەی داوایان کردووە</b> بۆ بەکارهێنانی شوێنەکەت. ئەمە ڕێگەیان پێ دەدات شوێنی ئێستا و ڕابردووت دیاری بکەن.</string>
|
||||
<string name="location_agps_access_summary">کاتێک شوێن چالاکە، <b>داتای هاوکاری مانگی دەستکرد لە ئینتەرنێتەوە دابەزێنە</b>، کە دەبێتە هۆی باشترکردنی خێرایی دەستپێکردنی GPS.</string>
|
||||
<string name="update_recovery_title">نوێکردنەوەی ریکۆڤەری (Lineage Recovery)</string>
|
||||
<string name="update_recovery_description">دوای هەر نوێکردنەوەیەکی سیستم، ریکۆڤەریش نوێ دەکرێتەوە.</string>
|
||||
<string name="update_recovery_warning">دوای تەواوبوونی ڕێکخستنەکان، ریکۆڤەری نوێ دەکرێتەوە. ئەگەر دەتەوێت وەک خۆی بمێنێتەوە، ئەم تایبەتمەندییە ناچالاک بکە.</string>
|
||||
<string name="update_recovery_setting">نوێکردنەوەی ریکۆڤەری هاوشانی سیستم</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">تایبەتمەندییەکانی LineageOS</string>
|
||||
<string name="services_pp_explanation">ئەم خزمەتگوزارییانە بۆ فراوانکردنی تواناکانی ئامێرەکەت کار دەکەن. داتاکان بەپێی سیاسەتی پاراستنی نهێنیی <xliff:g id="name" example="LineageOS">%1$s</xliff:g> بەکاردەهێنرێن.</string>
|
||||
<string name="services_find_privacy_policy">دەتوانیت سیاسەتی پاراستنی نهێنی لە ئامێرێکی ترەوە بخوێنیتەوە بە سەردانکردنی <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">یارمەتیدان لە بەرەوپێشبردنی <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label">یارمەتیی <xliff:g id="name" example="LineageOS">%1$s</xliff:g> بدە بە ناردنی خۆکاری زانیارییەکانی دەستنیشانکردنی هەڵە و بەکارهێنان بۆ <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. ئەم زانیارییانە بۆ ناسینەوەی تۆ بەکارنایەن و یارمەتی تیمەکان دەدەن بۆ باشترکردنی تەمەنی باتری، کارکردنی بەرنامەکان و تایبەتمەندییە نوێیەکانی <xliff:g id="name" example="LineageOS">%3$s</xliff:g>.</string>
|
||||
<string name="services_os_nav_keys_label"><b>بەکارهێنانی دوگمەکانی سەر ڕوونما</b> لە جیاتی دوگمەکانی ڕەقەکاڵا.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">ڕێدۆزی (Navigation)</string>
|
||||
<string name="navigation_summary">شێوازی ڕێدۆزیی پەسەندکراو هەڵبژێرە</string>
|
||||
<string name="gesture_navigation">ڕێدۆزی بە ئاماژە جوڵەییەکان (Gestures)</string>
|
||||
<string name="navbar_navigation">ڕێدۆزی بە ٣ دوگمە</string>
|
||||
<string name="hide_gesture_hint">شاردنەوەی نیشانەی ڕێدۆزی بە ئاماژە</string>
|
||||
<string name="setup_theme">ڕوکار</string>
|
||||
<string name="theme_summary">ڕوکاری تاریک پاشبنەمای ڕەش بەکاردەهێنێت بۆ کەمکردنەوەی بەکارهێنانی باتری لە هەندێک جۆری ڕوونمادا</string>
|
||||
<string name="dark">تاریک</string>
|
||||
<string name="light">ڕووناک</string>
|
||||
</resources>
|
||||
55
res/values-cs/strings.xml
Normal file
55
res/values-cs/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Průvodce instalací</string>
|
||||
<string name="next">Další</string>
|
||||
<string name="skip">Přeskočit</string>
|
||||
<string name="start">Spustit</string>
|
||||
<string name="done">Hotovo</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">Jen chvilku\u2026</string>
|
||||
<string name="setup_welcome_message">Vítejte v\u00a0<xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Nastavte svůj pracovní profil</string>
|
||||
<string name="emergency_call">Tísňové volání</string>
|
||||
<string name="accessibility_settings">Nastavení přístupnosti</string>
|
||||
<string name="setup_locale">Jazyk</string>
|
||||
<string name="sim_locale_changed">Zjištěna %1$s SIM</string>
|
||||
<string name="setup_sim_missing">Chybí karta SIM</string>
|
||||
<string name="sim_missing_summary" product="tablet">SIM karta nebyla nalezena. Pro vložení SIM karty si přečtěte pokyny dodané s telefonem.</string>
|
||||
<string name="sim_missing_summary" product="default">SIM karta nebyla nalezena. Pro vložení SIM karty si přečtěte pokyny dodané s telefonem.</string>
|
||||
<string name="setup_datetime">Datum & čas</string>
|
||||
<string name="date_time_summary">Je-li třeba, nastavte časové pásmo a upravte aktuální datum a čas</string>
|
||||
<string name="setup_current_date">Aktuální datum</string>
|
||||
<string name="setup_current_time">Aktuální čas</string>
|
||||
<string name="intro_restore_title">Obnovit aplikace a\u00a0data</string>
|
||||
<string name="intro_restore_subtitle">Pokud máte zálohu Seedvault z <xliff:g id="name" example="LineageOS">%s</xliff:g> nebo jiného OS, můžete ji zde obnovit.</string>
|
||||
<string name="intro_restore_button">Obnovit ze zálohy</string>
|
||||
<string name="setup_location">Služby určení polohy</string>
|
||||
<string name="location_access_summary"><b>Povolí aplikacím, které žádaly oprávnění</b> použít vaše informace o poloze. To může zahrnovat vaši aktuální, ale i minulé polohy.</string>
|
||||
<string name="location_agps_access_summary">Když je poloha zapnutá, <b>stahujte data satelitní asistence z internetu</b>, což může výrazně zlepšit výkon spuštění systému GPS.</string>
|
||||
<string name="update_recovery_title">Aktualizovat Lineage recovery</string>
|
||||
<string name="update_recovery_description">Aktualizace Lineage recovery při prvním spuštění po každé aktualizaci</string>
|
||||
<string name="update_recovery_warning">Oddíl recovery bude aktualizován ihned poté, co dokončíte nastavení. Vypněte tuto funkci, jestliže si přejete ponechat oddíl nezměněný.</string>
|
||||
<string name="update_recovery_setting">Aktualizovat Lineage recovery společně s OS</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">LineageOS funkce</string>
|
||||
<string name="services_pp_explanation">Tyto služby rozšiřují funkce vašeho zařízení. Data budou použita v souladu se zásadami ochrany osobních údajů <xliff:g id="name" example="LineageOS">%1$s</xliff:g>.</string>
|
||||
<string name="services_find_privacy_policy">Zásady ochrany osobních údajů si můžete přečíst na jiném zařízení navštívením odkazu <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Pomozte vylepšit <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Pomozte vylepšit LineageOS">%1$s</xliff:g> automatickým odesíláním diagnostických dat a dat o používání <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Tato data nelze použít pro Vaší identifikaci, ale pomohou vývojářskému týmu s informacemi o výdrži baterie, výkonu aplikací a vývoji nových funkcí pro <xliff:g id="name" example="LineageOS">%2$s</xliff:g>.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Použít navigační klávesy na obrazovce</b> namísto hw kláves.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navigace</string>
|
||||
<string name="navigation_summary">Zvolte preferovanou metodu navigace</string>
|
||||
<string name="gesture_navigation">Ovládání gesty</string>
|
||||
<string name="navbar_navigation">Navigace třemi tlačítky</string>
|
||||
<string name="hide_gesture_hint">Skrýt napovědy navigačních gest</string>
|
||||
<string name="setup_theme">Motiv</string>
|
||||
<string name="theme_summary">Tmavý motiv používá černé pozadí, které pomáhá na některých modelech šetřit baterii</string>
|
||||
<string name="dark">Tmavý</string>
|
||||
<string name="light">Světlý</string>
|
||||
</resources>
|
||||
51
res/values-cy/strings.xml
Normal file
51
res/values-cy/strings.xml
Normal file
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Dewin gosod</string>
|
||||
<string name="next">Nesaf</string>
|
||||
<string name="skip">Neidio</string>
|
||||
<string name="start">Dechrau</string>
|
||||
<string name="done">Cwblhau</string>
|
||||
<string name="ok">Iawn</string>
|
||||
<string name="loading">Un eiliad\u2026</string>
|
||||
<string name="setup_welcome_message">Croeso i <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Gosod dy broffil gwaith</string>
|
||||
<string name="emergency_call">Galwad brys</string>
|
||||
<string name="accessibility_settings">Gosodiadau hygyrchedd</string>
|
||||
<string name="setup_locale">Iaith</string>
|
||||
<string name="sim_locale_changed">Synhwyrwyd %1$s SIM</string>
|
||||
<string name="setup_sim_missing">Cerdyn SIM ar goll</string>
|
||||
<string name="sim_missing_summary" product="tablet">Nid yw\'n ymddangos bod cerdyn SIM yn dy lechen. I osod cerdyn SIM, gweler y cyfarwyddiadau a ddaeth gyda dy ddyfais.</string>
|
||||
<string name="sim_missing_summary" product="default">Nid yw\'n ymddangos bod cerdyn SIM yn dy ffôn. I osod cerdyn SIM, gweler y cyfarwyddiadau a ddaeth gyda dy ddyfais.</string>
|
||||
<string name="setup_datetime">Dyddiad ac amser</string>
|
||||
<string name="date_time_summary">Gosoda dy gylchfa amser ac addasu’r dyddiad ac amser os oes angen.</string>
|
||||
<string name="setup_current_date">Dyddiad heddiw</string>
|
||||
<string name="setup_current_time">Amser nawr</string>
|
||||
<string name="intro_restore_title">Adfer apiau a data</string>
|
||||
<string name="intro_restore_button">Adfer o gopi wrth gefn</string>
|
||||
<string name="setup_location">Gwasanaethau lleoliad</string>
|
||||
<string name="location_access_summary"><b>Caniatáu i apiau sydd wedi gofyn am dy ganiatâd</b> medru defnyddio gwybodaeth dy leoliad. Gall hyn gynnwys dy leoliad cyfredol a lleoliadau yn y gorffennol.</string>
|
||||
<string name="update_recovery_title">Diweddaru Modd Adfer Lineage </string>
|
||||
<string name="update_recovery_description">Mae\'n diweddaru Lineage Recovery wrth y cychwyn cyntaf wedi pob diweddariad.</string>
|
||||
<string name="update_recovery_warning">Caiff Recovery ei ddiweddaru yn syth ar ôl cwblhau\'r gosod. Os hoffet ti ei gadw\'n gyfan, analluoga\'r nodwedd hon.</string>
|
||||
<string name="update_recovery_setting">Diweddaru Lineage Recovery ochr yn ochr â\'r OS</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">Nodweddion LineageOS</string>
|
||||
<string name="services_pp_explanation">Mae\'r gwasanaethau hyn yn gweithio i ti fedru ymestyn gallu dy ddyfais. Caiff data ei ddefnyddio yn ôl polisi preifatrwydd <xliff:g id="name" example="LineageOS">%1$s</xliff:g>.</string>
|
||||
<string name="services_find_privacy_policy">Gellir darllen y polisi preifatrwydd ar ddyfais arall wrth ymweld â <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Helpu i wella <xliff:g id="name" example="CyanogenMod">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> wrth anfon gwybodaeth ddiagnostig a defnydd data at <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Ni fydd yn bosib defnyddio\'r wybodaeth i dy adnabod di ac mi fydd o help mawr i\'r timau sy\'n gweithio ar bethau fel gwella perfformiad apiau a bywyd batri a chreu nodweddion newydd yn <xliff:g id="name" example="LineageOS">%3$s</xliff:g>.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Defnyddio bysellau llywio ar y sgrin</b> yn hytrach na botymau\'r ddyfais.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Llywio</string>
|
||||
<string name="navigation_summary">Dewisa pa ddull llywio sydd well gennyt</string>
|
||||
<string name="gesture_navigation">Llywio ag ystumiau</string>
|
||||
<string name="navbar_navigation">Llywio 3-botwm</string>
|
||||
<string name="hide_gesture_hint">Cuddio hintiau llywio ag ystumiau</string>
|
||||
<string name="theme_summary">Mae\'r thema dywyll yn defnyddio cefndir du i\'r batri aros yn fyw yn hirach gyda rhai sgriniau</string>
|
||||
<string name="dark">Tywyll</string>
|
||||
</resources>
|
||||
49
res/values-da/strings.xml
Normal file
49
res/values-da/strings.xml
Normal file
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Opsætningsvejledning</string>
|
||||
<string name="next">Næste</string>
|
||||
<string name="skip">Spring over</string>
|
||||
<string name="start">Start</string>
|
||||
<string name="done">Færdig</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">Lige et øjeblik\u2026</string>
|
||||
<string name="setup_welcome_message">Velkommen til <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="emergency_call">Nødopkald</string>
|
||||
<string name="accessibility_settings">Hjælpefunktioner</string>
|
||||
<string name="setup_locale">Sprog</string>
|
||||
<string name="sim_locale_changed">%1$s SIM fundet</string>
|
||||
<string name="setup_sim_missing">SIM-kort mangler</string>
|
||||
<string name="sim_missing_summary" product="tablet">Et SIM-kort er ikke blevet fundet i din tablet-computer. Læs de instruktioner der fulgte med din enhed, for at indsætte et SIM-kort.</string>
|
||||
<string name="sim_missing_summary" product="default">Et SIM-kort er ikke blevet fundet i din telefon. Læs de instruktioner der fulgte med din enhed, for at indsætte et SIM-kort.</string>
|
||||
<string name="setup_datetime">Dato & tid</string>
|
||||
<string name="date_time_summary">Angiv din tidszone og justér aktuel dato og tid, hvis det behøves</string>
|
||||
<string name="setup_current_date">Aktuelle dato</string>
|
||||
<string name="setup_current_time">Aktuelle tidspunkt</string>
|
||||
<string name="intro_restore_title">Gendan apps og data</string>
|
||||
<string name="intro_restore_button">Gendan fra backup</string>
|
||||
<string name="setup_location">Lokalitetstjenester</string>
|
||||
<string name="location_access_summary"><b>Tillad apps, der har bedt om din tilladelse</b> at bruge din lokalitetsinformation. Dette kan inkludere din aktuelle lokalitet og tidligere lokaliteter.</string>
|
||||
<string name="location_agps_access_summary">Når lokation er tændt, <b>download satellit hjælpedata fra internettet</b>, som kan hjælpe meget med GPS opstartsfunktion</string>
|
||||
<string name="update_recovery_title">Opdater Lineage Genddanelse</string>
|
||||
<string name="update_recovery_description">Opdateringer Lineage Recovery ved første opstart efter hver opdatering.</string>
|
||||
<string name="update_recovery_warning">Gendannelse vil blive opdateret, så snart du er færdig med opsætningen. Hvis du ønsker at holde det intakt, skal du deaktivere denne funktion.</string>
|
||||
<string name="update_recovery_setting">Opdater Lineage Recovery sammen med OS</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">LineageOS-funktioner</string>
|
||||
<string name="services_pp_explanation"><xliff:g id="name" example="LineageOS">Disse tjenester virker for at udvide funktionerne på din enhed. Data vil blive brugt i overensstemmelse med <xliff:g id="name" example="LineageOS">%1$s</xliff:g>\'s privatlivspolitik.</string>
|
||||
<string name="services_find_privacy_policy">Du kan læse privatlivspolitikken på en anden enhed ved at besøge <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Hjælp med at forbedre <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> ved automatisk at sende diagnose og forbrugsdata til <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Denne information kan ikke bruge til at identificere dig men giver en hjælpende hånd til de hold der arbejder med batteri levetid, app præstation og nye<xliff:g id="name" example="LineageOS">%3$s</xliff:g> funktioner.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Brug navigationstaster på skærm</b> i stedet for fysiske-taster.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navigation</string>
|
||||
<string name="navigation_summary">Vælg foretrukken navigationsmetode</string>
|
||||
<string name="gesture_navigation">Navigering med bevægelser</string>
|
||||
<string name="navbar_navigation">Navigering med tre knapper</string>
|
||||
<string name="hide_gesture_hint">Skjul bevægelses navigerings hint</string>
|
||||
</resources>
|
||||
55
res/values-de/strings.xml
Normal file
55
res/values-de/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Einrichtungsassistent</string>
|
||||
<string name="next">Weiter</string>
|
||||
<string name="skip">Überspringen</string>
|
||||
<string name="start">Start</string>
|
||||
<string name="done">Fertig</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">Einen Moment\u2026</string>
|
||||
<string name="setup_welcome_message">Willkommen bei <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Erstelle dein Arbeitsprofil</string>
|
||||
<string name="emergency_call">Notruf</string>
|
||||
<string name="accessibility_settings">Einstellungen zur Barrierefreiheit</string>
|
||||
<string name="setup_locale">Sprache</string>
|
||||
<string name="sim_locale_changed">%1$s SIM-Karte erkannt</string>
|
||||
<string name="setup_sim_missing">SIM-Karte fehlt</string>
|
||||
<string name="sim_missing_summary" product="tablet">Es wurde keine SIM-Karte in deinem Tablet erkannt. Wie du eine SIM-Karte einlegst, kannst du in der Bedienungsanleitung deines Tablets nachlesen.</string>
|
||||
<string name="sim_missing_summary" product="default">Es wurde keine SIM-Karte in deinem Telefon erkannt. Wie du eine SIM-Karte einlegst, kannst du in der Bedienungsanleitung des Telefons nachlesen.</string>
|
||||
<string name="setup_datetime">Datum und Uhrzeit</string>
|
||||
<string name="date_time_summary">Zeitzone setzen und ggf. aktuelles Datum und Uhrzeit anpassen</string>
|
||||
<string name="setup_current_date">Aktuelles Datum</string>
|
||||
<string name="setup_current_time">Aktuelle Zeit</string>
|
||||
<string name="intro_restore_title">Apps und Daten wiederherstellen</string>
|
||||
<string name="intro_restore_subtitle">Wenn du eine Seedvault-Sicherung von <xliff:g id="name" example="LineageOS">%s</xliff:g> oder einem anderen Betriebssystem hast, kannst du sie hier wiederherstellen.</string>
|
||||
<string name="intro_restore_button">Aus Backup wiederherstellen</string>
|
||||
<string name="setup_location">Standortdienste</string>
|
||||
<string name="location_access_summary"><b>Erlaubt Apps, die um deine Erlaubnis gebeten haben, </b>deine Standortinformationen zu verwenden. Dies können Informationen zu deinem aktuellen Standort und zu vergangenen Standorten sein.</string>
|
||||
<string name="location_agps_access_summary">Wenn die Standortbestimmung eingeschaltet ist, kannst du <b>Satellitenhilfsdaten aus dem Internet herunterladen</b>, wodurch der Startvorgang von GPS deutlich beschleunigt werden kann.</string>
|
||||
<string name="update_recovery_title">Lineage-Recovery aktualisieren</string>
|
||||
<string name="update_recovery_description">Aktualisiert das Lineage-Recovery-Image beim ersten Start nach jedem Update.</string>
|
||||
<string name="update_recovery_warning">Das Recovery-Image wird aktualisiert, sobald du die Einrichtung abgeschlossen hast. Wenn es unverändert bleiben soll, deaktiviere diese Funktion.</string>
|
||||
<string name="update_recovery_setting">Lineage-Recovery zusammen mit dem Betriebssystem aktualisieren</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">LineageOS-Funktionen</string>
|
||||
<string name="services_pp_explanation">Diese Dienste werden verwendet, um die Funktionen deines Gerätes zu erweitern. Deine Daten werden in Übereinstimmung mit der <xliff:g id="name" example="LineageOS">%1$s</xliff:g> Datenschutzerklärung verwendet.</string>
|
||||
<string name="services_find_privacy_policy">Du kannst die Datenschutzbestimmungen auf einem anderen Gerät lesen, indem du <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g> aufrufst.</string>
|
||||
<string name="services_help_improve_cm">Hilf <xliff:g id="name" example="LineageOS">%s</xliff:g> zu verbessern</string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Hilf LineageOS zu verbessern">%1$s</xliff:g>, indem du automatisch Diagnose- und Nutzungsdaten an <xliff:g id="name" example="LineageOS">%2$s</xliff:g> sendest. Diese Informationen können nicht verwendet werden, um dich zu identifizieren und helfen den Teams, die an Dingen wie Akkulaufzeit, App-Leistung und neuen <xliff:g id="name" example="LineageOS">%3$s</xliff:g>-Funktionen arbeiten.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Bildschirm-Navigationstasten</b> statt Hardwaretasten verwenden.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navigation</string>
|
||||
<string name="navigation_summary">Bevorzugte Steuerungsmethode auswählen</string>
|
||||
<string name="gesture_navigation">Steuerung durch Gesten</string>
|
||||
<string name="navbar_navigation">3-Tasten-Steuerung</string>
|
||||
<string name="hide_gesture_hint">Gestensteuerungshinweis ausblenden</string>
|
||||
<string name="setup_theme">Darstellung</string>
|
||||
<string name="theme_summary">Beim dunklen Design wird ein schwarzer Hintergrund verwendet, um bei bestimmten Displaytypen die Akkulaufzeit zu verbessern</string>
|
||||
<string name="dark">Dunkel</string>
|
||||
<string name="light">Hell</string>
|
||||
</resources>
|
||||
55
res/values-el/strings.xml
Normal file
55
res/values-el/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Οδηγός εγκατάστασης</string>
|
||||
<string name="next">Επόμενο</string>
|
||||
<string name="skip">Παράλειψη</string>
|
||||
<string name="start">Έναρξη</string>
|
||||
<string name="done">Ολοκληρώθηκε</string>
|
||||
<string name="ok">ΟΚ</string>
|
||||
<string name="loading">Μισό λεπτό\u2026</string>
|
||||
<string name="setup_welcome_message">Καλώς ήλθατε στο <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Ρύθμιση του προφίλ εργασίας σας</string>
|
||||
<string name="emergency_call">Κλήση έκτακτης ανάγκης</string>
|
||||
<string name="accessibility_settings">Ρυθμίσεις προσβασιμότητας</string>
|
||||
<string name="setup_locale">Γλώσσα</string>
|
||||
<string name="sim_locale_changed">Ανιχνεύθηκε %1$s SIM</string>
|
||||
<string name="setup_sim_missing">Η κάρτα SIM λείπει</string>
|
||||
<string name="sim_missing_summary" product="tablet">Δεν εντοπίστηκε κάρτα SIM στο tablet σας. Για να εισάγετε μια κάρτα SIM, διαβάστε τις οδηγίες που συνοδεύουν τη συσκευή σας.</string>
|
||||
<string name="sim_missing_summary" product="default">Δεν εντοπίστηκε κάρτα SIM στο τηλέφωνό σας. Για να εισάγετε μια κάρτα SIM, διαβάστε τις οδηγίες που συνοδεύουν τη συσκευή σας.</string>
|
||||
<string name="setup_datetime">Ημερομηνία & ώρα</string>
|
||||
<string name="date_time_summary">Ορίστε τη ζώνη ώρας σας και προσαρμόστε την τρέχουσα ημερομηνία και ώρα εάν χρειάζεται</string>
|
||||
<string name="setup_current_date">Τρέχουσα ημερομηνία</string>
|
||||
<string name="setup_current_time">Τρέχουσα ώρα</string>
|
||||
<string name="intro_restore_title">Επαναφορά εφαρμογών και δεδομένων</string>
|
||||
<string name="intro_restore_subtitle">Εάν έχετε ένα αντίγραφο ασφαλείας Seedvault από το <xliff:g id="name" example="LineageOS">%s</xliff:g> ή οποιοδήποτε άλλο λειτουργικό σύστημα, μπορείτε να το επαναφέρετε εδώ.</string>
|
||||
<string name="intro_restore_button">Επαναφορά από αντίγραφο ασφαλείας</string>
|
||||
<string name="setup_location">Υπηρεσίες τοποθεσίας</string>
|
||||
<string name="location_access_summary"><b>Επιτρέπει σε εφαρμογές που έχουν ζητήσει την άδειά σας</b> να χρησιμοποιήσουν τις πληροφορίες τοποθεσίας σας. Αυτό μπορεί να περιλαμβάνει την τρέχουσα και τις προηγούμενες τοποθεσίες σας.</string>
|
||||
<string name="location_agps_access_summary">Όταν η τοποθεσία είναι ενεργοποιημένη, <b>λήψη δεδομένων δορυφορικής βοήθειας από το διαδίκτυο</b>, τα οποία μπορούν να βελτιώσουν σημαντικά την απόδοση εκκίνησης GPS.</string>
|
||||
<string name="update_recovery_title">Ενημέρωση Lineage Recovery</string>
|
||||
<string name="update_recovery_description">Ενημέρωση της Lineage Recovery στην πρώτη εκκίνηση μετά από κάθε ενημέρωση.</string>
|
||||
<string name="update_recovery_warning">Η Recovery θα ενημερωθεί μόλις ολοκληρώσετε τη ρύθμιση. Αν θέλετε να κρατήσετε την τρέχουσα recovery, απενεργοποιήστε αυτή την επιλογή.</string>
|
||||
<string name="update_recovery_setting">Ενημέρωση Lineage Recovery παράλληλα με το λειτουργικό σύστημα</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">Χαρακτηριστικά LineageOS</string>
|
||||
<string name="services_pp_explanation">Οι υπηρεσίες αυτές έχουν σκοπό να επεκτείνουν τις δυνατότητες της συσκευής σας. Τα δεδομένα θα χρησιμοποιηθούν σύμφωνα με την πολιτική απορρήτου του <xliff:g id="name" example="LineageOS">%1$s</xliff:g>.</string>
|
||||
<string name="services_find_privacy_policy">Μπορείτε να διαβάσετε την πολιτική απορρήτου σε μια άλλη συσκευή επισκεπτόμενοι το <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Βοηθήστε στη βελτίωση του <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> στέλνοντας αυτόματα διαγνωστικά δεδομένα και στατιστικά χρήσης στο <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Αυτές οι πληροφορίες δε μπορούν να χρησιμοποιηθούν για να σας αναγνωρίσουν και δίνουν ένα χέρι βοηθείας στις ομάδες που εργάζονται σε θέματα όπως η διάρκεια ζωής μπαταρίας, επιδόσεις εφαρμογών και νέα χαρακτηριστικά του <xliff:g id="name" example="LineageOS">%2$s</xliff:g>.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Κάντε χρήση των πλήκτρων πλοήγησης της οθόνης</b> αντί των φυσικών πλήκτρων.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Πλοήγηση</string>
|
||||
<string name="navigation_summary">Επιλογή προτιμώμενης μεθόδου πλοήγησης</string>
|
||||
<string name="gesture_navigation">Πλοήγηση με χειρονομίες</string>
|
||||
<string name="navbar_navigation">Πλοήγηση με τρία πλήκτρα</string>
|
||||
<string name="hide_gesture_hint">Απόκρυψη υποδείξεων πλοήγησης με χειρονομίες</string>
|
||||
<string name="setup_theme">Θέμα</string>
|
||||
<string name="theme_summary">Το Σκούρο θέμα χρησιμοποιεί μαύρο φόντο για να συμβάλλει στην αύξηση της διάρκειας της μπαταρίας σε ορισμένες οθόνες</string>
|
||||
<string name="dark">Σκούρο</string>
|
||||
<string name="light">Ανοιχτόχρωμο</string>
|
||||
</resources>
|
||||
55
res/values-en-rAU/strings.xml
Normal file
55
res/values-en-rAU/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Setup Wizard</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="skip">Skip</string>
|
||||
<string name="start">Start</string>
|
||||
<string name="done">Done</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">Just a sec\u2026</string>
|
||||
<string name="setup_welcome_message">Welcome to <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Set up your work profile</string>
|
||||
<string name="emergency_call">Emergency call</string>
|
||||
<string name="accessibility_settings">Accessibility settings</string>
|
||||
<string name="setup_locale">Language</string>
|
||||
<string name="sim_locale_changed">%1$s SIM detected</string>
|
||||
<string name="setup_sim_missing">SIM card missing</string>
|
||||
<string name="sim_missing_summary" product="tablet">A SIM card has not been detected in your tablet. To insert a SIM card, read the instructions that came with your device.</string>
|
||||
<string name="sim_missing_summary" product="default">A SIM card has not been detected in your phone. To insert a SIM card, read the instructions that came with your device.</string>
|
||||
<string name="setup_datetime">Date & time</string>
|
||||
<string name="date_time_summary">Set your time zone and adjust current date and time if needed</string>
|
||||
<string name="setup_current_date">Current date</string>
|
||||
<string name="setup_current_time">Current time</string>
|
||||
<string name="intro_restore_title">Restore apps and data</string>
|
||||
<string name="intro_restore_subtitle">If you have a Seedvault backup from <xliff:g id="name" example="LineageOS">%s</xliff:g> or any other OS, you can restore it here.</string>
|
||||
<string name="intro_restore_button">Restore from backup</string>
|
||||
<string name="setup_location">Location services</string>
|
||||
<string name="location_access_summary"><b>Allow apps that have asked your permission</b> to use your location information. This may include your current location and past locations.</string>
|
||||
<string name="location_agps_access_summary">When location is on, <b>download satellite assistance data from the internet</b>, which can greatly improve the GPS startup performance.</string>
|
||||
<string name="update_recovery_title">Update Lineage Recovery</string>
|
||||
<string name="update_recovery_description">Updates Lineage Recovery on first boot subsequent to every update.</string>
|
||||
<string name="update_recovery_warning">Recovery will be updated as soon as you finish the setup. If you wish to keep it intact, disable this feature.</string>
|
||||
<string name="update_recovery_setting">Update Lineage Recovery alongside the OS</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">LineageOS features</string>
|
||||
<string name="services_pp_explanation">These services work for you to extend the capabilities of your device. Data will be used in accordance with <xliff:g id="name" example="LineageOS">%1$s</xliff:g>\'s privacy policy.</string>
|
||||
<string name="services_find_privacy_policy">You can read the privacy policy on another device by visiting <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Help improve <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> by automatically sending diagnostic and usage data to <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. This information can’t be used to identify you and lends a hand to teams working on things like battery life, app performance, and new <xliff:g id="name" example="LineageOS">%3$s</xliff:g> features.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Use on screen navigation keys</b> instead of hardware keys.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navigation</string>
|
||||
<string name="navigation_summary">Choose preferred navigation method</string>
|
||||
<string name="gesture_navigation">Gesture navigation</string>
|
||||
<string name="navbar_navigation">3-button navigation</string>
|
||||
<string name="hide_gesture_hint">Hide gestural navigation hint</string>
|
||||
<string name="setup_theme">Theme</string>
|
||||
<string name="theme_summary">Dark theme uses a black background to help keep battery alive longer on some screens</string>
|
||||
<string name="dark">Dark</string>
|
||||
<string name="light">Light</string>
|
||||
</resources>
|
||||
55
res/values-en-rCA/strings.xml
Normal file
55
res/values-en-rCA/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Setup Wizard</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="skip">Skip</string>
|
||||
<string name="start">Start</string>
|
||||
<string name="done">Done</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">Just a sec\u2026</string>
|
||||
<string name="setup_welcome_message">Welcome to <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Set up your work profile</string>
|
||||
<string name="emergency_call">Emergency call</string>
|
||||
<string name="accessibility_settings">Accessibility settings</string>
|
||||
<string name="setup_locale">Language</string>
|
||||
<string name="sim_locale_changed">%1$s SIM detected</string>
|
||||
<string name="setup_sim_missing">SIM card missing</string>
|
||||
<string name="sim_missing_summary" product="tablet">A SIM card has not been detected in your tablet. To insert a SIM card, read the instructions that came with your device.</string>
|
||||
<string name="sim_missing_summary" product="default">A SIM card has not been detected in your phone. To insert a SIM card, read the instructions that came with your device.</string>
|
||||
<string name="setup_datetime">Date & time</string>
|
||||
<string name="date_time_summary">Set your time zone and adjust current date and time if needed</string>
|
||||
<string name="setup_current_date">Current date</string>
|
||||
<string name="setup_current_time">Current time</string>
|
||||
<string name="intro_restore_title">Restore apps and data</string>
|
||||
<string name="intro_restore_subtitle">If you have a Seedvault backup from <xliff:g id="name" example="LineageOS">%s</xliff:g> or any other OS, you can restore it here.</string>
|
||||
<string name="intro_restore_button">Restore from backup</string>
|
||||
<string name="setup_location">Location services</string>
|
||||
<string name="location_access_summary"><b>Allow apps that have asked your permission</b> to use your location information. This may include your current location and past locations.</string>
|
||||
<string name="location_agps_access_summary">When location is on, <b>download satellite assistance data from the internet</b>, which can greatly improve the GPS startup performance.</string>
|
||||
<string name="update_recovery_title">Update Lineage Recovery</string>
|
||||
<string name="update_recovery_description">Updates Lineage Recovery on first boot subsequent to every update.</string>
|
||||
<string name="update_recovery_warning">Recovery will be updated as soon as you finish the setup. If you wish to keep it intact, disable this feature.</string>
|
||||
<string name="update_recovery_setting">Update Lineage Recovery alongside the OS</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">LineageOS features</string>
|
||||
<string name="services_pp_explanation">These services work for you to extend the capabilities of your device. Data will be used in accordance with <xliff:g id="name" example="LineageOS">%1$s</xliff:g>\'s privacy policy.</string>
|
||||
<string name="services_find_privacy_policy">You can read the privacy policy on another device by visiting <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Help improve <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> by automatically sending diagnostic and usage data to <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. This information can’t be used to identify you and lends a hand to teams working on things like battery life, app performance, and new <xliff:g id="name" example="LineageOS">%3$s</xliff:g> features.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Use on screen navigation keys</b> instead of hardware keys.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navigation</string>
|
||||
<string name="navigation_summary">Choose preferred navigation method</string>
|
||||
<string name="gesture_navigation">Gesture navigation</string>
|
||||
<string name="navbar_navigation">3-button navigation</string>
|
||||
<string name="hide_gesture_hint">Hide gestural navigation hint</string>
|
||||
<string name="setup_theme">Theme</string>
|
||||
<string name="theme_summary">Dark theme uses a black background to help keep battery alive longer on some screens</string>
|
||||
<string name="dark">Dark</string>
|
||||
<string name="light">Light</string>
|
||||
</resources>
|
||||
55
res/values-en-rGB/strings.xml
Normal file
55
res/values-en-rGB/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Setup Wizard</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="skip">Skip</string>
|
||||
<string name="start">Start</string>
|
||||
<string name="done">Done</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">Just a sec\u2026</string>
|
||||
<string name="setup_welcome_message">Welcome to <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Set up your work profile</string>
|
||||
<string name="emergency_call">Emergency call</string>
|
||||
<string name="accessibility_settings">Accessibility settings</string>
|
||||
<string name="setup_locale">Language</string>
|
||||
<string name="sim_locale_changed">%1$s SIM detected</string>
|
||||
<string name="setup_sim_missing">SIM card missing</string>
|
||||
<string name="sim_missing_summary" product="tablet">A SIM card has not been detected in your tablet. To insert a SIM card, read the instructions that came with your device.</string>
|
||||
<string name="sim_missing_summary" product="default">A SIM card has not been detected in your phone. To insert a SIM card, read the instructions that came with your device.</string>
|
||||
<string name="setup_datetime">Date & time</string>
|
||||
<string name="date_time_summary">Set your time zone and adjust current date and time if needed</string>
|
||||
<string name="setup_current_date">Current date</string>
|
||||
<string name="setup_current_time">Current time</string>
|
||||
<string name="intro_restore_title">Restore apps and data</string>
|
||||
<string name="intro_restore_subtitle">If you have a Seedvault backup from <xliff:g id="name" example="LineageOS">%s</xliff:g> or any other OS, you can restore it here.</string>
|
||||
<string name="intro_restore_button">Restore from backup</string>
|
||||
<string name="setup_location">Location services</string>
|
||||
<string name="location_access_summary"><b>Allow apps that have asked your permission</b> to use your location information. This may include your current location and past locations.</string>
|
||||
<string name="location_agps_access_summary">When location is on, <b>download satellite assistance data from the Internet</b>, which can greatly improve the GPS startup performance.</string>
|
||||
<string name="update_recovery_title">Update Lineage Recovery</string>
|
||||
<string name="update_recovery_description">Updates Lineage Recovery on first boot subsequent to every update.</string>
|
||||
<string name="update_recovery_warning">Recovery will be updated as soon as you finish the setup. If you wish to keep it intact, disable this feature.</string>
|
||||
<string name="update_recovery_setting">Update Lineage Recovery alongside the OS</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">LineageOS features</string>
|
||||
<string name="services_pp_explanation">These services work for you to extend the capabilities of your device. Data will be used in accordance with <xliff:g id="name" example="LineageOS">%1$s</xliff:g>\'s privacy policy.</string>
|
||||
<string name="services_find_privacy_policy">You can read the privacy policy on another device by visiting <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Help improve <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> by automatically sending diagnostic and usage data to <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. This information can’t be used to identify you and lends a hand to teams working on things like battery life, app performance, and new <xliff:g id="name" example="LineageOS">%3$s</xliff:g> features.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Use on screen navigation keys</b> instead of hardware keys.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navigation</string>
|
||||
<string name="navigation_summary">Choose preferred navigation method</string>
|
||||
<string name="gesture_navigation">Gesture navigation</string>
|
||||
<string name="navbar_navigation">3-button navigation</string>
|
||||
<string name="hide_gesture_hint">Hide gestural navigation hint</string>
|
||||
<string name="setup_theme">Theme</string>
|
||||
<string name="theme_summary">Dark theme uses a black background to help keep battery alive longer on some screens</string>
|
||||
<string name="dark">Dark</string>
|
||||
<string name="light">Light</string>
|
||||
</resources>
|
||||
55
res/values-en-rIN/strings.xml
Normal file
55
res/values-en-rIN/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Setup Wizard</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="skip">Skip</string>
|
||||
<string name="start">Start</string>
|
||||
<string name="done">Done</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">Just a sec\u2026</string>
|
||||
<string name="setup_welcome_message">Welcome to <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Set up your work profile</string>
|
||||
<string name="emergency_call">Emergency call</string>
|
||||
<string name="accessibility_settings">Accessibility settings</string>
|
||||
<string name="setup_locale">Language</string>
|
||||
<string name="sim_locale_changed">%1$s SIM detected</string>
|
||||
<string name="setup_sim_missing">SIM card missing</string>
|
||||
<string name="sim_missing_summary" product="tablet">A SIM card has not been detected in your tablet. To insert a SIM card, read the instructions that came with your device.</string>
|
||||
<string name="sim_missing_summary" product="default">A SIM card has not been detected in your phone. To insert a SIM card, read the instructions that came with your device.</string>
|
||||
<string name="setup_datetime">Date & time</string>
|
||||
<string name="date_time_summary">Set your time zone and adjust current date and time if needed</string>
|
||||
<string name="setup_current_date">Current date</string>
|
||||
<string name="setup_current_time">Current time</string>
|
||||
<string name="intro_restore_title">Restore apps and data</string>
|
||||
<string name="intro_restore_subtitle">If you have a Seedvault backup from <xliff:g id="name" example="LineageOS">%s</xliff:g> or any other OS, you can restore it here.</string>
|
||||
<string name="intro_restore_button">Restore from backup</string>
|
||||
<string name="setup_location">Location services</string>
|
||||
<string name="location_access_summary"><b>Allow apps that have asked your permission</b> to use your location information. This may include your current location and past locations.</string>
|
||||
<string name="location_agps_access_summary">When location is on, <b>download satellite assistance data from the internet</b>, which can greatly improve the GPS startup performance.</string>
|
||||
<string name="update_recovery_title">Update Lineage Recovery</string>
|
||||
<string name="update_recovery_description">Updates Lineage Recovery on first boot subsequent to every update.</string>
|
||||
<string name="update_recovery_warning">Recovery will be updated as soon as you finish the setup. If you wish to keep it intact, disable this feature.</string>
|
||||
<string name="update_recovery_setting">Update Lineage Recovery alongside the OS</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">LineageOS features</string>
|
||||
<string name="services_pp_explanation">These services work for you to extend the capabilities of your device. Data will be used in accordance with <xliff:g id="name" example="LineageOS">%1$s</xliff:g>\'s privacy policy.</string>
|
||||
<string name="services_find_privacy_policy">You can read the privacy policy on another device by visiting <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Help improve <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> by automatically sending diagnostic and usage data to <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. This information can’t be used to identify you and lends a hand to teams working on things like battery life, app performance, and new <xliff:g id="name" example="LineageOS">%3$s</xliff:g> features.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Use on screen navigation keys</b> instead of hardware keys.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navigation</string>
|
||||
<string name="navigation_summary">Choose preferred navigation method</string>
|
||||
<string name="gesture_navigation">Gesture navigation</string>
|
||||
<string name="navbar_navigation">3-button navigation</string>
|
||||
<string name="hide_gesture_hint">Hide gestural navigation hint</string>
|
||||
<string name="setup_theme">Theme</string>
|
||||
<string name="theme_summary">Dark theme uses a black background to help keep battery alive longer on some screens</string>
|
||||
<string name="dark">Dark</string>
|
||||
<string name="light">Light</string>
|
||||
</resources>
|
||||
9
res/values-es-rMX/strings.xml
Normal file
9
res/values-es-rMX/strings.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="sim_locale_changed">%1$s SIM detectada</string>
|
||||
</resources>
|
||||
31
res/values-es-rUS/strings.xml
Normal file
31
res/values-es-rUS/strings.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Asistente de configuración</string>
|
||||
<string name="next">Siguiente</string>
|
||||
<string name="skip">Omitir</string>
|
||||
<string name="start">Inicio</string>
|
||||
<string name="done">Listo</string>
|
||||
<string name="ok">Aceptar</string>
|
||||
<string name="loading">Un segundo\u2026</string>
|
||||
<string name="emergency_call">Llamada de emergencia</string>
|
||||
<string name="setup_locale">Idioma</string>
|
||||
<string name="sim_locale_changed">%1$s SIM detectada</string>
|
||||
<string name="setup_sim_missing">Falta la tarjeta SIM</string>
|
||||
<string name="sim_missing_summary" product="tablet">No se ha detectado una tarjeta SIM en la tableta. Para insertar una tarjeta SIM, lee las instrucciones que vienen con la tableta.</string>
|
||||
<string name="sim_missing_summary" product="default">No se ha detectado una tarjeta SIM en el teléfono. Para insertar una tarjeta SIM, lee las instrucciones que vienen con el teléfono.</string>
|
||||
<string name="setup_datetime">Fecha y hora</string>
|
||||
<string name="date_time_summary">Configurar la zona horaria y ajustar la fecha y hora actuales si es necesario</string>
|
||||
<string name="setup_current_date">Fecha actual</string>
|
||||
<string name="setup_current_time">Hora actual</string>
|
||||
<string name="intro_restore_button">Restaurar desde copia de seguridad</string>
|
||||
<string name="setup_location">Servicios de ubicación</string>
|
||||
<string name="location_access_summary"><b>Permitir aplicaciones que han solicitado el permiso</b> para usar la información de ubicación. Esto puede incluir la ubicación actual y otras ubicaciones recientes.</string>
|
||||
<string name="setup_services">Características de LineageOS</string>
|
||||
<string name="services_help_improve_cm">Ayuda a mejorar <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_os_nav_keys_label"><b>Usar las teclas de navegación en pantalla</b> en vez de las teclas físicas.</string>
|
||||
</resources>
|
||||
55
res/values-es/strings.xml
Normal file
55
res/values-es/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Asistente de configuración</string>
|
||||
<string name="next">Siguiente</string>
|
||||
<string name="skip">Omitir</string>
|
||||
<string name="start">Iniciar</string>
|
||||
<string name="done">Listo</string>
|
||||
<string name="ok">Aceptar</string>
|
||||
<string name="loading">Un segundo\u2026</string>
|
||||
<string name="setup_welcome_message">Bienvenida/o a <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Configura tu perfil de trabajo</string>
|
||||
<string name="emergency_call">Llamada de emergencia</string>
|
||||
<string name="accessibility_settings">Ajustes de accesibilidad</string>
|
||||
<string name="setup_locale">Idioma</string>
|
||||
<string name="sim_locale_changed">%1$s SIM detectada</string>
|
||||
<string name="setup_sim_missing">Falta la tarjeta SIM</string>
|
||||
<string name="sim_missing_summary" product="tablet">No se ha detectado ninguna tarjeta SIM. Para insertar una, lee las instrucciones de uso de la tableta.</string>
|
||||
<string name="sim_missing_summary" product="default">No se ha detectado ninguna tarjeta SIM. Para insertar una, lee las instrucciones de uso del teléfono.</string>
|
||||
<string name="setup_datetime">Fecha y hora</string>
|
||||
<string name="date_time_summary">Configura la zona horaria y ajusta la fecha y hora actuales si es necesario</string>
|
||||
<string name="setup_current_date">Fecha actual</string>
|
||||
<string name="setup_current_time">Hora actual</string>
|
||||
<string name="intro_restore_title">Restaurar aplicaciones y datos</string>
|
||||
<string name="intro_restore_subtitle">Si tienes una copia de seguridad Seedvault de <xliff:g id="name" example="LineageOS">%s</xliff:g> o de cualquier otro sistema operativo, puedes restaurarla aquí.</string>
|
||||
<string name="intro_restore_button">Restaurar desde una copia de seguridad</string>
|
||||
<string name="setup_location">Servicios de ubicación</string>
|
||||
<string name="location_access_summary"><b>Permitir que las aplicaciones que te hayan pedido permiso</b> utilicen tu información de ubicación. Esto puede incluir tu ubicación actual y ubicaciones anteriores.</string>
|
||||
<string name="location_agps_access_summary">Cuando la ubicación está activada en <b>Descargar datos de asistencia por satélite de Internet</b>, puede mejorar en gran medida el rendimiento de arranque del GPS.</string>
|
||||
<string name="update_recovery_title">Actualizar el modo de recuperación de Lineage</string>
|
||||
<string name="update_recovery_description">Actualiza el modo de recuperación de Lineage en el primer arranque posterior a cada actualización.</string>
|
||||
<string name="update_recovery_warning">El modo de recuperación se actualizará tan pronto como finalice la configuración. Si deseas mantenerlo intacto, desactiva esta función.</string>
|
||||
<string name="update_recovery_setting">Actualizar el modo de recuperación de Lineage junto con el sistema operativo</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">Características de LineageOS</string>
|
||||
<string name="services_pp_explanation">Estos servicios sirven para extender las capacidades de tu dispositivo. Los datos se utilizarán de acuerdo a la política de privacidad de <xliff:g id="name" example="LineageOS">%1$s</xliff:g>.</string>
|
||||
<string name="services_find_privacy_policy">Puedes leer la política de privacidad en otro dispositivo visitando <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Ayuda a mejorar <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> enviando automáticamente datos de diagnóstico y uso a <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Esta información no puede usarse para identificarte y ayuda a los equipos que trabajan en aspectos como la duración de la batería, el rendimiento de la aplicación y las nuevas funciones de <xliff:g id="name" example="LineageOS">%3$s</xliff:g>.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Usar las teclas de navegación en pantalla</b> en vez de las teclas físicas.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navegación</string>
|
||||
<string name="navigation_summary">Elegir método de navegación preferido</string>
|
||||
<string name="gesture_navigation">Navegación por gestos</string>
|
||||
<string name="navbar_navigation">Navegación con tres botones</string>
|
||||
<string name="hide_gesture_hint">Ocultar la ayuda de navegación por gestos.</string>
|
||||
<string name="setup_theme">Tema</string>
|
||||
<string name="theme_summary">El tema oscuro utiliza un fondo negro para que la batería dure más en algunas pantallas</string>
|
||||
<string name="dark">Oscuro</string>
|
||||
<string name="light">Claro</string>
|
||||
</resources>
|
||||
30
res/values-et/strings.xml
Normal file
30
res/values-et/strings.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Häälestusviisard</string>
|
||||
<string name="next">Järgmine</string>
|
||||
<string name="skip">Jäta vahele</string>
|
||||
<string name="start">Alusta</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">Oota hetk\u2026</string>
|
||||
<string name="emergency_call">Hädaabinumbril helistamine</string>
|
||||
<string name="setup_sim_missing">SIM-kaart on puudu</string>
|
||||
<string name="sim_missing_summary" product="tablet">SIM-kaarti ei leitud. SIM-kaardi sisestamiseks tutvu seadmega kaasas oleva kasutusjuhendiga.</string>
|
||||
<string name="sim_missing_summary" product="default">SIM-kaarti ei leitud. SIM-kaardi sisestamiseks tutvu seadmega kaasas oleva kasutusjuhendiga.</string>
|
||||
<string name="setup_datetime">Kuupäev & kellaaeg</string>
|
||||
<string name="date_time_summary">Määra ajavöönd ning kohandada vajadusel tänast kuupäeva ja kellaaega</string>
|
||||
<string name="setup_current_date">Tänane kuupäev</string>
|
||||
<string name="setup_current_time">Praegune kellaaeg</string>
|
||||
<string name="intro_restore_title">Taasta rakendused ja andmed</string>
|
||||
<string name="intro_restore_button">Taasta varundusest</string>
|
||||
<string name="setup_location">Asukohateenused</string>
|
||||
<string name="location_access_summary"><b>Luba rakendustel, mis on küsinud Teie nõusolekut</b> kasutada Teie asukoha informatsiooni. See võib tähendada nii Teie praegust kui ka eelnevaid asukohti.</string>
|
||||
<string name="update_recovery_title">Uuenda Lineage Recoveryt</string>
|
||||
<string name="update_recovery_setting">Uuenda Lineage Recoveryt koos OSiga</string>
|
||||
<string name="services_help_improve_cm">Aita parendada <xliff:g id="name" example="LineageOS">%s</xliff:g>i</string>
|
||||
<string name="services_os_nav_keys_label"><b>Kasuta ekraanil olevaid navigeerimisklahve</b> riistvaraliste nuppude asemel.</string>
|
||||
</resources>
|
||||
30
res/values-eu/strings.xml
Normal file
30
res/values-eu/strings.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Ezarpen laguntzailea</string>
|
||||
<string name="next">Hurrengoa</string>
|
||||
<string name="skip">Saltatu</string>
|
||||
<string name="start">Hasi</string>
|
||||
<string name="done">Eginda</string>
|
||||
<string name="ok">Ados</string>
|
||||
<string name="loading">Une bat\u2026</string>
|
||||
<string name="emergency_call">Larrialdi deia</string>
|
||||
<string name="setup_locale">Hizkuntza</string>
|
||||
<string name="sim_locale_changed">%1$s SIM antzeman da</string>
|
||||
<string name="setup_sim_missing">SIM txartela falta da</string>
|
||||
<string name="sim_missing_summary" product="tablet">Ez da SIM txartelik antzeman zure tabletan. SIM txartel bat sartzeko jarraitu zure gailuarekin zetozen argibideak.</string>
|
||||
<string name="sim_missing_summary" product="default">Ez da SIM txartelik antzeman zure telefonoan. SIM txartel bat sartzeko jarraitu zure gailuarekin zetozen argibideak.</string>
|
||||
<string name="setup_datetime">Data eta ordua</string>
|
||||
<string name="date_time_summary">Ezarri zure ordu-zona eta doitu oraingo data beharrezkoa bada</string>
|
||||
<string name="setup_current_date">Uneko data</string>
|
||||
<string name="setup_current_time">Uneko ordua</string>
|
||||
<string name="setup_location">Kokaleku zerbitzuak</string>
|
||||
<string name="location_access_summary"><b>Baimena eskatu dizuten aplikazioei</b> zure kokaleku informazioa erabiltzea ahalbidetu. Uneko zein iraganeko kokalekuak barne.</string>
|
||||
<string name="setup_services">LineageOS ezaugarriak</string>
|
||||
<string name="services_help_improve_cm">Lagundu <xliff:g id="name" example="LineageOS">%s</xliff:g> hobetzen</string>
|
||||
<string name="services_os_nav_keys_label"><b>Erabili pantailako nabigazio teklak</b> hardware teklen ordez.</string>
|
||||
</resources>
|
||||
55
res/values-fa/strings.xml
Normal file
55
res/values-fa/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">راهنمای راهاندازی</string>
|
||||
<string name="next">بعدی</string>
|
||||
<string name="skip">پرش</string>
|
||||
<string name="start">شروع</string>
|
||||
<string name="done">انجام شد</string>
|
||||
<string name="ok">قبول</string>
|
||||
<string name="loading">یک لحظه لطفا\u2026</string>
|
||||
<string name="setup_welcome_message">خوش آمدید به <xliff:g id="name" example="LineageOS"/></string>
|
||||
<string name="setup_managed_profile_welcome_message">نمایه کاری خود را تنظیم کنید</string>
|
||||
<string name="emergency_call">تماس اضطراری</string>
|
||||
<string name="accessibility_settings">تنظیمات دسترسی</string>
|
||||
<string name="setup_locale">زبان</string>
|
||||
<string name="sim_locale_changed">%1$s سیم کارت یافت شد</string>
|
||||
<string name="setup_sim_missing">دستگاه فاقد سیم کارت است</string>
|
||||
<string name="sim_missing_summary" product="tablet">سیم کارتی در تبلت شما یافت نشد. برای قرار دادن یک سیم کارت، دستورالعمل همراه دستگاه خود را بخوانید.</string>
|
||||
<string name="sim_missing_summary" product="default">سیم کارتی در گوشی شما یافت نشد. برای قرار دادن یک سیم کارت، دستورالعمل همراه دستگاه خود را بخوانید.</string>
|
||||
<string name="setup_datetime">تاریخ و زمان</string>
|
||||
<string name="date_time_summary">منطقهی زمانی و تاریخ فعلی را در صورت نیاز تنظیم کنید</string>
|
||||
<string name="setup_current_date">تاریخ کنونی</string>
|
||||
<string name="setup_current_time">زمان کنونی</string>
|
||||
<string name="intro_restore_title">برنامه ها و داده ها را بازیابی کنید</string>
|
||||
<string name="intro_restore_subtitle">اگر نسخه پشتیبان Seedvault از <xliff:g id="name" example="LineageOS">%s</xliff:g> یا هر سیستمعامل دیگری دارید، میتوانید آن را در اینجا بازیابی کنید.</string>
|
||||
<string name="intro_restore_button">بازیابی از پشتیبانگیری</string>
|
||||
<string name="setup_location">خدمات مکان</string>
|
||||
<string name="location_access_summary"><b>به برنامههایی که درخواست مکان میکنند اجازه دهید</b> از اطلاعات مکان شما استفاده کنند. ممکن است این استفاده شامل مکان فعلی و قبلی شما باشد.</string>
|
||||
<string name="location_agps_access_summary">وقتی مکان روشن است، <b>داده های کمک ماهواره را از اینترنت بارگیری کنید</b> که می تواند عملکرد راهاندازی GPS را تا حد زیادی بهبود بخشد.</string>
|
||||
<string name="update_recovery_title">بهروزرسانی ریکاوری Lineage</string>
|
||||
<string name="update_recovery_description">به روزرسانی ریکاوری Lineage در اولین بوت پس از هر بروزرسانی.</string>
|
||||
<string name="update_recovery_warning">به محض پایان راهاندازی، ریکاوری به روز می شود. اگر می خواهید آن را دست نخورده نگه دارید، این ویژگی را غیرفعال کنید.</string>
|
||||
<string name="update_recovery_setting">ریکاوری Lineage را در کنار سیستم عامل به روز کنید</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">ویژگیهای لینیِج اواِس</string>
|
||||
<string name="services_pp_explanation">این خدمات در جهت افزایش قابلیتهای دستگاه شما عمل میکنند. دادهها مطابق سیاست های حریم خصوصی <xliff:g id="name" example="LineageOS">%1$s</xliff:g> مورد استفاده قرار خواهند گرفت.</string>
|
||||
<string name="services_find_privacy_policy">شما میتوانید سیاست های حریم خصوصی را بر روی یک دستگاه دیگر با بازدید از <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g> بخوانید</string>
|
||||
<string name="services_help_improve_cm">کمک به بهبود <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> با ارسال خودکار داده های عیب یابی و استفاده به <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. این اطلاعات قادر به آشکار سازی هویت شما نبوده و به تیم های مشغول بر روی چیز هایی مثل عمر باتری، کارایی نرم افزار و ویژگی های <xliff:g id="name" example="LineageOS">%3$s</xliff:g> جدید کمک میکند.</string>
|
||||
<string name="services_os_nav_keys_label"><b>استفاده از کلیدهای پیمایش صفحه نمایش</b> به جای کلیدهای سختافزاری.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">پیمایش</string>
|
||||
<string name="navigation_summary">روش پیمایش ترجیحی را انتخاب کنید</string>
|
||||
<string name="gesture_navigation">پیمایش اشارهای</string>
|
||||
<string name="navbar_navigation">پیمایش ۳ دکمهای</string>
|
||||
<string name="hide_gesture_hint">پنهان کردن نوار اشاره ناوبری</string>
|
||||
<string name="setup_theme">پوسته</string>
|
||||
<string name="theme_summary">طرح زمینه تیره از پسزمینه سیاه استفاده میکند تا باتری را برای مدت طولانیتری در برخی از صفحهها زنده نگه دارد</string>
|
||||
<string name="dark">تاریک</string>
|
||||
<string name="light">روشن</string>
|
||||
</resources>
|
||||
36
res/values-fi/strings.xml
Normal file
36
res/values-fi/strings.xml
Normal file
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Ohjattu asennus</string>
|
||||
<string name="next">Seuraava</string>
|
||||
<string name="skip">Ohita</string>
|
||||
<string name="start">Aloita</string>
|
||||
<string name="done">Valmis</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">Odota hetki\u2026</string>
|
||||
<string name="emergency_call">Hätäpuhelu</string>
|
||||
<string name="setup_locale">Kieli</string>
|
||||
<string name="sim_locale_changed">%1$s SIM tunnistettu</string>
|
||||
<string name="setup_sim_missing">SIM-kortti puuttuu</string>
|
||||
<string name="sim_missing_summary" product="tablet">SIM-korttia ei ole havaittu tabletissasi. Asettaaksesi SIM-kortin, lue tabletin mukana tulleita ohjeita.</string>
|
||||
<string name="sim_missing_summary" product="default">SIM-korttia ei ole havaittu puhelimessasi. Asettaaksesi SIM-kortin, lue puhelimen mukana tulleita ohjeita.</string>
|
||||
<string name="setup_datetime">Päivämäärä & aika</string>
|
||||
<string name="date_time_summary">Valitse aikavyöhyke ja määritä aika ja päivämäärä tarvittaessa</string>
|
||||
<string name="setup_current_date">Nykyinen päivämäärä</string>
|
||||
<string name="setup_current_time">Nykyinen aika</string>
|
||||
<string name="intro_restore_title">Palauta sovellukset ja tiedot</string>
|
||||
<string name="intro_restore_button">Palauta varmuuskopiosta</string>
|
||||
<string name="setup_location">Sijaintipalvelut</string>
|
||||
<string name="location_access_summary"><b>Salli sovellusten, jotka ovat kysyneet sinulta lupaa</b> käyttää sijaintitietojasi. Tämä saattaa sisältää nykyisen sijaintisi ja aiemmat sijaintisi.</string>
|
||||
<string name="update_recovery_title">Päivitä Lineage Recovery</string>
|
||||
<string name="update_recovery_description">Päivittää Lineage Recoveryn jokaisen päivityksen jälkeen ensimmäisellä käynnistyskerralla</string>
|
||||
<string name="update_recovery_warning">Recovery pävitetään kun asennus on valmis. Jos haluat säilyttää sen ennallaan, poista tämä ominaisuus käytöstä.</string>
|
||||
<string name="update_recovery_setting">Päivitä Lineage Recovery käyttöjärjestelmän rinnalla</string>
|
||||
<string name="setup_services">LineageOS-ominaisuudet</string>
|
||||
<string name="services_help_improve_cm">Auta parantamaan <xliff:g id="name" example="LineageOS">%s</xliff:g>ia</string>
|
||||
<string name="services_os_nav_keys_label"><b>Käytä näytön navigointipalkkia</b> fyysisten näppäinten sijaan.</string>
|
||||
</resources>
|
||||
55
res/values-fr/strings.xml
Normal file
55
res/values-fr/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Assistant de configuration</string>
|
||||
<string name="next">Suivant</string>
|
||||
<string name="skip">Ignorer</string>
|
||||
<string name="start">Commencer</string>
|
||||
<string name="done">Effectué</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">Juste une seconde\u2026</string>
|
||||
<string name="setup_welcome_message">Bienvenue sur <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Configurez votre profil de travail</string>
|
||||
<string name="emergency_call">Appel d\'urgence</string>
|
||||
<string name="accessibility_settings">Paramètres d\'accessibilité</string>
|
||||
<string name="setup_locale">Langue</string>
|
||||
<string name="sim_locale_changed">%1$s carte SIM détectée</string>
|
||||
<string name="setup_sim_missing">Carte SIM manquante</string>
|
||||
<string name="sim_missing_summary" product="tablet">Aucune carte SIM n\'a été détectée dans votre tablette. Pour insérer une carte SIM, lisez les instructions fournies avec votre appareil.</string>
|
||||
<string name="sim_missing_summary" product="default">Aucune carte SIM n\'a été détectée dans votre téléphone. Pour insérer une carte SIM, lisez les instructions fournies avec votre appareil.</string>
|
||||
<string name="setup_datetime">Date et heure</string>
|
||||
<string name="date_time_summary">Définir votre fuseau horaire et régler la date et l\'heure si nécessaire</string>
|
||||
<string name="setup_current_date">Date</string>
|
||||
<string name="setup_current_time">Heure</string>
|
||||
<string name="intro_restore_title">Restaurer les applications et les données</string>
|
||||
<string name="intro_restore_subtitle">Si vous avez une sauvegarde Seedvault depuis <xliff:g id="name" example="LineageOS">%s</xliff:g> ou tout autre OS, vous pouvez la restaurer ici.</string>
|
||||
<string name="intro_restore_button">Restaurer depuis une sauvegarde</string>
|
||||
<string name="setup_location">Services de localisation</string>
|
||||
<string name="location_access_summary"><b>Permettre aux applications ayant obtenu votre autorisation</b> d\'utiliser vos informations de localisation. Cela peut inclure votre position actuelle et les dernières positions.</string>
|
||||
<string name="location_agps_access_summary">Lorsque la localisation est activée, <b>téléchargez les données d\'assistance par satellite depuis internet</b>, ce qui peut grandement améliorer les performances de démarrage du GPS.</string>
|
||||
<string name="update_recovery_title">Mettre à jour la récupération de Lineage</string>
|
||||
<string name="update_recovery_description">Met à jour Lineage Recovery au premier démarrage après chaque mise à jour.</string>
|
||||
<string name="update_recovery_warning">La récupération sera mise à jour dès que vous aurez terminé la configuration. Si vous souhaitez la garder intacte, veuillez désactiver cette fonctionnalité.</string>
|
||||
<string name="update_recovery_setting">Mettre à jour Lineage Recovery en même temps que le système d\'exploitation</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">Fonctionnalités de LineageOS</string>
|
||||
<string name="services_pp_explanation">Ces services fonctionnent pour étendre les fonctionnalités de votre appareil. Les données seront utilisées conformément à la politique de confidentialité de <xliff:g id="name" example="LineageOS">%1$s</xliff:g>.</string>
|
||||
<string name="services_find_privacy_policy">Vous pouvez lire la politique de confidentialité sur un autre appareil en visitant <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Contribuer à l\'amélioration de <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> en envoyant automatiquement des données de diagnostic et d\'utilisation à <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Cette information ne peut pas être utilisée pour vous identifier et est d\'une grande aide aux équipes travaillant sur des sujets tels que la durée de vie de la batterie, les performances des applications, et de nouvelles fonctionnalités de <xliff:g id="name" example="LineageOS">%3$s</xliff:g>.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Utilisation des touches de navigation de l\'écran</b> au lieu des touches physiques.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navigation</string>
|
||||
<string name="navigation_summary">Choisir la méthode de navigation préférée</string>
|
||||
<string name="gesture_navigation">Navigation gestuelle</string>
|
||||
<string name="navbar_navigation">Navigation à trois boutons</string>
|
||||
<string name="hide_gesture_hint">Cacher l\'indice de navigation gestuelle</string>
|
||||
<string name="setup_theme">Thème</string>
|
||||
<string name="theme_summary">Le thème sombre utilise un fond noir pour aider à prolonger l\'autonomie de la batterie sur certains écrans</string>
|
||||
<string name="dark">Sombre</string>
|
||||
<string name="light">Clair</string>
|
||||
</resources>
|
||||
55
res/values-fur-rIT/strings.xml
Normal file
55
res/values-fur-rIT/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Instalazion vuidade</string>
|
||||
<string name="next">Indenant</string>
|
||||
<string name="skip">Salte</string>
|
||||
<string name="start">Scomence</string>
|
||||
<string name="done">Fat</string>
|
||||
<string name="ok">Va ben</string>
|
||||
<string name="loading">Dome un secont\u2026</string>
|
||||
<string name="setup_welcome_message">Benvignûts su <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Configure il to profîl di lavôr</string>
|
||||
<string name="emergency_call">Clamade di emergjence</string>
|
||||
<string name="accessibility_settings">Impostazions di acès facilitât</string>
|
||||
<string name="setup_locale">Lenghe</string>
|
||||
<string name="sim_locale_changed">SIM %1$s rilevade</string>
|
||||
<string name="setup_sim_missing">E mancje la schede SIM</string>
|
||||
<string name="sim_missing_summary" product="tablet">No je stade rilevade nissune schede SIM tal to tablet. Per inserî une schede SIM, lei lis istruzions dadis cul to dispositîf.</string>
|
||||
<string name="sim_missing_summary" product="default">No je stade rilevade nissune schede SIM tal to telefon. Per inserî une schede SIM, lei lis istruzions dadis cul to dispositîf.</string>
|
||||
<string name="setup_datetime">Date e ore</string>
|
||||
<string name="date_time_summary">Configure il fûs orari e se al covente juste la date e la ore</string>
|
||||
<string name="setup_current_date">Date atuâl</string>
|
||||
<string name="setup_current_time">Ore atuâl</string>
|
||||
<string name="intro_restore_title">Ripristine aplicazions e dâts</string>
|
||||
<string name="intro_restore_subtitle">Se tu âs un backup Seedvault di <xliff:g id="name" example="LineageOS">%s</xliff:g> o di un altri SO, tu puedis ripristinâlu achì.</string>
|
||||
<string name="intro_restore_button">Ripristine dal backup</string>
|
||||
<string name="setup_location">Servizis di localizazion</string>
|
||||
<string name="location_access_summary"><b>Permet aes aplicazions che a àn domandât la tô autorizazion</b> di doprâ informazions su la tô posizion. Chest al pues includi la tô posizion atuâl e chês di prime.</string>
|
||||
<string name="location_agps_access_summary">Cuant che la gjeolocalizazion e je ative, <b>discjame di internet i dâts di assistence satelitâr</b>, che a puedin miorâ une vore lis prestazions di inviament dal GPS.</string>
|
||||
<string name="update_recovery_title">Inzorne Recovery di Lineage</string>
|
||||
<string name="update_recovery_description">Al inzorne il Recovery di Lineage al prin inviament sucessîf di ogni inzornament.</string>
|
||||
<string name="update_recovery_warning">Recovery al vignarà inzornât a pene che tu finissis la configurazion. Se tu desideris tignîlu intat, disative cheste funzionalitât.</string>
|
||||
<string name="update_recovery_setting">Inzorne il Recovery di Lineage adun cul SO</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">Funzionalitâts di LineageOS</string>
|
||||
<string name="services_pp_explanation">Chescj servizis a funzionin par slargjâ lis funzionalitâts dal to dispositîf. I dâts a vignaran doprâts in conformitât cu la informative su la riservatece di <xliff:g id="name" example="LineageOS">%1$s</xliff:g>.</string>
|
||||
<string name="services_find_privacy_policy">Tu puedis lei la informative su la riservatece suntun altri dispositîf visitant <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Jude a miorâ <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> inviant in automatic i dâts diagnostiche di consum ai svilupadôrs di <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Nol sarà pussibil doprâ chestis informazions par identificâti ma a dan une man ai grups che a lavorin su robis come la durade de batarie, lis prestazions des aplicazions e lis gnovis funzionalitâts di <xliff:g id="name" example="LineageOS">%3$s</xliff:g>.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Dopre i botons virtuâi sul schermi</b> invezit di chei fisics.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navigazion</string>
|
||||
<string name="navigation_summary">Sielç il metodi di navigazion preferît</string>
|
||||
<string name="gesture_navigation">Navigazion a mots</string>
|
||||
<string name="navbar_navigation">Navigazion a 3 botons</string>
|
||||
<string name="hide_gesture_hint">Plate i sugjeriments pe navigazion a mots</string>
|
||||
<string name="setup_theme">Teme</string>
|
||||
<string name="theme_summary">Il teme scûr al dopre un fonts neri par aumentâ la durade de cjarie de batarie su cualchi schermi</string>
|
||||
<string name="dark">Scûr</string>
|
||||
<string name="light">Clâr</string>
|
||||
</resources>
|
||||
30
res/values-fy-rNL/strings.xml
Normal file
30
res/values-fy-rNL/strings.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Ynstelhelper</string>
|
||||
<string name="next">Folgjende</string>
|
||||
<string name="skip">Oerslaan</string>
|
||||
<string name="start">Starte</string>
|
||||
<string name="done">Foltôge</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">In amerijke\u2026</string>
|
||||
<string name="emergency_call">Needoprop</string>
|
||||
<string name="setup_locale">Taal</string>
|
||||
<string name="sim_locale_changed">%1$s simkaart detektearre</string>
|
||||
<string name="setup_sim_missing">Simkaart ûntbrekt</string>
|
||||
<string name="sim_missing_summary" product="tablet">Gjin simkaart yn jo tablet detektearre. Om in simkaart te pleatsen, lês de ynstruksje dy\'t by jo tablet levere is.</string>
|
||||
<string name="sim_missing_summary" product="default">Gjin simkaart yn jo telefoan detektearre. Om in simkaart te pleatsen, lês de ynstruksje dy\'t by jo telefoan levere is.</string>
|
||||
<string name="setup_datetime">Datum & tiid</string>
|
||||
<string name="date_time_summary">Selektearje jo tiidssône en pas wannear nedich de hjoeddeistige datum en tiid oan</string>
|
||||
<string name="setup_current_date">Hjoeddeistige datum</string>
|
||||
<string name="setup_current_time">Hjoeddeistige tiid</string>
|
||||
<string name="setup_location">Lokaasjetsjinsten</string>
|
||||
<string name="location_access_summary"><b>Apps tastean dy\'t jo tastimming frege hawwe</b> om ynformaasje oer jo lokaasje te brûken. Dit kin jo aktuele lokaasje en foargeande lokaasjes omfetsje.</string>
|
||||
<string name="setup_services">Funksjes fan LineageOS</string>
|
||||
<string name="services_help_improve_cm">Help mei mei it ferbetterjen fan <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_os_nav_keys_label"><b>On-screen navigaasjeknoppen</b> brûke yn stee fan de hardwareknoppen.</string>
|
||||
</resources>
|
||||
55
res/values-ga-rIE/strings.xml
Normal file
55
res/values-ga-rIE/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Treoraí Socraithe</string>
|
||||
<string name="next">Ar aghaidh</string>
|
||||
<string name="skip">Scipeáil</string>
|
||||
<string name="start">Tosaigh</string>
|
||||
<string name="done">Déanta</string>
|
||||
<string name="ok">Ceart go leor</string>
|
||||
<string name="loading">Níl ann ach soic\u2026</string>
|
||||
<string name="setup_welcome_message">Fáilte go <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Socraigh do phróifíl oibre</string>
|
||||
<string name="emergency_call">Glao éigeandála</string>
|
||||
<string name="accessibility_settings">Socruithe inrochtaineachta</string>
|
||||
<string name="setup_locale">Teanga</string>
|
||||
<string name="sim_locale_changed">Braitheadh %1$s SIM</string>
|
||||
<string name="setup_sim_missing">Cárta SIM in easnamh</string>
|
||||
<string name="sim_missing_summary" product="tablet">Níor aimsíodh cárta SIM ar do tháibléad. Chun cárta SIM a chur isteach, léigh na treoracha a tháinig le do ghléas.</string>
|
||||
<string name="sim_missing_summary" product="default">Níor aimsíodh cárta SIM ar do ghuthán. Chun cárta SIM a chur isteach, léigh na treoracha a tháinig le do ghléas.</string>
|
||||
<string name="setup_datetime">Dáta & am</string>
|
||||
<string name="date_time_summary">Socraigh do chrios ama agus coigeartaigh an dáta agus an t-am reatha más gá</string>
|
||||
<string name="setup_current_date">Dáta reatha</string>
|
||||
<string name="setup_current_time">Am reatha</string>
|
||||
<string name="intro_restore_title">Athchóirigh aipeanna agus sonraí</string>
|
||||
<string name="intro_restore_subtitle">Má tá cúltaca Seedvault agat ó <xliff:g id="name" example="LineageOS">%s</xliff:g> nó ó aon OS eile, is féidir leat é a aischur anseo.</string>
|
||||
<string name="intro_restore_button">Athchóirigh ó chúltaca</string>
|
||||
<string name="setup_location">Seirbhísí suímh</string>
|
||||
<string name="location_access_summary"><b>Ceadaigh d’aipeanna a d’iarr do chead</b> do chuid faisnéise suímh a úsáid. Seans go n-áireofaí anseo do shuíomh reatha agus láithreacha san am a chuaigh thart.</string>
|
||||
<string name="location_agps_access_summary">Nuair atá an suíomh ar siúl, <b>íoslódáil sonraí cúnaimh satailíte ón idirlíon</b>, rud a d\'fhéadfadh feabhas mór a chur ar fheidhmíocht tosaithe GPS.</string>
|
||||
<string name="update_recovery_title">Nuashonraigh Aisghabháil Lineage</string>
|
||||
<string name="update_recovery_description">Nuashonruithe Aisghabháil Lineage ar an gcéad tosaithe tar éis gach nuashonraithe.</string>
|
||||
<string name="update_recovery_warning">Déanfar aisghabháil a nuashonrú chomh luath agus a chríochnaíonn tú an socrú. Más mian leat é a choinneáil slán, díchumasaigh an ghné seo.</string>
|
||||
<string name="update_recovery_setting">Nuashonraigh Aisghabháil Lineage taobh leis an OS</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">LineageOS gnéithe</string>
|
||||
<string name="services_pp_explanation">Oibríonn na seirbhísí seo duit chun cumais do ghléis a leathnú. Úsáidfear sonraí de réir pholasaí príobháideachais <xliff:g id="name" example="LineageOS">%1$s</xliff:g>.</string>
|
||||
<string name="services_find_privacy_policy">Is féidir leat an polasaí príobháideachais a léamh ar ghléas eile trí chuairt a thabhairt ar <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Cabhraigh le feabhas a chur ar <xliff:g id="name" example="LineageOS"> %s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Cabhraigh le LineageOS a fheabhsú">%1$s</xliff:g> trí shonraí diagnóiseacha agus úsáide a sheoladh go huathoibríoch chuig <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Ní féidir an fhaisnéis seo a úsáid chun tú a aithint agus tugann sé cúnamh d\'fhoirne atá ag obair ar rudaí cosúil le saol ceallraí, feidhmíocht aipe agus <xliff:g id="name" example="LineageOS">%3$s</xliff:g> gnéithe.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Úsáid eochracha nascleanúna scáileáin</b> in ionad eochracha crua-earraí.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Nascleanúint</string>
|
||||
<string name="navigation_summary">Roghnaigh modh nascleanúna is fearr leat</string>
|
||||
<string name="gesture_navigation">Gotha nascleanúint</string>
|
||||
<string name="navbar_navigation">Nascleanúint 3-cnaipe</string>
|
||||
<string name="hide_gesture_hint">Folaigh leid loingseoireachta gothaí</string>
|
||||
<string name="setup_theme">Téama</string>
|
||||
<string name="theme_summary">Úsáideann téama dorcha cúlra dubh chun an ceallraí a choinneáil beo níos faide ar roinnt scáileáin</string>
|
||||
<string name="dark">Dorcha</string>
|
||||
<string name="light">Solas</string>
|
||||
</resources>
|
||||
40
res/values-gd/strings.xml
Normal file
40
res/values-gd/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Draoidh stàlaidh</string>
|
||||
<string name="next">Air adhart</string>
|
||||
<string name="skip">Leum thairis air</string>
|
||||
<string name="start">Tòisich</string>
|
||||
<string name="done">Deiseil</string>
|
||||
<string name="ok">Ceart ma-thà</string>
|
||||
<string name="loading">Fuirich greiseag\u2026</string>
|
||||
<string name="emergency_call">Gairm-èiginn</string>
|
||||
<string name="accessibility_settings">Roghainnean na so-inntrigeachd</string>
|
||||
<string name="setup_locale">Cànan</string>
|
||||
<string name="sim_locale_changed">Mhothaich sinn do SIM %1$s</string>
|
||||
<string name="setup_sim_missing">Tha cairt SIM a dhìth</string>
|
||||
<string name="sim_missing_summary" product="tablet">Cha do mhothaich sinn do chairt SIM san tablaid agad. Airson cairt SIM a chur a-steach, leugh na mìneachaidhean a fhuair thu leis an uidheam agad.</string>
|
||||
<string name="sim_missing_summary" product="default">Cha do mhothaich sinn do chairt SIM san fhòn agad. Airson cairt SIM a chur a-steach, leugh na mìneachaidhean a fhuair thu leis an uidheam agad.</string>
|
||||
<string name="setup_datetime">Ceann-là ⁊ àm</string>
|
||||
<string name="date_time_summary">Suidhich an roinn-tìde agad agus cuir an ceann-là ’s an t-àm air gleus ma bhios feum air</string>
|
||||
<string name="setup_current_date">An ceann-là an-diugh</string>
|
||||
<string name="setup_current_time">An t-àm làithreach</string>
|
||||
<string name="intro_restore_title">Aisig aplacaidean is dàta</string>
|
||||
<string name="intro_restore_button">Aisig o lethbhreac-glèidhidh</string>
|
||||
<string name="setup_location">Seirbheisean ionaid</string>
|
||||
<string name="location_access_summary"><b>Leig le aplacaidean a dh’iarr cead uat</b> fiosrachadh mu d’ ionad a chleachdadh. Dh’fhaoidte gun gabh seo a-staigh an dà chuid d’ ionad làithreach agus far an robh thu roimhe.</string>
|
||||
<string name="update_recovery_title">Ùraich aiseag Lineage</string>
|
||||
<string name="update_recovery_description">Ùraichidh seo aiseag Lineage air a’ chiad bhùtadh às dèidh gach ùrachadh.</string>
|
||||
<string name="update_recovery_warning">Thèid an t-aiseag ùrachadh cho luath ’s a bhios tu deiseil leis an t-suidheachadh. Ma tha thu airson a chumail mar a bha e, cuir an gleus seo à comas.</string>
|
||||
<string name="update_recovery_setting">Ùraich aiseag Lineage leis an t-siostam obrachaidh</string>
|
||||
<string name="setup_services">Gleusan LineageOS</string>
|
||||
<string name="services_pp_explanation">Leudaichidh na seirbheisean seo comasan an uidheim agad. Thèid an dàta a chleachdadh a-rèir poileasaidh prìobhaideachd <xliff:g id="name" example="LineageOS">%1$s</xliff:g>.</string>
|
||||
<string name="services_find_privacy_policy">’S urrainn dhut am poileasaidh a leughadh air uidheam eile is tu a’ tadhal air <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Cuidich gus piseach a thoirt air <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> is tu a’ cur dàta na diagnosachd ’s a’ chleachdaidh gu <xliff:g id="name" example="LineageOS">%2$s</xliff:g> gu fèin-obrachail. Cha ghabh an dàta sin a chleachdadh airson d’ aithneachadh agus bheir e cuideachadh dha na sgiobaidhean a bhios ag obair air rudan mar beatha a’ bhataraidh, dèanadas nan aplacaidean agus gleusan <xliff:g id="name" example="LineageOS">%3$s</xliff:g> ùra.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Cleachd iuchraichean seòladaireachd air an sgrìn</b> seach iuchraichean bathair-chruaidh.</string>
|
||||
</resources>
|
||||
40
res/values-gl/strings.xml
Normal file
40
res/values-gl/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Asistente de configuración</string>
|
||||
<string name="next">Seguinte</string>
|
||||
<string name="skip">Omitir</string>
|
||||
<string name="start">Comezar</string>
|
||||
<string name="done">Feito</string>
|
||||
<string name="ok">Aceptar</string>
|
||||
<string name="loading">Só un seg.\u2026</string>
|
||||
<string name="emergency_call">Chamada de emerxencia</string>
|
||||
<string name="accessibility_settings">Configuración da accesibilidade</string>
|
||||
<string name="setup_locale">Linguaxe</string>
|
||||
<string name="sim_locale_changed">%1$s SIM detectado</string>
|
||||
<string name="setup_sim_missing">Falta a tarxeta SIM</string>
|
||||
<string name="sim_missing_summary" product="tablet">Non se detectou a tarxeta SIM na túa tableta. Para inserila, le as instrucións que veñen co dispositivo.</string>
|
||||
<string name="sim_missing_summary" product="default">Non se detectou a tarxeta SIM no teu teléfono. Para inserila, le as instrucións que veñen co dispositivo.</string>
|
||||
<string name="setup_datetime">Data e hora</string>
|
||||
<string name="date_time_summary">Configure a súa zona horaria e axuste a hora e data se é preciso</string>
|
||||
<string name="setup_current_date">Data actual</string>
|
||||
<string name="setup_current_time">Hora actual</string>
|
||||
<string name="intro_restore_title">Restaurar aplicacións e datos</string>
|
||||
<string name="intro_restore_button">Restaurar dende a copia de seguranza</string>
|
||||
<string name="setup_location">Servizos de localización</string>
|
||||
<string name="location_access_summary"><b>Permite que as aplicacións se teñen o teu permiso</b> utilicen a información sobre a túa localización, o que pode incluír á presente e ás pasadas.</string>
|
||||
<string name="update_recovery_title">Actualizar Recuperador de Lineage</string>
|
||||
<string name="update_recovery_description">Actualiza o Recuperador do Lineage no primeiro arranque despois de cada actualización.</string>
|
||||
<string name="update_recovery_warning">O Recuperador actualizarase axiña que remates a configuración. Se desexas mantelo intacto, desactiva esta función.</string>
|
||||
<string name="update_recovery_setting">Actualizar o Recuperador de Lineage xunto co sistema operativo</string>
|
||||
<string name="setup_services">Actualizacións de LineageOS</string>
|
||||
<string name="services_pp_explanation">Estes servizos serven para mellorar as capacidades do seu dispositivo. Os datos utilizaranse de acordo coa <xliff:g id="name" example="Politica de privacidade">%1$s</xliff:g> de LineageOS</string>
|
||||
<string name="services_find_privacy_policy">Podes ler a política de privacidade noutro dispositivo visitando <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Axuda a mellorar <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Axuda a mellorar LineageOS">%1$s</xliff:g> enviando automaticamente diagnóstico e uso de datos a <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Esta información non se pode utilizar para identificalo a vostede e acaba nas mans dos equipos que traballan en cousas como a duración da batería, rendemento das aplicacións e novas características de <xliff:g id="name" example="LineageOS">%3$s</xliff:g>.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Usar as teclas de navegación</b> en vez das do hardware.</string>
|
||||
</resources>
|
||||
26
res/values-gu/strings.xml
Normal file
26
res/values-gu/strings.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">સેટઅપ વિઝાર્ડ</string>
|
||||
<string name="next">આગલું</string>
|
||||
<string name="skip">છોડી દો</string>
|
||||
<string name="start">પ્રારંભ કરો</string>
|
||||
<string name="ok">ઑકે</string>
|
||||
<string name="loading">માત્ર એક સેકન્ડ\u2026</string>
|
||||
<string name="emergency_call">કટોકટીનો કૉલ</string>
|
||||
<string name="sim_locale_changed">%1$s SIM સૂચિત</string>
|
||||
<string name="setup_sim_missing">SIM કાર્ડ ગૂમ</string>
|
||||
<string name="sim_missing_summary" product="tablet">તમારા ટૅબ્લેટમાં SIM કાર્ડ સૂચિત થયો નથી. SIM કાર્ડ દાખલ કરવા માટે તમારા ડિવાઇસ સાથે આવેલ સૂચનાઓ વાંચો.</string>
|
||||
<string name="sim_missing_summary" product="default">તમારા ફોનમાં SIM કાર્ડ સૂચિત થયો નથી. SIM કાર્ડ દાખલ કરવા માટે તમારા ડિવાઇસ સાથે આવેલ સૂચનાઓ વાંચો.</string>
|
||||
<string name="setup_datetime">તારીખ & સમય</string>
|
||||
<string name="date_time_summary">તમારો સમય ઝોન સેટ કરો અને જરૂર હોય તો હાલની તારીખ અને સમય સમાયોજિત કરો</string>
|
||||
<string name="setup_current_date">હાલની તારીખ</string>
|
||||
<string name="setup_current_time">હાલનો સમય</string>
|
||||
<string name="setup_location">સ્થાન સેવાઓ</string>
|
||||
<string name="location_access_summary">તમારી લોકેશન માહિતી વાપરવાની <b>પરવાનગી માંગી હોય એવા ઍપ્સને છૂટ આપો</b>. આમાં તમારા હાલના લોકેશન અને ભૂતકાલીન લોકેશનોનો સમાવેશ થઈ શકે.</string>
|
||||
<string name="services_os_nav_keys_label">હાર્ડવેર કીને બદલે <b>સ્ક્રીન નૅવિગેશન કીનો ઉપયોગ કરો</b>.</string>
|
||||
</resources>
|
||||
25
res/values-hi/strings.xml
Normal file
25
res/values-hi/strings.xml
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">सेटअप विज़ार्ड</string>
|
||||
<string name="next">अगला</string>
|
||||
<string name="skip">छोड़ें</string>
|
||||
<string name="start">शुरू करें</string>
|
||||
<string name="ok">ठीक है</string>
|
||||
<string name="loading">एक सेकंड\u2026</string>
|
||||
<string name="emergency_call">आपातकालीन कॉल</string>
|
||||
<string name="setup_sim_missing">सिम कार्ड नहीं है</string>
|
||||
<string name="sim_missing_summary" product="tablet">आपके टैब्लेट के लिए सिम कार्ड पहचाना नहीं जा सका है। सिम कार्ड डालने के लिए अपने उपकरण के साथ आए निर्देशों को देखें।</string>
|
||||
<string name="sim_missing_summary" product="default">आपके फ़ोन के लिए सिम कार्ड पहचाना नहीं जा सका है। सिम कार्ड डालने के लिए अपने उपकरण के साथ आए निर्देशों को देखें।</string>
|
||||
<string name="setup_datetime">तिथि और समय</string>
|
||||
<string name="date_time_summary">अपना समय क्षेत्र सेटअप करें और यदि आवश्यक हो तो वर्तमान तिथि और समय को समायोजित करें</string>
|
||||
<string name="setup_current_date">वर्तमान तिथि</string>
|
||||
<string name="setup_current_time">वर्तमान समय</string>
|
||||
<string name="setup_location">स्थान सेवाएँ</string>
|
||||
<string name="location_access_summary"><b>जिन ऐपों ने आपसे अनुमति ले ली है</b> उन्हें आपके स्थान संबंधी जानकारी का उपयोग करने दें। इस जानकारी में आपका वर्तमान स्थान और पहले के स्थान शामिल हो सकते हैं।</string>
|
||||
<string name="services_os_nav_keys_label">हार्डवेयर कुंजियों की जगह <b>स्क्रीन पर मौजूद नेविगेशन कुंजियों का उपयोग करें।</b></string>
|
||||
</resources>
|
||||
36
res/values-hr/strings.xml
Normal file
36
res/values-hr/strings.xml
Normal file
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Čarobnjak za postavljanje</string>
|
||||
<string name="next">Dalje</string>
|
||||
<string name="skip">Preskoči</string>
|
||||
<string name="start">Započni</string>
|
||||
<string name="done">Gotovo</string>
|
||||
<string name="ok">U redu</string>
|
||||
<string name="loading">Samo trenutak\u2026</string>
|
||||
<string name="emergency_call">Hitan poziv</string>
|
||||
<string name="setup_locale">Jezik</string>
|
||||
<string name="sim_locale_changed">%1$s SIM otkriven</string>
|
||||
<string name="setup_sim_missing">Nema SIM kartice</string>
|
||||
<string name="sim_missing_summary" product="tablet">SIM kartica nije otkrivena u tabletu. Za umetanje SIM kartice, pročitajte upute koje ste dobili uz uređaj.</string>
|
||||
<string name="sim_missing_summary" product="default">SIM kartica nije otkrivena u telefonu. Za umetanje SIM kartice, pročitajte upute koje ste dobili uz uređaj.</string>
|
||||
<string name="setup_datetime">Datum i vrijeme</string>
|
||||
<string name="date_time_summary">Postavite vremensku zonu i ako je potrebno prilagoditi trenutni datum i vrijeme</string>
|
||||
<string name="setup_current_date">Današnji datum</string>
|
||||
<string name="setup_current_time">Trenutno vrijeme</string>
|
||||
<string name="intro_restore_title">Vrati aplikacije i podatke</string>
|
||||
<string name="intro_restore_button">Vrati podatke iz sigurnosne kopije</string>
|
||||
<string name="setup_location">Usluge lokacije</string>
|
||||
<string name="location_access_summary"><b>Dopusti aplikacijama koje traže tvoju dozvolu</b> da koriste informacije o tvojoj lokaciji. Ovo može uključiti tvoju sadašnju i prošle lokacije.</string>
|
||||
<string name="update_recovery_title">Ažuriraj Lineage Recovery</string>
|
||||
<string name="update_recovery_description">Ažuriraj Lineage Recovery pri prvom pokretanju nakon svakog ažuriranja.</string>
|
||||
<string name="update_recovery_warning">Recovery će se ažurirati čim završite s postavljanjem. Ako ga želite zadržati netaknutim, onemogućite ovu značajku.</string>
|
||||
<string name="update_recovery_setting">Ažuriraj Lineage Recovery zajedno sa OS</string>
|
||||
<string name="setup_services">Značajke LineageOS-a</string>
|
||||
<string name="services_help_improve_cm">Pomozite poboljšati <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_os_nav_keys_label"><b>Koristite navigacijske tipke na zaslonu</b>umjesto hardverskih tipki.</string>
|
||||
</resources>
|
||||
55
res/values-hu/strings.xml
Normal file
55
res/values-hu/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Telepítő varázsló</string>
|
||||
<string name="next">Következő</string>
|
||||
<string name="skip">Kihagyás</string>
|
||||
<string name="start">Indít</string>
|
||||
<string name="done">Kész</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="loading">Csak egy pillanat\u2026</string>
|
||||
<string name="setup_welcome_message">Legyen üdvözölve a <xliff:g id="name" example="LineageOS">%1$s</xliff:g> rendszerben</string>
|
||||
<string name="setup_managed_profile_welcome_message">Állítsa be a munkahelyi profilját</string>
|
||||
<string name="emergency_call">Segélyhívás</string>
|
||||
<string name="accessibility_settings">Kisegítő beállítások</string>
|
||||
<string name="setup_locale">Nyelv</string>
|
||||
<string name="sim_locale_changed">%1$s SIM észlelve</string>
|
||||
<string name="setup_sim_missing">Hiányzik a SIM-kártya</string>
|
||||
<string name="sim_missing_summary" product="tablet">SIM-kártya nem érzékelhető a táblagépében. A SIM-kártya behelyezéséhez olvassa el a készülékhez járó útmutatót.</string>
|
||||
<string name="sim_missing_summary" product="default">SIM-kártya nem érzékelhető a telefonjában. A SIM-kártya behelyezéséhez olvassa el a készülékhez járó útmutatót.</string>
|
||||
<string name="setup_datetime">Dátum & idő</string>
|
||||
<string name="date_time_summary">Válasszon időzónát és állítsa be az aktuális dátumot és időt, ha szükséges</string>
|
||||
<string name="setup_current_date">Aktuális dátum</string>
|
||||
<string name="setup_current_time">Aktuális idő</string>
|
||||
<string name="intro_restore_title">Alkalmazások és adatok visszaállítása</string>
|
||||
<string name="intro_restore_subtitle">Amennyiben van <xliff:g id="name" example="LineageOS">%s</xliff:g>-mentése a Seedvaulttal, itt helyreállíthatja azt.</string>
|
||||
<string name="intro_restore_button">Visszaállítás biztonsági mentésből</string>
|
||||
<string name="setup_location">Helymeghatározó szolgáltatások</string>
|
||||
<string name="location_access_summary"><b>Lehetővé teszi az alkalmazás számára, amely korábban engedélyt kért,</b> a helymeghatározási információ használatára. Beleértve a jelenlegi és a korábbi helyeket.</string>
|
||||
<string name="location_agps_access_summary">Ha a helymeghatározás be van kapcsolva, <b>töltse le a műholdsegítő adatokat az internetről</b>, ez nagy mértékben javíthatja a GPS indítási teljesítményét.</string>
|
||||
<string name="update_recovery_title">A Lineage Recovery frissítése</string>
|
||||
<string name="update_recovery_description">Frissíti a Lineage Recovery-t minden frissítés utáni első indításkor.</string>
|
||||
<string name="update_recovery_warning">A Recovery frissítésre kerül, amint befejeződött a telepítést. Ha érintetlenül akarja hagyni, tiltsa le ezt a funkciót.</string>
|
||||
<string name="update_recovery_setting">A Lineage Recovery frissítése az operációs rendszer mellett</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">LineageOS újítások</string>
|
||||
<string name="services_pp_explanation">Ezek a szolgáltatások Önért dolgoznak, hogy kibővítsék telefonja képességeit. Az adatok felhasználása a <xliff:g id="name" example="LineageOS">%1$s</xliff:g> adatvédelmi szabályzata alapján történik.</string>
|
||||
<string name="services_find_privacy_policy">Elolvashatja az adatvédelmi szabályokat, ha megnyitja a következő weboldalt <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm"><xliff:g id="name" example="LineageOS">%s</xliff:g>, segítsen a fejlesztésében</string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> automatikus diagnosztikai és használati adatok küldésével segíthet a <xliff:g id="name" example="LineageOS">%2$s</xliff:g> fejlesztőinek. Ez az információ nem használható az Ön beazonosítására, csupán segítséget nyújt a csapat számára például az akkumulátor használat, alkalmazás teljesítmény, és más új <xliff:g id="name" example="LineageOS">%3$s</xliff:g> funkciók fejlesztésében.</string>
|
||||
<string name="services_os_nav_keys_label"><b>A képernyő navigációs gombjainak használata</b> a hardveres gombok helyett.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navigáció</string>
|
||||
<string name="navigation_summary">Itt választhatja ki a kívánt navigációs módot</string>
|
||||
<string name="gesture_navigation">Navigáció kézmozdulatokkal</string>
|
||||
<string name="navbar_navigation">Háromgombos navigáció</string>
|
||||
<string name="hide_gesture_hint">Mozdulatvezérlési navigációs-célsáv elrejtése</string>
|
||||
<string name="setup_theme">Téma</string>
|
||||
<string name="theme_summary">A Sötét téma néhány képernyőn fekete hátteret használ az akkukímélés érdekében.</string>
|
||||
<string name="dark">Sötét</string>
|
||||
<string name="light">Világos</string>
|
||||
</resources>
|
||||
52
res/values-in/strings.xml
Normal file
52
res/values-in/strings.xml
Normal file
@@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Panduan Penyiapan</string>
|
||||
<string name="next">Berikutnya</string>
|
||||
<string name="skip">Lewati</string>
|
||||
<string name="start">Mulai</string>
|
||||
<string name="done">Selesai</string>
|
||||
<string name="ok">OKE</string>
|
||||
<string name="loading">Harap tunggu\u2026</string>
|
||||
<string name="setup_welcome_message">Selamat datang di <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Siapkan profil kerja Anda</string>
|
||||
<string name="emergency_call">Panggilan darurat</string>
|
||||
<string name="accessibility_settings">Pengaturan aksesibilitas</string>
|
||||
<string name="setup_locale">Bahasa</string>
|
||||
<string name="sim_locale_changed">%1$s SIM terdeteksi</string>
|
||||
<string name="setup_sim_missing">Kartu SIM hilang</string>
|
||||
<string name="sim_missing_summary" product="tablet">Kartu SIM tidak terdeteksi pada perangkat Anda. Untuk menyisipkan kartu SIM, baca petunjuk yang datang dengan perangkat Anda.</string>
|
||||
<string name="sim_missing_summary" product="default">Kartu SIM tidak terdeteksi pada perangkat Anda. Untuk menyisipkan kartu SIM, baca petunjuk yang disediakan dengan perangkat Anda.</string>
|
||||
<string name="setup_datetime">Tanggal & waktu</string>
|
||||
<string name="date_time_summary">Atur zona waktu dan sesuaikan tanggal dan waktu jika diperlukan</string>
|
||||
<string name="setup_current_date">Tanggal sekarang</string>
|
||||
<string name="setup_current_time">Waktu saat ini</string>
|
||||
<string name="intro_restore_title">Pulihkan aplikasi dan data</string>
|
||||
<string name="intro_restore_button">Pulihkan dari cadangan</string>
|
||||
<string name="setup_location">Layanan lokasi</string>
|
||||
<string name="location_access_summary"><b>Izinkan aplikasi yang telah meminta izin Anda</b> menggunakan informasi lokasi Anda. Ini mungkin termasuk lokasi Anda saat ini dan lokasi terakhir.</string>
|
||||
<string name="update_recovery_title">Perbarui Lineage Recovery</string>
|
||||
<string name="update_recovery_description">Memperbarui Lineage Recovery saat boot pertama untuk setiap update selanjutnya.</string>
|
||||
<string name="update_recovery_warning">Recovery akan diupdate segera setelah Anda menyelesaikan penyiapan. Jika Anda ingin menjaganya tetap utuh, nonaktifkan fitur ini.</string>
|
||||
<string name="update_recovery_setting">Perbarui Lineage Recovery bersamaan dengan OS</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">Fitur LineageOS</string>
|
||||
<string name="services_pp_explanation">Layanan ini digunakan untuk meningkatkan kemampuan perangkat Anda. Data akan digunakan sesuai dengan kebijakan privasi <xliff:g id="name" example="LineageOS">%1$s</xliff:g>.</string>
|
||||
<string name="services_find_privacy_policy">Anda dapat membaca kebijakan privasi di perangkat lainnya dengan mengunjungi <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Membantu meningkatkan <xliff:g id="name" example="LineageOS">%s </xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> dengan mengirim data diagnosa dan penggunaan ke <xliff:g id="name" example="LineageOS">%2$s</xliff:g> secara otomatis. Informasi tersebut tidak untuk mengidentifikasi Anda, dan hanya berfungsi untuk membantu tim bekerja pada hal-hal seperti masa pakai baterai, performa aplikasi dan fitur-fitur <xliff:g id="name" example="LineageOS">%3$s</xliff:g> yang baru.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Gunakan tombol navigasi pada layar</b> bukan tombol perangkat keras.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navigasi</string>
|
||||
<string name="navigation_summary">Pilih metode navigasi yang disukai</string>
|
||||
<string name="gesture_navigation">Navigasi gestur</string>
|
||||
<string name="navbar_navigation">Navigasi 3 tombol</string>
|
||||
<string name="hide_gesture_hint">Sembunyikan petunjuk navigasi gestur</string>
|
||||
<string name="setup_theme">Tema</string>
|
||||
<string name="dark">Gelap</string>
|
||||
<string name="light">Terang</string>
|
||||
</resources>
|
||||
55
res/values-is/strings.xml
Normal file
55
res/values-is/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Uppsetningarleiðarvísir</string>
|
||||
<string name="next">Næsta</string>
|
||||
<string name="skip">Sleppa</string>
|
||||
<string name="start">Byrja</string>
|
||||
<string name="done">Lokið</string>
|
||||
<string name="ok">Í lagi</string>
|
||||
<string name="loading">Bíddu aðeins\u2026</string>
|
||||
<string name="setup_welcome_message">Velkomin í <xliff:g id="name" example="LineageOS">%1s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Settu upp vinnusniðið þitt</string>
|
||||
<string name="emergency_call">Neyðarsímtal</string>
|
||||
<string name="accessibility_settings">Stillingar fyrir altækan aðgang</string>
|
||||
<string name="setup_locale">Tungumál</string>
|
||||
<string name="sim_locale_changed">Fann %1$s SIM-kort</string>
|
||||
<string name="setup_sim_missing">SIM-kortið vantar</string>
|
||||
<string name="sim_missing_summary" product="tablet">SIM-kort fannst ekki í spjaldtölvunni þinni. Til að setja inn SIM-kort skaltu lesa leiðbeiningarnar sem komu með tækinu þínu.</string>
|
||||
<string name="sim_missing_summary" product="default">SIM-kort fannst ekki í símanum þínum. Til að setja inn SIM-kort skaltu lesa leiðbeiningarnar sem komu með tækinu þínu.</string>
|
||||
<string name="setup_datetime">Dagsetning og tími</string>
|
||||
<string name="date_time_summary">Settu tímabeltið þitt og lagaðu núverandi dags- og tímasetningu ef þörf krefur</string>
|
||||
<string name="setup_current_date">Núverandi dagsetning</string>
|
||||
<string name="setup_current_time">Núverandi tími</string>
|
||||
<string name="intro_restore_title">Endurheimta forrit og gögn</string>
|
||||
<string name="intro_restore_subtitle">Ef þú ert með Seedvault-öryggisafrit af <xliff:g id="name" example="LineageOS">%s</xliff:g> eða öðrum stýrikerfum, þá geturðu endurheimt það hér.</string>
|
||||
<string name="intro_restore_button">Endurheimta úr öryggisafriti</string>
|
||||
<string name="setup_location">Staðsetningarþjónustur</string>
|
||||
<string name="location_access_summary"><b>Leyfa forrit sem hafa beðið um heimild þína</b> til að nota staðsetningarupplýsingar. Þetta gæti falið í sér aðgang að upplýsingum um núverandi jafnt sem fyrri staðsetningar.</string>
|
||||
<string name="location_agps_access_summary">Þegar kveikt er á staðsetningu, <b>skal sækja gögn af netinu fyrir stuðning við gervihnattastaðsetningu</b> sem geta bætt verulega afköst í ræsingu á GPS-tækjum.</string>
|
||||
<string name="update_recovery_title">Uppfæra endurheimtingu LineageOS</string>
|
||||
<string name="update_recovery_description">Uppfærir LineageOS endurheimtingarmynd í fyrstu ræsingu á eftir hverri uppfærslu.</string>
|
||||
<string name="update_recovery_warning">Endurheimtudiskmyndin verður uppfærð um leið og þú lýkur uppsetningunni. Ef þú vilt halda henni ósnertri, skaltu gera þetta óvirkt.</string>
|
||||
<string name="update_recovery_setting">Uppfæra endurheimtingu LineageOS samhliða uppfærslum stýrikerfis</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">Eiginleikar LineageOS</string>
|
||||
<string name="services_pp_explanation">Þessar þjónustur gera þér kleift að útvíkka eiginleika tækisins þíns. Gögn verða notuð í samræmi við persónuverndarstefnu <xliff:g id="name" example="LineageOS">%1$s</xliff:g>.</string>
|
||||
<string name="services_find_privacy_policy">Lestu stefnu varðandi meðferð persónulegra gagna með því að fara á <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Hjálpaðu okkur að bæta <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> með því að senda sjálfvirkt greiningargögn og upplýsingar um notkun til <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Þessar upplýsingar er ekki hægt að nota til að auðkenna þig og hjálpa þróunarteymum við vinnu varðandi ýmis atriði, eins og líftíma rafhlöðu, afköst forrita og nýja eiginleika í <xliff:g id="name" example="LineageOS">%3$s</xliff:g>.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Nota leiðsagnarlykla á skjánum</b> í stað vélbúnaðarhnappa.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Flakk</string>
|
||||
<string name="navigation_summary">Veldu þá aðferð við flakk sem þú vilt nota</string>
|
||||
<string name="gesture_navigation">Bendingastjórnun</string>
|
||||
<string name="navbar_navigation">Þriggja-hnappa stjórnun</string>
|
||||
<string name="hide_gesture_hint">Fela ábendingu við bendingaflakk</string>
|
||||
<string name="setup_theme">Þema</string>
|
||||
<string name="theme_summary">Dökkt þema notar svartan bakgrunn til að rafhlaðan endist lengur á sumum skjám</string>
|
||||
<string name="dark">Dökkt</string>
|
||||
<string name="light">Ljóst</string>
|
||||
</resources>
|
||||
55
res/values-it/strings.xml
Normal file
55
res/values-it/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Installazione guidata</string>
|
||||
<string name="next">Avanti</string>
|
||||
<string name="skip">Salta</string>
|
||||
<string name="start">Inizia</string>
|
||||
<string name="done">Fatto</string>
|
||||
<string name="ok">Ok</string>
|
||||
<string name="loading">Solo un secondo\u2026</string>
|
||||
<string name="setup_welcome_message">Benvenuto in <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">Configura il tuo profilo di lavoro</string>
|
||||
<string name="emergency_call">Emergenza</string>
|
||||
<string name="accessibility_settings">Impostazioni di accessibilità</string>
|
||||
<string name="setup_locale">Lingua</string>
|
||||
<string name="sim_locale_changed">%1$s SIM rilevata</string>
|
||||
<string name="setup_sim_missing">Scheda SIM mancante</string>
|
||||
<string name="sim_missing_summary" product="tablet">Non è stata riconosciuta alcuna scheda SIM nel tuo tablet. Per inserire una scheda SIM, leggi le istruzioni comprese col tuo dispositivo.</string>
|
||||
<string name="sim_missing_summary" product="default">Non è stata rilevata alcuna scheda SIM nel tuo cellulare. Per inserire una scheda SIM, leggi le istruzioni comprese col tuo dispositivo.</string>
|
||||
<string name="setup_datetime">Data & ora</string>
|
||||
<string name="date_time_summary">Imposta il fuso orario e se necessario regola data e ora corrente</string>
|
||||
<string name="setup_current_date">Data corrente</string>
|
||||
<string name="setup_current_time">Ora corrente</string>
|
||||
<string name="intro_restore_title">Ripristina app e dati</string>
|
||||
<string name="intro_restore_subtitle">Se hai un backup Seedvault di <xliff:g id="name" example="LineageOS">%s</xliff:g> o di qualsiasi altro sistema operativo, puoi ripristinarlo qui.</string>
|
||||
<string name="intro_restore_button">Ripristina dal backup</string>
|
||||
<string name="setup_location">Localizzazione</string>
|
||||
<string name="location_access_summary"><b>Consenti alle applicazioni che hanno chiesto la tua autorizzazione</b> di utilizzare informazioni sulla tua posizione. Ciò può includere la tua posizione attuale e quelle precedenti.</string>
|
||||
<string name="location_agps_access_summary">Quando la geolocalizzazione è attiva, <b>scarica da internet i dati di assistenza satellitare</b>, che possono migliorare notevolmente le prestazioni di avvio del GPS.</string>
|
||||
<string name="update_recovery_title">Aggiorna recovery Lineage</string>
|
||||
<string name="update_recovery_description">Aggiorna la recovery Lineage al primo avvio successivo ad ogni aggiornamento.</string>
|
||||
<string name="update_recovery_warning">La recovery verrà aggiornata non appena terminerai la configurazione. Se desideri mantenerla intatta, disabilita questa funzione.</string>
|
||||
<string name="update_recovery_setting">Aggiorna la recovery Lineage insieme al sistema operativo</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">Funzioni LineageOS</string>
|
||||
<string name="services_pp_explanation">Questi servizi funzionano per estendere le funzionalità del tuo dispositivo. I dati saranno utilizzati in conformità con l\'informativa sulla privacy di <xliff:g id="name" example="LineageOS">%1$s</xliff:g>.</string>
|
||||
<string name="services_find_privacy_policy">Puoi leggere l\'informativa sulla privacy su un altro dispositivo visitando <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">Contribuisci a migliorare <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> inviando automaticamente dati diagnostici e di consumo agli svilupatori di <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. Queste informazioni non possono essere utilizzate per identificare te ma danno una mano ai team che lavorano su cose come la durata della batteria, performance delle app e nuove funzioni di <xliff:g id="name" example="LineageOS">%3$s</xliff:g>.</string>
|
||||
<string name="services_os_nav_keys_label"><b>Usa i pulsanti virtuali a schermo</b> invece di quelli fisici.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">Navigazione</string>
|
||||
<string name="navigation_summary">Scegli il metodo di navigazione preferito</string>
|
||||
<string name="gesture_navigation">Navigazione tramite gesti</string>
|
||||
<string name="navbar_navigation">Navigazione con tre pulsanti</string>
|
||||
<string name="hide_gesture_hint">Nascondi i suggerimenti per la navigazione tramite gesti</string>
|
||||
<string name="setup_theme">Tema</string>
|
||||
<string name="theme_summary">Il tema scuro usa uno sfondo nero per prolungare la durata della batteria su alcuni schermi</string>
|
||||
<string name="dark">Scuro</string>
|
||||
<string name="light">Chiaro</string>
|
||||
</resources>
|
||||
55
res/values-iw/strings.xml
Normal file
55
res/values-iw/strings.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2013-2015 The CyanogenMod Project
|
||||
SPDX-FileCopyrightText: The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">אשף ההגדרות</string>
|
||||
<string name="next">הבא</string>
|
||||
<string name="skip">דלג</string>
|
||||
<string name="start">התחל</string>
|
||||
<string name="done">בוצע</string>
|
||||
<string name="ok">אישור</string>
|
||||
<string name="loading">רק רגע\u2026</string>
|
||||
<string name="setup_welcome_message">ברוכים הבאים אל <xliff:g id="name" example="LineageOS">%1$s</xliff:g></string>
|
||||
<string name="setup_managed_profile_welcome_message">הגדרת פרופיל העבודה שלך</string>
|
||||
<string name="emergency_call">שיחת חירום</string>
|
||||
<string name="accessibility_settings">הגדרות נגישות</string>
|
||||
<string name="setup_locale">שפה</string>
|
||||
<string name="sim_locale_changed">זוהו %1$s כרטיסי SIM</string>
|
||||
<string name="setup_sim_missing">כרטיס SIM חסר</string>
|
||||
<string name="sim_missing_summary" product="tablet">לא זוהה כרטיס SIM בטאבלט שלך. כדי להכניס כרטיס SIM, קרא את הוראות ההפעלה שהגיעו יחד עם מכשירך.</string>
|
||||
<string name="sim_missing_summary" product="default">לא זוהה כרטיס SIM במכשיר. כדי להכניס כרטיס SIM, קרא את הוראות ההפעלה שהגיעו יחד עם מכשירך.</string>
|
||||
<string name="setup_datetime">תאריך ושעה</string>
|
||||
<string name="date_time_summary">הגדר את אזור הזמן שלך והתאם את התאריך ואת השעה הנוכחיים במידת הצורך</string>
|
||||
<string name="setup_current_date">התאריך הנוכחי</string>
|
||||
<string name="setup_current_time">השעה הנוכחית</string>
|
||||
<string name="intro_restore_title">שחזור יישומים ונתונים</string>
|
||||
<string name="intro_restore_subtitle">אם יש לך גיבוי של Seedvault מ-<xliff:g id="name" example="LineageOS">%s</xliff:g> או מכל מערכת הפעלה אחרת, ניתן לשחזר אותו כאן.</string>
|
||||
<string name="intro_restore_button">שחזור מגיבוי</string>
|
||||
<string name="setup_location">שירותי מיקום</string>
|
||||
<string name="location_access_summary"><b>אפשר ליישומים שביקשו את רשותך</b> להשתמש במידע על מיקומך. הפעולה עשויה לכלול את מיקומך הנוכחי ומיקומים קודמים.</string>
|
||||
<string name="location_agps_access_summary">כאשר המיקום פועל, <b> הורדת נתוני סיוע לווייני מהאינטרנט </b>, שיכולים לשפר מאוד את ביצועי ההפעלה של ה- GPS.</string>
|
||||
<string name="update_recovery_title">עדכון ה-Recovery של Lineage</string>
|
||||
<string name="update_recovery_description">עדכן את ה- Recovery של Lineage באתחול הראשון לאחר כל עדכון.</string>
|
||||
<string name="update_recovery_warning">ה-Recovery יעודכן מיד לאחר סיום ההתקנה. אם אין ברצונך לעדכן אותו, יש להשבית אפשרות זו.</string>
|
||||
<string name="update_recovery_setting">עדכון Recovery של Lineage יחד עם מערכת ההפעלה</string>
|
||||
<string name="update_recovery_full_description"><xliff:g id="recovery_update_description">%1$s</xliff:g>\n<xliff:g id="recovery_update_warning">%2$s</xliff:g></string>
|
||||
<string name="setup_services">תכונות LineageOS</string>
|
||||
<string name="services_pp_explanation">שירותים אלו פועלים עבורך כדי להרחיב את יכולות ההתקן שלך. הנתונים ישמשו בכפוף לתנאי הפרטיות המופיעים במדיניות הפרטיות של <xliff:g id="name" example="LineageOS">%1$s</xliff:g>.</string>
|
||||
<string name="services_find_privacy_policy">ניתן לעיין במדיניות הפרטיות בהתקן אחר באמצעות ביקור בכתובת <xliff:g id="uri" example="https://lineageos.org/legal">%1$s</xliff:g></string>
|
||||
<string name="services_help_improve_cm">עזרה בשיפור <xliff:g id="name" example="LineageOS">%s</xliff:g></string>
|
||||
<string name="services_metrics_label"><xliff:g id="name" example="Help improve LineageOS">%1$s</xliff:g> על ידי שליחת נתוני אבחון ושימוש אוטומטית אל <xliff:g id="name" example="LineageOS">%2$s</xliff:g>. לא ניתן להשתמש במידע זה כדי לזהות אותך, המידע יעניק סיוע לצוותים העובדים על דברים כמו חיי סוללה, ביצועי יישומים ותכונות חדשות של <xliff:g id="name" example="LineageOS">%3$s</xliff:g>.</string>
|
||||
<string name="services_os_nav_keys_label"><b>השתמש במקשי הניווט במסך</b> במקום במקשים הפיזיים.</string>
|
||||
<string name="services_full_description"><xliff:g id="pp_explanation">%1$s</xliff:g>\n<xliff:g id="pp_find">%2$s</xliff:g></string>
|
||||
<string name="setup_navigation">ניווט</string>
|
||||
<string name="navigation_summary">בחירת שיטת ניווט מועדפת</string>
|
||||
<string name="gesture_navigation">ניווט מחוות</string>
|
||||
<string name="navbar_navigation">ניווט 3 לחצנים</string>
|
||||
<string name="hide_gesture_hint">הסתרת רמז לנווט מחוות</string>
|
||||
<string name="setup_theme">ערכת נושא</string>
|
||||
<string name="theme_summary">ערכת נושא כהה משתמשת ברקע שחור כדי לשמור על זמן סוללה ארוך יותר במסכים מסויימים</string>
|
||||
<string name="dark">כהה</string>
|
||||
<string name="light">בהיר</string>
|
||||
</resources>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user