Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Italian localization #27

Merged
merged 11 commits into from
Aug 14, 2024
58 changes: 58 additions & 0 deletions play-services-base/core/src/main/res/values-it/arrays.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2013-2017 microG Project Team
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->

<resources>
<string-array name="network_types" translatable="false">
<item>mobile</item>
<item>wifi</item>
<item>roaming</item>
<item>altro</item>
</string-array>

<string-array name="network_types_names" translatables="false">
<item>@string/network_type_mobile</item>
<item>@string/network_type_wifi</item>
<item>@string/network_type_roaming</item>
<item>@string/network_type_other</item>
</string-array>

<string-array name="gcm_network_config_values" translatables="false">
<item>-1</item>
<item>0</item>
<item>1</item>
<item>2</item>
<item>5</item>
<item>10</item>
<item>15</item>
<item>20</item>
<item>30</item>
</string-array>

<string-array name="gcm_network_config_names" translatables="false">
<item>@string/service_status_disabled</item>
<item>@string/service_status_automatic</item>

<!-- These will be automatically generated from the OS, no need to translate them -->
<item>Intervallo ping: 60 secondi</item>
<item>Intervallo ping: 2 minuti</item>
<item>Intervallo ping: 5 minuti</item>
<item>Intervallo ping: 10 minuti</item>
<item>Intervallo ping: 15 minuti</item>
<item>Intervallo ping: 20 minuti</item>
<item>Intervallo ping: 30 minuti</item>
</string-array>
</resources>
31 changes: 31 additions & 0 deletions play-services-base/core/src/main/res/values-it/plurals.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2017 microG Project Team
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->

<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<plurals name="gcm_registered_apps_counter">
<item quantity="one"><xliff:g example="1">%1$d</xliff:g> app registrata</item>
<item quantity="other"><xliff:g example="123">%1$d</xliff:g> app registrate</item>
</plurals>
<plurals name="cond_perm_summary">
<item quantity="one">Un permesso richiesto per il corretto funzionamento dei Servizi MicroG non è stato concesso.</item>
<item quantity="other">Dei permessi richiesti per il corretto funzionamento dei Servizi MicroG non sono stati concessi.</item>
</plurals>
<plurals name="cond_perm_action">
<item quantity="one">Richiesta permesso mancante</item>
<item quantity="other">Richiesta permessi mancanti</item>
</plurals>
</resources>
Loading
Loading