Update strings

This commit is contained in:
Tommaso Berlose 2020-05-17 13:19:55 +02:00
parent 06443ddddb
commit cebd679856
17 changed files with 398 additions and 931 deletions

Binary file not shown.

View File

@ -22,7 +22,7 @@ android {
applicationId "com.tommasoberlose.anotherwidget"
minSdkVersion 23
targetSdkVersion 29
versionCode 92
versionCode 93
versionName "2.0.9"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Binary file not shown.

View File

@ -45,8 +45,9 @@ class SupportDevActivity : AppCompatActivity(), PurchasesUpdatedListener {
adapter = SlimAdapter.create()
adapter
.register<SkuDetails>(R.layout.inapp_product_layout) { item, injector ->
item.sku
injector
.text(R.id.product_title, item.title.replace("(Another Widget)", ""))
.text(R.id.product_title, item.sku.replace("(Another Widget)", ""))
.text(R.id.product_price, item.price)
.clicked(R.id.item) {
viewModel.purchase(this, item)

View File

@ -32,11 +32,6 @@ class WeatherProviderActivity : AppCompatActivity() {
openURI("https://home.openweathermap.org/users/sign_up")
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
last_info.text = Html.fromHtml(getString(R.string.api_key_info_all_set), Html.FROM_HTML_MODE_LEGACY)
} else {
last_info.text = Html.fromHtml(getString(R.string.api_key_info_all_set))
}
api_key.editText?.setText(Preferences.weatherProviderApi)
}
}

View File

@ -99,7 +99,7 @@ class CalendarTabFragment : Fragment() {
viewModel.calendarAllDay.observe(viewLifecycleOwner, Observer {
maintainScrollPosition {
all_day_label?.text =
if (it) getString(R.string.settings_all_day_subtitle_visible) else getString(R.string.settings_all_day_subtitle_gone)
if (it) getString(R.string.settings_visible) else getString(R.string.settings_not_visible)
}
checkReadEventsPermission()
})
@ -215,7 +215,7 @@ class CalendarTabFragment : Fragment() {
}
dialog.addItem(
if (calendarSelectorList[index].name == calendarSelectorList[index].accountName) getString(R.string.account_events) else calendarSelectorList[index].name,
if (calendarSelectorList[index].name == calendarSelectorList[index].accountName) getString(R.string.main_calendar) else calendarSelectorList[index].name,
calendarSelectorList[index].id
)
}
@ -232,8 +232,8 @@ class CalendarTabFragment : Fragment() {
action_show_all_day.setOnClickListener {
if (Preferences.showEvents) {
BottomSheetMenu<Boolean>(requireContext(), header = getString(R.string.settings_all_day_title)).setSelectedValue(Preferences.calendarAllDay)
.addItem(getString(R.string.settings_all_day_subtitle_visible), true)
.addItem(getString(R.string.settings_all_day_subtitle_gone), false)
.addItem(getString(R.string.settings_visible), true)
.addItem(getString(R.string.settings_not_visible), false)
.addOnSelectItemListener { value ->
Preferences.calendarAllDay = value
}.show()

View File

@ -97,6 +97,7 @@ class GlanceTabFragment : Fragment() {
viewModel.showGlance.observe(viewLifecycleOwner, Observer {
maintainScrollPosition {
binding.isGlanceVisible = it
show_glance_label.text = if (it) getString(R.string.description_show_glance_visible) else getString(R.string.description_show_glance_not_visible)
}
})

View File

@ -187,7 +187,7 @@ class MainFragment : Fragment(), SharedPreferences.OnSharedPreferenceChangeList
clock_bottom_margin_large?.isVisible =
Preferences.showClock && Preferences.clockBottomMargin == Constants.ClockBottomMargin.LARGE.value
if ((Preferences.showClock && time_container?.isVisible == false) || (!Preferences.showClock && time_container?.isVisible == true)) {
if ((Preferences.showClock && (time?.alpha ?: 1f < 1f)) || (!Preferences.showClock && (time?.alpha ?: 0f > 0f))) {
if (Preferences.showClock) {
time_container?.layoutParams = time_container.layoutParams.apply {
height = RelativeLayout.LayoutParams.WRAP_CONTENT

View File

@ -155,7 +155,7 @@
android:textSize="16sp"
android:gravity="start"
android:textAlignment="viewStart"
android:id="@+id/last_info"/>
android:text="@string/api_key_info_all_set"/>
<com.google.android.material.button.MaterialButton
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@ -95,7 +95,6 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/show_clock_label"
android:text="@string/description_show_clock"
style="@style/AnotherWidget.Settings.Subtitle"/>
</LinearLayout>
<com.google.android.material.switchmaterial.SwitchMaterial
@ -202,7 +201,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="16dp"
android:text="@string/style_header"
android:text="@string/appearance_header"
android:textAlignment="viewStart"
android:paddingLeft="20dp"
android:paddingRight="20dp"

View File

@ -239,6 +239,43 @@
style="@style/AnotherWidget.Settings.Subtitle"/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="16dp"
android:paddingBottom="16dp"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:clickable="true"
android:focusable="true"
android:background="?android:attr/selectableItemBackground"
android:gravity="center_vertical"
android:id="@+id/action_custom_font"
android:orientation="horizontal">
<ImageView
android:layout_width="48dp"
android:layout_height="48dp"
android:padding="12dp"
android:src="@drawable/round_font_download"
android:tint="@color/colorPrimaryText"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/AnotherWidget.Settings.Title"
android:text="@string/settings_custom_font_title"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/custom_font_label"
style="@style/AnotherWidget.Settings.Subtitle"/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -287,30 +324,31 @@
android:focusable="true"
android:background="?android:attr/selectableItemBackground"
android:gravity="center_vertical"
android:id="@+id/action_custom_font"
android:id="@+id/action_show_dividers"
android:orientation="horizontal">
<ImageView
android:layout_width="48dp"
android:layout_height="48dp"
android:padding="12dp"
android:src="@drawable/round_font_download"
android:src="@drawable/round_vertical_align_center"
android:rotation="90"
android:tint="@color/colorPrimaryText"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:orientation="vertical">
android:paddingRight="8dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/AnotherWidget.Settings.Title"
android:text="@string/settings_custom_font_title"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/custom_font_label"
style="@style/AnotherWidget.Settings.Subtitle"/>
android:text="@string/settings_show_dividers_title" />
<TextView
android:id="@+id/show_dividers_label"
style="@style/AnotherWidget.Settings.Subtitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
<LinearLayout
@ -353,44 +391,6 @@
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="16dp"
android:paddingBottom="16dp"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:clickable="true"
android:focusable="true"
android:background="?android:attr/selectableItemBackground"
android:gravity="center_vertical"
android:id="@+id/action_show_dividers"
android:orientation="horizontal">
<ImageView
android:layout_width="48dp"
android:layout_height="48dp"
android:padding="12dp"
android:src="@drawable/round_vertical_align_center"
android:rotation="90"
android:tint="@color/colorPrimaryText"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="8dp"
android:paddingRight="8dp">
<TextView
style="@style/AnotherWidget.Settings.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/settings_show_dividers_title" />
<TextView
android:id="@+id/show_dividers_label"
style="@style/AnotherWidget.Settings.Subtitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
</layout>

View File

@ -38,8 +38,8 @@
<ImageView
android:layout_width="48dp"
android:layout_height="48dp"
android:padding="11dp"
android:src="@drawable/round_widgets"
android:padding="12dp"
android:src="@drawable/round_hourglass_empty"
android:tint="@color/colorPrimaryText"/>
<LinearLayout
android:layout_width="0dp"
@ -56,8 +56,7 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/show_clock_label"
android:text="@string/description_show_glance"
android:id="@+id/show_glance_label"
style="@style/AnotherWidget.Settings.Subtitle"/>
</LinearLayout>
<com.google.android.material.switchmaterial.SwitchMaterial
@ -102,7 +101,7 @@
<ImageView
android:layout_width="48dp"
android:layout_height="48dp"
android:padding="10dp"
android:padding="11dp"
android:src="@drawable/round_music_note"
android:tint="@color/colorPrimaryText"/>
<LinearLayout
@ -155,7 +154,7 @@
<ImageView
android:layout_width="48dp"
android:layout_height="48dp"
android:padding="11dp"
android:padding="12dp"
android:src="@drawable/round_alarm"
android:tint="@color/colorPrimaryText"/>
<LinearLayout
@ -200,7 +199,7 @@
<ImageView
android:layout_width="48dp"
android:layout_height="48dp"
android:padding="10dp"
android:padding="11dp"
android:src="@drawable/round_directions_walk"
android:tint="@color/colorPrimaryText"/>
<LinearLayout
@ -290,7 +289,7 @@
<ImageView
android:layout_width="48dp"
android:layout_height="48dp"
android:padding="10dp"
android:padding="12dp"
android:src="@drawable/round_notes"
android:tint="@color/colorPrimaryText"/>
<LinearLayout
@ -340,7 +339,7 @@
<ImageView
android:layout_width="48dp"
android:layout_height="48dp"
android:padding="10dp"
android:padding="12dp"
android:src="@drawable/round_flip_to_front"
android:tint="@color/colorPrimaryText"/>
<LinearLayout

View File

@ -302,7 +302,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="16dp"
android:text="@string/style_header"
android:text="@string/appearance_header"
android:textAlignment="viewStart"
android:paddingLeft="20dp"
android:paddingRight="20dp"

View File

@ -1,244 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="add_widget">Widget hinzufügen</string>
<string name="button_request_permission">Rechte erteilen</string>
<string name="title_permission_calendar">Sehen Sie Ihre Termine</string>
<string name="title_permission_location">Kontrolliere das Wetter</string>
<string name="description_permission_calendar">Gewähren Sie Zugriff auf Ihren Kalender, um Ereignisse in Ihrem
Widget anzuzeigen.\n\t
</string>
<string name="description_permission_location">Gewähren Sie Zugriff auf Ihren Ort, um das Wetter in Ihrem Widget
anzuzeigen.\n\t
</string>
<string name="settings_filter_calendar_title">Veranstaltungen filtern</string>
<string name="action_share">Teilen</string>
<string name="action_rate">App bewertern</string>
<string name="action_support">Ünterstützten Sie mich</string>
<string name="all_set_title">Gut gemacht!</string>
<string name="notification_subtitle">Sehen Sie sich Ihre Ereignisse und das Wetter in einem anderen Widget an.
</string>
<string name="notification_title">Holen Sie mehr aus Ihrem Widget heraus</string>
<string name="all_set_subtitle">Sie haben die Konfiguration abgeschlossen. Achten Sie auf Updates.</string>
<string name="all_set_btn">Bleiben Sie aktuell</string>
<string name="action_about">Über</string>
<string name="h_code">Std</string>
<string name="min_code">" Min"</string>
<string name="in_code">in</string>
<string name="action_project">Projekt</string>
<string name="settings_unit_title">Messeinheit</string>
<string name="settings_unit_subtitle">Wählen Sie die Einheit der Temperaturmessung</string>
<string name="settings_filter_calendar_subtitle">Sichtbarkeit der Kalender</string>
<string name="settings_all_day_title">Ganztag-Veranstaltungen</string>
<string name="settings_all_day_subtitle_visible">Sichtbar</string>
<string name="settings_all_day_subtitle_gone">Nicht sichtbar</string>
<string name="main_calendar">Kalender-Account</string>
<string name="settings_calendar_title">Kalender-Einstellungen</string>
<string name="settings_weather_title">Wetter-Einstellungen</string>
<string name="settings_general_title">Allgemeine Einstellungen</string>
<string name="calendar_settings_list_error">Fehler beim Laden der Kalenderliste</string>
<string name="settings_hour_format_title">Stundenformat</string>
<string name="settings_hour_format_subtitle_12">12 Stunden AM/PM</string>
<string name="settings_hour_format_subtitle_24">24 Stunden</string>
<string name="all_day">Ganztag-Veranstaltung</string>
<string name="settings_date_format_title">Datumsformat</string>
<string name="settings_weather_refresh_period_title">Aktualisierungszeitraum</string>
<string name="settings_weather_refresh_period_subtitle_0">30 Minuten</string>
<string name="settings_weather_refresh_period_subtitle_1">1 Stunde</string>
<string name="settings_weather_refresh_period_subtitle_2">3 Stunden</string>
<string name="settings_weather_refresh_period_subtitle_3">6 Stunden</string>
<string name="settings_weather_refresh_period_subtitle_4">12 Stunden</string>
<string name="settings_weather_refresh_period_subtitle_5">24 Stunden</string>
<string name="settings_custom_location_title">" Benutzerdefinierte Position"</string>
<string name="custom_location_gps">Geo-Lokalisierung</string>
<string name="action_refresh_widget">Widget erneuern</string>
<string name="show_events_visible">Veranstaltungen sind sichtbar</string>
<string name="show_events_not_visible">Veranstaltungen sind nicht sichtbar</string>
<string name="show_weather_visible">Wetterinfos sind sichtbar</string>
<string name="show_weather_not_visible">Wetterinfos sind nicht sichtbar</string>
<string name="settings_show_until_subtitle_0">3 Stunden später</string>
<string name="settings_show_until_subtitle_1">6 Stunden später</string>
<string name="settings_show_until_subtitle_2">12 Stunden später</string>
<string name="settings_show_until_subtitle_3">24 Stunden später</string>
<string name="settings_show_until_subtitle_4">3 Tage später</string>
<string name="settings_show_until_subtitle_5">7 Tage später</string>
<string name="settings_show_until_title">Sehen Sie die Ereignisse höchstens bis</string>
<string name="day_char">T</string>
<string name="error_opening_uri">Fehler beim Öffnen der URL: Link in die Zwischenablage kopiert.</string>
<string name="loading_text">Daten werden geladen...</string>
<string name="error_opening_app">Fehler beim Öffnen der App.</string>
<string name="settings_calendar_app_title">Standard Kalender-App</string>
<string name="settings_weather_app_title">Beim Klick auf\'s Wetter öffnet sich</string>
<string name="default_name">Standardapp</string>
<string name="action_choose_application">App wählen</string>
<string name="settings_weather_provider_api_key_title">Wetter-Anbieter</string>
<string name="settings_weather_provider_api_key_subtitle_all_set">Der Wetteranbieter ist korrekt konfiguriert
</string>
<string name="settings_weather_provider_api_key_subtitle_not_set">Der Wetteranbieter muss konfiguriert werden
</string>
<string name="notification_gps_title">GPS einschalten</string>
<string name="notification_gps_subtitle">Google Awareness benötigt aktives GPS zum Arbeiten.</string>
<string name="action_feedback">Rückmeldung</string>
<string name="feedback_title">AW Rückmeldung</string>
<string name="feedback_chooser_title">E-Mail senden...</string>
<string name="feedback_error">Fehler beim Senden der E-Mail.</string>
<string name="api_key_hint">OpenWeather API Key</string>
<string name="action_save">Speichern</string>
<string name="error_no_calendar">Keine Kalender gefunden</string>
<string name="api_key_info_title">Was ist zu tun</string>
<string name="api_key_info_text">
<![CDATA[Another Widget ist eine kostenlose Anwendung und wird ohne Bannerwerbung bleiben.<BR /> <BR />Aufgrund seines großen Erfolges, der sicherlich meine Erwartungen übertrifft, unterstützt der Wetteranbieter nicht alle ankommenden Anfragen (einfach, weil es kostenlos und daher begrenzt ist).<BR /><BR />Ich muss jeden von Ihnen bitten, ein Konto bei OpenWeather persönlich zu registrieren. Der Vorgang dauert nur ein paar Minuten, und wenn der Schlüssel aktiviert ist, haben Sie keine Probleme mit dem Wetter.<BR /><BR />Ich entschuldige mich für die Unannehmlichkeiten und stütze mich weiter!]]></string>
<string name="api_key_title_1">Registrierung eines OpenWeather Kontos</string>
<string name="api_key_subtitle_1">Registrieren Sie ein kostenloses Konto bei OpenWeather. Es wird nur ein paar
Minuten dauern.
</string>
<string name="api_key_title_2">API-Key kopieren</string>
<string name="api_key_subtitle_2">Greifen Sie über Ihre Kontoeinstellungen auf das API-Schlüsselmenü zu und kopieren
Sie den Standardschlüssel.
</string>
<string name="api_key_title_3">Fügen Sie den Schlüssel zur App hinzu</string>
<string name="api_key_subtitle_3">Geben Sie den Schlüssel in diesem Abschnitt ein und speichern Sie ihn. Sobald der
Schlüssel aktiviert ist, ist das Wetter sichtbar.
</string>
<string name="api_key_info_start">Hi zusammen!</string>
<string name="action_open_provider">Öffnen von OpenWeatherMap.com</string>
<string name="api_key_info_all_set">
<![CDATA[Es kann bis zu <b> zehn Minuten </b> dauern, bis der API-Schlüssel aktiviert wird.<BR /><i> Entspannen </ i> Sie! Das Wetter wird aktualisiert, sobald es verfügbar ist !!]]></string>
<string name="well_done">Gut gemacht!</string>
<string name="hs_code">Std</string>
<string name="tomorrow">Morgen</string>
<string name="today">Heute</string>
<string name="settings_event_app_title">Klick auf die Veranstaltung öffnet</string>
<string name="settings_second_row_info_title">Informationen der zweiten Reihe</string>
<string name="settings_font_color_title">Textfarbe</string>
<string name="title_main_text_size">Schriftgröße erste Reihe</string>
<string name="title_second_text_size">Schriftgröße zweite Reihe</string>
<string name="settings_clock_title">Einstellung der Uhr</string>
<string name="settings_second_row_info_subtitle_1">Zeige Ereignisadresse anstelle von Zeit</string>
<string name="settings_second_row_info_subtitle_0">Zeige Ereignisszeit</string>
<string name="settings_second_row_info_subtitle_2">Zeige nächste Erinnerung</string>
<string name="settings_clock_app_title">Klick der Uhr öffnet</string>
<string name="title_show_clock">Uhr anzeigen</string>
<string name="description_show_clock">Zeigt die Zeit über Ereignisse und Wetter an</string>
<string name="show_clock_visible">Uhr ist sichtbar</string>
<string name="show_clock_not_visible">Uhr ist nicht sichtbar</string>
<string name="settings_clock_text_size_title">Schriftgrößte der Uhr</string>
<string name="title_text_shadow">Schatten des Textes</string>
<string name="settings_text_shadow_subtitle_none">Keins</string>
<string name="settings_text_shadow_subtitle_low">Niedrig</string>
<string name="settings_text_shadow_subtitle_high">Hoch</string>
<string name="advanced_settings_title">Erweiterte Einstellungen</string>
<string name="settings_product_sans_font_title">Product Sans Font</string>
<string name="settings_product_sans_font_subtitle">Durch die Verwendung von Product Sans wurde die Möglichkeit zum
Antippen von Widget-Elementen deaktiviert. Ich arbeite dran.
</string>
<string name="settings_show_diff_time_title">Zeit für die Veranstaltung</string>
<string name="settings_visible">Sichtbar</string>
<string name="settings_not_visible">Nicht sichtbar</string>
<string name="settings_show_declined_events_title">Abgelehnte Ereignisse</string>
<string name="default_weather_app">Google Wetter</string>
<string name="default_event_app">Veranstalungsdetails</string>
<string name="default_calendar_app">Standard Kalender-App</string>
<string name="default_clock_app">Standard Uhr-App</string>
<string name="settings_show_until_subtitle_7">1 Stunde später</string>
<string name="settings_show_until_subtitle_6">30 Minuten später</string>
<string name="action_default">Default</string>
<string name="action_none">Deaktiviert</string>
<string name="settings_custom_font_title">Widget Schriftart</string>
<string name="custom_font_subtitle_0">Geräte Schriftart</string>
<string name="custom_font_subtitle_1">Produkt Schriftart</string>
<string name="action_go_to_next_event">Zeige nächste Veranstaltung</string>
<string name="settings_show_multiple_events_title">Zähler für mehrere Ereignisse</string>
<string name="support_main_title">Unterstütze den Entwickler mit</string>
<string name="support_translations_title">Bei der Übersetzung helfen</string>
<string name="support_translations_subtitle">Öffne einen pull request auf GitHub</string>
<string name="support_website_title">Schauen Sie sich meine anderen Projekte an</string>
<string name="support_website_subtitle">Selber Entwickler, mehr Möglichkeiten</string>
<string name="error">Ops, da ist etwas falsch gelaufen!</string>
<string name="thanks">Danke für Ihre Unterstützung</string>
<string name="donation_coffee">Einen italenischen Kaffee</string>
<string name="donation_donuts">Einige glasierte Donuts</string>
<string name="donation_dinner">Ein teueres Abendessen</string>
<string name="donation_breakfast">Ein englischen Frühstück</string>
<string name="donation_lunch">Ein schnelles Mittagsessen</string>
<string name="background_service_title">Another Widget läuft</string>
<string name="background_service_subtitle">AW läuft im Hintergrund</string>
<string name="action_show_widget_preview">Zeige die Widget Vorschau</string>
<string name="action_hide_widget_preview">Verstecke die Widget Vorschau</string>
<string name="error_widget_notification_title">GPS ist aus</string>
<string name="error_widget_notification_subtitle">GPS wieder aktivieren, damit ein Another Widget
Wetterinformationen mit der Google Awareness API aktualisieren kann.
</string>
<!-- TODO -->
<string name="error_weather_api_key">The provider is not configured correctly, do you still want to go back?</string>
<string name="settings_show_next_alarm_title">Show next alarm when possible</string>
<string name="open_location_settings">Location settings</string>
<string name="change_provider">Change provider</string>
<string name="disable_notification">Disable notification</string>
<string name="settings_theme_title">Theme</string>
<string name="support_main_subtitle">Devs always need a lot of coffee</string>
<string name="settings_subtitle_dark_theme_light">Light</string>
<string name="settings_subtitle_dark_theme_dark">Dark</string>
<string name="settings_subtitle_dark_theme_by_battery_saver">Set by Battery Saver</string>
<string name="settings_subtitle_dark_theme_follow_system">Follow the system theme</string>
<string name="settings_subtitle_dark_theme_default">Default</string>
<string name="search">Search</string>
<string name="settings_title_show_wallpaper">Show wallpaper</string>
<string name="support_refresh_widget_subtitle">Force the restart of the widget service</string>
<string name="account_events">Account events</string>
<string name="clock_warning">Due to technological limitations, the clock won\'t have the custom font and the text shadows selected in the typography section.</string>
<string name="weather_warning">Google Awareness weather has been deprecated. It\'s now required an OpenWeather API key to show the weather in the widget.</string>
<string name="custom_date_format">Custom date format</string>
<string name="settings_app_version_title">App version</string>
<string name="support_dev_subtitle">This is a single developer project,\nso thank you for the support!</string>
<string name="settings_feedback_subtitle">This is an open-source project, feel free to help.</string>
<string name="settings_feedback_title">Feedback and feature requests</string>
<string name="settings_clock_bottom_margin_title">Clock bottom margin</string>
<string name="settings_clock_bottom_margin_subtitle_none">None</string>
<string name="settings_clock_bottom_margin_subtitle_small">Small</string>
<string name="settings_clock_bottom_margin_subtitle_medium">Medium</string>
<string name="settings_clock_bottom_margin_subtitle_large">Large</string>
<string name="xiaomi_warning_title">Xiaomi Devices</string>
<string name="xiaomi_warning_message">Enable the permission to display pop-up windows when running in the background inside the "Other permission" section of the app settings. Otherwise, you will not able to open any applications tapping on the widget.</string>
<string name="action_ignore">Ignore</string>
<string name="action_grant_permission">Grant permission</string>
<string name="alpha">Alpha</string>
<string name="settings_background_color_title">Background color</string>
<string name="transparent">Transparent</string>
<string name="next_alarm_warning">The next alarm clock seems to be wrong.\nIt has been set by %s.</string>
<string name="settings_title">Settings</string>
<string name="settings_clock_text_color_title">Clock text color</string>
<string name="settings_music_title">Music</string>
<string name="settings_show_music_title">Show current playing song</string>
<string name="settings_show_music_enabled_subtitle">Playing song info visible</string>
<string name="settings_show_music_disabled_subtitle">Playing song info hidden</string>
<string name="settings_song_info_format_title">Song info format</string>
<string name="settings_request_notification_access">We need the notification access permission to check the current playing song.</string>
<string name="settings_at_a_glance_title">At a Glance</string>
<string name="settings_title_integrations">Integrations</string>
<string name="label_count_installed_integrations">%d installed integrations</string>
<string name="title_show_glance">Show at a glance info</string>
<string name="description_show_glance">Show multiple provider data when there are no events displayed.</string>
<string name="settings_show_dividers_title">Show text dividers</string>
<string name="settings_show_next_alarm_subtitle">Show the next clock alarm</string>
<string name="settings_sort_glance_providers_title">Data source priority</string>
<string name="settings_sort_glance_providers_subtitle">Change the data provider importance</string>
<string name="settings_custom_notes_title">Custom notes</string>
<string name="settings_low_battery_level_title">Battery level</string>
<string name="settings_daily_steps_title">Daily steps</string>
<string name="battery_low_warning">Low battery level</string>
<string name="settings_request_fitness_access">We need a few permissions to get your daily steps from Google Fit.</string>
<string name="settings_ampm_indicator_title">Show AM/PM Indicator</string>
<string name="daily_steps_counter">%d steps today</string>
<string name="settings_secondary_font_color_title">Second row text color</string>
<string name="soon">soon</string>
<string name="now">now</string>
<string name="settings_widget_update_frequency_title">Time left update frequency</string>
<string name="settings_widget_update_frequency_subtitle">High frequency causes more battery consume</string>
<string name="settings_widget_update_frequency_low">Low</string>
<string name="settings_widget_update_frequency_default">Default</string>
<string name="settings_widget_update_frequency_high">High</string>
<string name="settings_weather_icon_pack_title">Icon pack</string>
<string name="settings_weather_icon_pack_default">Default</string>
<string name="settings_weather_icon_pack_minimal">Minimal</string>
</resources>

View File

@ -1,224 +0,0 @@
<resources>
<string name="add_widget">Ajouter</string>
<string name="button_request_permission">Donner la permission</string>
<string name="title_permission_calendar">Afficher vos événements</string>
<string name="title_permission_location">Afficher la météo</string>
<string name="description_permission_calendar">Accorder l\'accès à votre calendrier\npour voir les événements dans votre widget.</string>
<string name="description_permission_location">Accorder l\'accès à votre localisation\npour voir la météo dans votre widget.</string>
<string name="notification_title">Obtenez plus de la part de votre widget</string>
<string name="notification_subtitle">Voir vos événements et la météo dans Another Widget.</string>
<string name="action_share">Partager</string>
<string name="action_rate">Noter l\'app</string>
<string name="action_support">Soutenez-moi</string>
<string name="all_set_title">Bon travail !</string>
<string name="all_set_subtitle">Vous avez fini la configuration.\nDes mises à jour sont à venir.</string>
<string name="all_set_btn">Restez à jour</string>
<string name="action_about">À propos</string>
<string name="h_code">h</string>
<string name="min_code">" min"</string>
<string name="in_code">dans</string>
<string name="action_project">Projet</string>
<string name="settings_unit_title">Unité de mesure</string>
<string name="settings_unit_subtitle">Choisir l\'unité de mesure de température</string>
<string name="settings_filter_calendar_title">Filtrer les événements</string>
<string name="settings_filter_calendar_subtitle">Changer la visibilité du calendrier</string>
<string name="settings_all_day_title">Événements toute la journée</string>
<string name="settings_all_day_subtitle_visible">Visible</string>
<string name="settings_all_day_subtitle_gone">Non visible</string>
<string name="main_calendar">Calendrier du compte</string>
<string name="settings_calendar_title">Calendrier</string>
<string name="settings_weather_title">Météo</string>
<string name="settings_general_title">Typographie</string>
<string name="calendar_settings_list_error">Erreur de chargement du calendrier</string>
<string name="settings_hour_format_title">Format d\'heure</string>
<string name="settings_hour_format_subtitle_12">12 heures</string>
<string name="settings_hour_format_subtitle_24">24 heures</string>
<string name="all_day">Événement toute la journée</string>
<string name="settings_date_format_title">Format de date</string>
<string name="settings_weather_refresh_period_title">Fréquence d\'actualisation</string>
<string name="settings_weather_refresh_period_subtitle_0">30 minutes</string>
<string name="settings_weather_refresh_period_subtitle_1">1 heure</string>
<string name="settings_weather_refresh_period_subtitle_2">3 heures</string>
<string name="settings_weather_refresh_period_subtitle_3">6 heures</string>
<string name="settings_weather_refresh_period_subtitle_4">12 heures</string>
<string name="settings_weather_refresh_period_subtitle_5">24 heures</string>
<string name="settings_custom_location_title">Localisation</string>
<string name="custom_location_gps">Utiliser le GPS</string>
<string name="action_refresh_widget">Actualisation forcée</string>
<string name="show_events_visible">Événements visibles</string>
<string name="show_events_not_visible">Événements non visibles</string>
<string name="show_weather_visible">Infos météo visibles</string>
<string name="show_weather_not_visible">Infos météo non visibles</string>
<string name="settings_show_until_subtitle_0">3 heures avant</string>
<string name="settings_show_until_subtitle_1">6 heures avant</string>
<string name="settings_show_until_subtitle_2">12 heures avant</string>
<string name="settings_show_until_subtitle_3">24 heures avant</string>
<string name="settings_show_until_subtitle_4">3 jours avant</string>
<string name="settings_show_until_subtitle_5">7 jours avant</string>
<string name="settings_show_until_title">Afficher les événements au moins</string>
<string name="day_char">j</string>
<string name="error_opening_uri">Erreur lors de l\'ouverture de l\'URL : Lien copié dans le presse-papiers.</string>
<string name="loading_text">Chargement des données…</string>
<string name="error_opening_app">Erreur lors de l\'ouverture de l\'app.</string>
<string name="settings_calendar_app_title">App calendrier par défaut</string>
<string name="settings_weather_app_title">Taper sur la météo ouvre</string>
<string name="default_name">App par défaut</string>
<string name="action_choose_application">Choisir une application</string>
<string name="settings_weather_provider_api_key_title">Clé API pour la méteo</string>
<string name="settings_weather_provider_api_key_subtitle_all_set">Le fournisseur météo est correctement configuré</string>
<string name="settings_weather_provider_api_key_subtitle_not_set">Le fournisseur de météo doit être configuré</string>
<string name="notification_gps_title">Activer le GPS</string>
<string name="notification_gps_subtitle">Google Awareness a besoin d\'un GPS actif pour fonctionner.</string>
<string name="action_feedback">Commentaires</string>
<string name="feedback_title">Commentaires AW</string>
<string name="feedback_chooser_title">Envoyer un email…</string>
<string name="feedback_error">Erreur lors de l\'envoi de l\'email.</string>
<string name="api_key_hint">Clé API OpenWeather</string>
<string name="error_weather_api_key">Le fournisseur n\'est pas configuré correctement, voulez-vous toujours revenir en arrière ?</string>
<string name="action_save">Sauvegarder</string>
<string name="error_no_calendar">Aucun calendrier trouvé.</string>
<string name="api_key_info_title">Instructions</string>
<string name="api_key_info_text"><![CDATA[Another Widget est une application gratuite et restera sans publicité. <BR /> <BR /> En raison de son grand succès, au-delà de toutes mes attentes, le fournisseur de météo ne peut prendre en charge toutes les demandes (tout simplement parce qu\'il est gratuit et donc limité). <BR /> <BR /> Je dois demander à chacun d\'enregistrer personnellement un compte sur OpenWeather ; l\'opération ne prendra que quelques minutes, et lorsque votre clé sera activée, vous n\'aurez aucun problème avec la météo. <BR /> <BR /> Je suis désolé pour le désagrément, continuez à me soutenir !]]></string>
<string name="api_key_title_1">Inscrivez-vous sur OpenWeather</string>
<string name="api_key_subtitle_1">Créez un compte gratuit sur OpenWeather. Cela ne prendra que quelques minutes.</string>
<string name="api_key_title_2">Copiez votre clé API</string>
<string name="api_key_subtitle_2">Recherchez la clé API dans vos paramètres du compte et copiez la clé par défaut.</string>
<string name="api_key_title_3">Saisissez la clé dans l\'app</string>
<string name="api_key_subtitle_3">Collez la clé dans le champ ci-dessus et enregistrez-la. Une fois la clé activée, la météo deviendra visible.</string>
<string name="api_key_info_start">Bonjour tout le monde !</string>
<string name="action_open_provider">Aller sur le site d\'OpenWeatherMap</string>
<string name="api_key_info_all_set"><![CDATA[Cela peut prendre jusqu\'à <b> 10 minutes </b> avant que votre clé API soit activée. La météo sera mise à jour dès qu\'elle sera disponible !]]></string>
<string name="well_done">Bien joué !</string>
<string name="hs_code">h</string>
<string name="tomorrow">demain</string>
<string name="today">aujourd\'hui</string>
<string name="settings_event_app_title">Taper sur l\'événement ouvre</string>
<string name="settings_second_row_info_title">Information de la seconde ligne</string>
<string name="settings_second_row_info_subtitle_1">Afficher l\'adresse de l\'événement au lieu de l\'heure</string>
<string name="settings_second_row_info_subtitle_0">Afficher l\'heure de l\'événement</string>
<string name="settings_second_row_info_subtitle_2">Afficher l\'heure de la prochaine alarme</string>
<string name="settings_font_color_title">Couleur du texte</string>
<string name="title_main_text_size">Taille du texte de la première ligne</string>
<string name="title_second_text_size">Taille du texte de la seconde ligne</string>
<string name="settings_clock_title">Horloge</string>
<string name="settings_clock_app_title">Taper sur l\'horloge ouvre</string>
<string name="title_show_clock">Afficher l\'horloge</string>
<string name="description_show_clock">Voir l\'heure au-dessus des événements et la météo</string>
<string name="show_clock_visible">Horloge visible</string>
<string name="show_clock_not_visible">Horloge non visible</string>
<string name="settings_clock_text_size_title">Taille du texte de l\'horloge</string>
<string name="settings_show_next_alarm_title">Afficher la prochaine alarme si possible</string>
<string name="title_text_shadow">Ombre du texte</string>
<string name="settings_text_shadow_subtitle_none">Aucune</string>
<string name="settings_text_shadow_subtitle_low">Faible</string>
<string name="settings_text_shadow_subtitle_high">Élevée</string>
<string name="advanced_settings_title">Avancé</string>
<string name="settings_product_sans_font_title">Police Product Sans</string>
<string name="settings_product_sans_font_subtitle">Utiliser la police Product Sans désactive la possibilité de taper sur les événements. Je travaille dessus.</string>
<string name="settings_show_diff_time_title">Temps restant jusqu\'à l\'événement</string>
<string name="settings_visible">Visible</string>
<string name="settings_not_visible">Non visible</string>
<string name="settings_show_declined_events_title">Événements refusés</string>
<string name="default_weather_app">Google Weather</string>
<string name="default_event_app">Détails de l\'événement</string>
<string name="default_calendar_app">App calendrier par défaut</string>
<string name="default_clock_app">App horloge par défaut</string>
<string name="settings_show_until_subtitle_7">1 heure après</string>
<string name="settings_show_until_subtitle_6">30 minutes après</string>
<string name="action_default">Par défaut</string>
<string name="action_none">Désactivé</string>
<string name="settings_custom_font_title">Police du widget</string>
<string name="custom_font_subtitle_0">Police de l\'appareil</string>
<string name="custom_font_subtitle_1">Product Sans</string>
<string name="action_go_to_next_event">Afficher l\'événement\nsuivant</string>
<string name="settings_show_multiple_events_title">Sélecteur d\'événements multiples</string>
<string name="support_main_title">Soutenir le développeur</string>
<string name="support_translations_title">Aider à traduire</string>
<string name="support_translations_subtitle">Ouvrir une pull-request sur GitHub</string>
<string name="support_website_title">Consulter mes autres projets</string>
<string name="support_website_subtitle">Un même développeur, plusieurs possibilités</string>
<string name="error">Oups, quelque chose s\'est mal passé !</string>
<string name="thanks">Merci de m\'avoir soutenu !</string>
<string name="donation_coffee">Un café italien</string>
<string name="donation_donuts">Quelques beignets glacés</string>
<string name="donation_dinner">Un dîner coûteux</string>
<string name="donation_breakfast">Un petit-déjeuner anglais</string>
<string name="donation_lunch">Un déjeuner rapide</string>
<string name="background_service_title">Another Widget est en cours d\'exécution</string>
<string name="background_service_subtitle">AW s\'exécute en arrière-plan</string>
<string name="action_show_widget_preview">Afficher l\'aperçu du widget</string>
<string name="action_hide_widget_preview">Cacher l\'aperçu du widget</string>
<string name="error_widget_notification_title">La localisation est désactivée</string>
<string name="error_widget_notification_subtitle">Réactivez le GPS pour qu\'Another Widget puisse mettre à jour les informations météo avec l\'API Google Awareness.</string>
<string name="open_location_settings">Paramètres de localisation</string>
<string name="change_provider">Changer de fournisseur</string>
<string name="disable_notification">Désactiver les notifications</string>
<string name="settings_theme_title">Thème</string>
<string name="support_main_subtitle">On a toujours besoin de beaucoup de café</string>
<string name="settings_subtitle_dark_theme_light">Clair</string>
<string name="settings_subtitle_dark_theme_dark">Sombre</string>
<string name="settings_subtitle_dark_theme_by_battery_saver">Défini par l\'économiseur de batterie</string>
<string name="settings_subtitle_dark_theme_follow_system">Selon le thème du système</string>
<string name="settings_subtitle_dark_theme_default">Par défaut</string>
<string name="search">Rechercher</string>
<string name="settings_title_show_wallpaper">Afficher le fond d\'écran</string>
<string name="support_refresh_widget_subtitle">Forcer le redémarrage du service du widget</string>
<string name="account_events">Événements du compte</string>
<string name="clock_warning">En raison de limitations technologiques, l\'horloge n\'aura pas la police personnalisée et les ombres de texte sélectionnées dans la section Typographie.</string>
<string name="weather_warning">La météo de Google Awareness est obsolète. Il faut maintenant une clé API OpenWeather pour afficher la météo dans le widget.</string>
<string name="custom_date_format">Format de date personalisé</string>
<string name="settings_app_version_title">Version de l\'app</string>
<string name="support_dev_subtitle">Ceci est un projet de développeur unique,\ndonc merci pour le soutien!</string>
<string name="settings_feedback_subtitle">Ceci est un projet open-source, n\'hésitez pas à aider.</string>
<string name="settings_feedback_title">Commentaires et suggestions</string>
<string name="settings_clock_bottom_margin_title">Marge inférieure de l\'horloge</string>
<string name="settings_clock_bottom_margin_subtitle_none">Aucun</string>
<string name="settings_clock_bottom_margin_subtitle_small">Petit</string>
<string name="settings_clock_bottom_margin_subtitle_medium">Moyen</string>
<string name="settings_clock_bottom_margin_subtitle_large">Grand</string>
<!-- TODO -->
<string name="xiaomi_warning_title">Xiaomi Devices</string>
<string name="xiaomi_warning_message">Enable the permission to display pop-up windows when running in the background inside the "Other permission" section of the app settings. Otherwise, you will not able to open any applications tapping on the widget.</string>
<string name="action_ignore">Ignore</string>
<string name="action_grant_permission">Grant permission</string>
<string name="alpha">Alpha</string>
<string name="settings_background_color_title">Background color</string>
<string name="transparent">Transparent</string>
<string name="next_alarm_warning">The next alarm clock seems to be wrong.\nIt has been set by %s.</string>
<string name="settings_title">Settings</string>
<string name="settings_clock_text_color_title">Clock text color</string>
<string name="settings_music_title">Music</string>
<string name="settings_show_music_title">Show current playing song</string>
<string name="settings_show_music_enabled_subtitle">Playing song info visible</string>
<string name="settings_show_music_disabled_subtitle">Playing song info hidden</string>
<string name="settings_song_info_format_title">Song info format</string>
<string name="settings_request_notification_access">We need the notification access permission to check the current playing song.</string>
<string name="settings_at_a_glance_title">At a Glance</string>
<string name="settings_title_integrations">Integrations</string>
<string name="label_count_installed_integrations">%d installed integrations</string>
<string name="title_show_glance">Show at a glance info</string>
<string name="description_show_glance">Show multiple provider data when there are no events displayed.</string>
<string name="settings_show_dividers_title">Show text dividers</string>
<string name="settings_show_next_alarm_subtitle">Show the next clock alarm</string>
<string name="settings_sort_glance_providers_title">Data source priority</string>
<string name="settings_sort_glance_providers_subtitle">Change the data provider importance</string>
<string name="settings_custom_notes_title">Custom notes</string>
<string name="settings_low_battery_level_title">Battery level</string>
<string name="settings_daily_steps_title">Daily steps</string>
<string name="battery_low_warning">Low battery level</string>
<string name="settings_request_fitness_access">We need a few permissions to get your daily steps from Google Fit.</string>
<string name="settings_ampm_indicator_title">Show AM/PM Indicator</string>
<string name="daily_steps_counter">%d steps today</string>
<string name="settings_secondary_font_color_title">Second row text color</string>
<string name="soon">soon</string>
<string name="now">now</string>
<string name="settings_widget_update_frequency_title">Time left update frequency</string>
<string name="settings_widget_update_frequency_subtitle">High frequency causes more battery consume</string>
<string name="settings_widget_update_frequency_low">Low</string>
<string name="settings_widget_update_frequency_default">Default</string>
<string name="settings_widget_update_frequency_high">High</string>
<string name="settings_weather_icon_pack_title">Icon pack</string>
<string name="settings_weather_icon_pack_default">Default</string>
<string name="settings_weather_icon_pack_minimal">Minimal</string>
</resources>

View File

@ -1,223 +1,204 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name" translatable="false">Another Widget</string>
<string name="add_widget">Aggiungi</string>
<string name="button_request_permission">Concedi Accesso</string>
<string name="all_set_btn">Rimani Aggiornato</string>
<string name="all_set_title">Molto bene!</string>
<string name="action_support">Supportami</string>
<string name="action_rate">Valuta App</string>
<string name="action_share">Condividi</string>
<string name="notification_title">Ottieni di più dal tuo widget</string>
<string name="title_permission_location">Controlla il Meteo</string>
<string name="title_permission_calendar">Controlla i tuoi Impegni</string>
<string name="notification_subtitle">Aggiungi gli eventi e il meteo al tuo widget.</string>
<string name="description_permission_calendar">Concedi l\'accesso al tuo calendario per vedere gli eventi.</string>
<string name="description_permission_location">Concedi l\'accesso alla tua posizione per vedere il meteo.</string>
<string name="all_set_subtitle">Hai completato la configurazione! Rimani aggiornato.</string>
<string name="action_about">Info</string>
<string name="h_code">" ora"</string>
<string name="min_code">" min"</string>
<string name="in_code">tra</string>
<string name="action_project">Progetto</string>
<string name="settings_unit_title">Unità di Misura</string>
<string name="settings_unit_subtitle">Modifica l\'unità di misura della temperatura</string>
<string name="settings_filter_calendar_title">Filtra Eventi</string>
<string name="settings_filter_calendar_subtitle">Scegli quali calendari vedere</string>
<string name="settings_all_day_title">Eventi Giornalieri</string>
<string name="settings_all_day_subtitle_visible">Visibili</string>
<string name="settings_all_day_subtitle_gone">Non visibili</string>
<string name="main_calendar">Calendario Account</string>
<string name="settings_calendar_title">Eventi</string>
<string name="settings_weather_title">Meteo</string>
<!-- Display -->
<string name="settings_general_title">Display</string>
<string name="calendar_settings_list_error">Errore nel caricamento della lista dei calendari</string>
<string name="settings_hour_format_title">Formato Ora</string>
<string name="settings_hour_format_subtitle_12">12 ore AM/PM</string>
<string name="settings_hour_format_subtitle_24">24 ore</string>
<string name="all_day">Tutto il giorno</string>
<string name="settings_date_format_title">Formato Data</string>
<string name="settings_weather_refresh_period_title">Intervallo Aggiornamento</string>
<string name="settings_weather_refresh_period_subtitle_0">30 Minuti</string>
<string name="settings_weather_refresh_period_subtitle_1">1 Ora</string>
<string name="settings_weather_refresh_period_subtitle_2">3 Ore</string>
<string name="settings_weather_refresh_period_subtitle_3">6 Ore</string>
<string name="settings_weather_refresh_period_subtitle_4">12 Ore</string>
<string name="settings_weather_refresh_period_subtitle_5">24 Ore</string>
<string name="settings_custom_location_title">Località</string>
<string name="custom_location_gps">Usa la geolocalizzazione</string>
<string name="action_refresh_widget">Riavvia Widget</string>
<string name="show_events_visible">Eventi visibili</string>
<string name="show_events_not_visible">Eventi non visibili</string>
<string name="show_weather_visible">Meteo visibile</string>
<string name="show_weather_not_visible">Meteo non Visibile</string>
<string name="settings_show_until_subtitle_0">3 Ore dopo</string>
<string name="settings_show_until_subtitle_1">6 Ore dopo</string>
<string name="settings_show_until_subtitle_2">12 Ore dopo</string>
<string name="settings_show_until_subtitle_3">24 Ore dopo</string>
<string name="settings_show_until_subtitle_4">3 Giorni dopo</string>
<string name="settings_show_until_subtitle_5">7 Giorni dopo</string>
<string name="settings_show_until_title">Vedi eventi al massimo fino a</string>
<string name="day_char">g</string>
<string name="error_opening_uri">Errore apertura URL: Link copiato negli appunti.</string>
<string name="loading_text">Caricamento…</string>
<string name="error_opening_app">Errore apertura App.</string>
<string name="settings_calendar_app_title">Applicazione predefinita calendario</string>
<string name="settings_weather_app_title">Il meteo apre</string>
<string name="default_name">App Predefinita</string>
<string name="action_choose_application">Scegli Applicazione</string>
<string name="settings_weather_provider_api_key_title">Chiave API Meteo</string>
<string name="settings_weather_provider_api_key_subtitle_all_set">Il provider meteo è configurato correttamente</string>
<string name="settings_weather_provider_api_key_subtitle_not_set">Il provider meteo deve essere configurato</string>
<string name="notification_gps_title">Riattiva la localizzazione</string>
<string name="notification_gps_subtitle">Google Awareness ha bisogno del GPS attivo per funzionare.</string>
<string name="action_feedback">Feedback</string>
<string name="feedback_title">AW Feedback</string>
<string name="feedback_chooser_title">Invia email…</string>
<string name="feedback_error">Errore invio mail.</string>
<string name="api_key_hint">Chiave API OpenWeather</string>
<string name="error_weather_api_key">Il provider non è configurato correttamente, vuoi comunque uscire?</string>
<string name="action_save">Salva</string>
<string name="error_no_calendar">Nessun calendario trovato.</string>
<string name="api_key_info_title">Cosa fare</string>
<string name="api_key_title_1">Registrati su OpenWeather</string>
<string name="action_open_provider">Apri OpenWeatherMap.com</string>
<string name="api_key_subtitle_1">Registra un account gratuito su OpenWeatherMap.com in pochi minuti.</string>
<string name="api_key_subtitle_2">Accedi alle chiavi API nelle impostazioni e copia la chiave di default.</string>
<string name="api_key_subtitle_3">Aggiungi la chiave all\'applicazione in questa sezione e, una volta che la chiave sarà attivata, apparirà il meteo.</string>
<string name="api_key_title_2">Copia la chiave API</string>
<string name="api_key_title_3">Configura l\'App</string>
<string name="api_key_info_start">Ciao a tutti.</string>
<string name="api_key_info_text"><![CDATA[Another widget è e rimarrà gratuita e senza banner pubblicitari.<BR /><BR />Però a causa del successo dell\'applicazione, sicuramente oltre ogni mia aspettativa, il provider del meteo non riesce a supportare il numero di richieste che arrivano (a causa dell\'utilizzo di un account gratuito).<BR /><BR />Sono costretto a chiedervi di registrarvi su OpenWeather.com; l\'operazione richiederà solo alcuni minuti e dopo non avrete più problemi con la fruizione delle informazioni sul meteo!<BR /><BR />Mi dispiace per l\'inconveniente ma continuate a supportarmi!!]]></string>
<string name="well_done">Ben Fatto!</string>
<string name="api_key_info_all_set"><![CDATA[Posso essere necessari fino a <b>dieci minuti</b> prima che la tua chiave sia attivata. Il meteo verrà aggiornato non appena sarà disponibile!]]></string>
<string name="hs_code">" ore"</string>
<string name="tomorrow">Domani</string>
<string name="today">Oggi</string>
<string name="settings_event_app_title">Gli eventi aprono</string>
<string name="settings_second_row_info_title">Informazione Seconda Riga</string>
<string name="settings_second_row_info_subtitle_0">Orario evento</string>
<string name="settings_second_row_info_subtitle_1">Location evento</string>
<string name="settings_second_row_info_subtitle_2">Mostra orario prossimo allarme</string>
<string name="settings_font_color_title">Colore testo prima riga</string>
<string name="settings_secondary_font_color_title">Colore testo seconda riga</string>
<string name="title_main_text_size">Dimensione Testo Prima Riga</string>
<string name="title_second_text_size">Dimensione Testo Seconda Riga</string>
<string name="settings_clock_title">Orologio</string>
<string name="settings_clock_app_title">L\'orologio apre</string>
<string name="title_show_clock">Mostra Orologio</string>
<string name="description_show_clock">Mostra l\'ora sopra eventi e meteo</string>
<string name="show_clock_visible">Orologio visibile</string>
<string name="show_clock_not_visible">Orologio non visibile</string>
<string name="settings_clock_text_size_title">Dimensione Testo Orologio</string>
<string name="settings_show_next_alarm_title">Mostra prossimo allarme quando possibile</string>
<string name="title_text_shadow">Ombra Testo</string>
<string name="divider" translatable="false">|</string>
<string name="settings_font_color_title">Colore testo</string>
<string name="settings_secondary_font_color_title">Colore testo</string>
<string name="settings_background_color_title">Colore sfondo</string>
<string name="title_main_text_size">Dimensione testo</string>
<string name="title_second_text_size">Dimensione testo</string>
<string name="title_text_shadow">Ombra testo</string>
<string name="settings_text_shadow_subtitle_none">Nessuna</string>
<string name="settings_text_shadow_subtitle_low">Bassa</string>
<string name="settings_text_shadow_subtitle_high">Alta</string>
<string name="advanced_settings_title">Avanzate</string>
<string name="settings_product_sans_font_title">Font Product Sans</string>
<string name="settings_product_sans_font_subtitle">L\'utilizzo del Product Sans disabilita i tap sugli elementi del widget. Ci sto attualmente lavorando.</string>
<string name="settings_show_diff_time_title">Tempo rimanente all\'evento</string>
<string name="settings_show_declined_events_title">Event Rifiutati</string>
<string name="settings_visible">Visibile</string>
<string name="settings_not_visible">Non Visibile</string>
<string name="default_event_app">Dettagli evento</string>
<string name="default_calendar_app">App Calendario di Default</string>
<string name="default_weather_app">Meteo Google</string>
<string name="default_clock_app">App Orologio di Default</string>
<string name="settings_show_until_subtitle_7">1 Ora dopo</string>
<string name="settings_show_until_subtitle_6">30 Minuti dopo</string>
<string name="action_default">Predefinita</string>
<string name="action_none">Disabilita</string>
<string name="custom_font_subtitle_0">Font Dispositivo</string>
<string name="settings_custom_font_title">Font</string>
<string name="custom_font_subtitle_0">Font dispositivo</string>
<string name="custom_font_subtitle_1">Product Sans</string>
<string name="settings_custom_font_title">Font Widget</string>
<string name="action_go_to_next_event">Mostra Evento\nSuccessivo</string>
<string name="settings_show_multiple_events_title">Scorrimento Eventi Multipli</string>
<string name="support_main_title">Supporta lo Sviluppatore</string>
<string name="support_translations_title">Aiuta con le Traduzioni</string>
<string name="support_translations_subtitle">Apri una pull request su GitHub</string>
<string name="support_website_title">Scopri i miei progetti</string>
<string name="support_website_subtitle">Stesso sviluppatore, più possibilità</string>
<string name="error">Ops, sembra che qualcosa non abbia funzionato!</string>
<string name="thanks">Grazie per il supporto!</string>
<string name="donation_coffee">Un Caffè Italiano</string>
<string name="donation_donuts">Qualche Ciambella</string>
<string name="donation_dinner">Una Cena Costosa</string>
<string name="donation_breakfast">Una Colazione Inglese</string>
<string name="donation_lunch">Una Pranzo Veloce</string>
<string name="background_service_title">Another Widget è attivo</string>
<string name="background_service_subtitle">AW è attivo in background</string>
<string name="action_show_widget_preview">Mostra Anteprima Widget</string>
<string name="action_hide_widget_preview">Nascondi Anteprima Widget</string>
<string name="error_widget_notification_title">GPS Disattivato</string>
<string name="error_widget_notification_subtitle">Riattiva il GPS così che Another Widget possa aggiornare il meteo con le API di Google Awareness.</string>
<string name="open_location_settings">Impostazioni GPS</string>
<string name="change_provider">Cambia Provider</string>
<string name="disable_notification">Disabilita Notifica</string>
<string name="settings_theme_title">Tema</string>
<string name="support_main_subtitle">Agli sviluppatori fa sempre bene un caffè</string>
<string name="settings_subtitle_dark_theme_light">Chiaro</string>
<string name="settings_subtitle_dark_theme_dark">Scuro</string>
<string name="settings_subtitle_dark_theme_by_battery_saver">In base al risparmio energetico</string>
<string name="settings_subtitle_dark_theme_follow_system">Tema di sistema</string>
<string name="settings_subtitle_dark_theme_default">Default</string>
<string name="search">Cerca</string>
<string name="settings_title_show_wallpaper">Mostra wallpaper</string>
<string name="support_refresh_widget_subtitle">Forza il riavvio di tutti i servizi</string>
<string name="account_events">Eventi account</string>
<string name="clock_warning">A causa di limitazioni tecnologiche l\'orologio non rispetterà l\'ombra del test e il font custom selezionati nella sezione tipografia.</string>
<string name="weather_warning">Il meteo di Google Awareness è stato deprecato. È ora necessaria una chiave API di OpenWeather per visualizzare il meteo.</string>
<string name="custom_date_format">Formato data personalizzato</string>
<string name="settings_app_version_title">Versione app</string>
<string name="support_dev_subtitle">Grazie per supportare il progetto!</string>
<string name="settings_feedback_subtitle">Contribuisci a questo progetto open source.</string>
<string name="settings_feedback_title">Feedback</string>
<string name="custom_date_format">Formato data</string>
<string name="alpha">Alpha</string>
<string name="transparent">Trasparente</string>
<string name="settings_show_dividers_title">Mostra divisori testo</string>
<string name="first_row_header">Prima riga</string>
<string name="second_row_header">Seconda riga</string>
<string name="global_style_header">Widget</string>
<string name="action_capitalize_the_date">Data maiuscola</string>
<string name="settings_date_format_title">Formato data</string>
<!-- Calendar -->
<string name="settings_calendar_title">Calendario</string>
<string name="title_permission_calendar">Mostra eventi</string>
<string name="description_permission_calendar">Concedi il permesso per la lettura degli eventi.</string>
<string name="settings_filter_calendar_title">Filtra eventi</string>
<string name="settings_filter_calendar_subtitle">Cambia visibilità calendari</string>
<string name="settings_all_day_title">Eventi giornalieri</string>
<string name="main_calendar">Calendario principale</string>
<string name="calendar_settings_list_error">Errore caricamento lista dei calendari</string>
<string name="all_day">Eventi giornalieri</string>
<string name="show_events_visible">Eventi visibili</string>
<string name="show_events_not_visible">Eventi nascosti</string>
<string name="settings_show_until_subtitle_6">dopo 30 minuti</string>
<string name="settings_show_until_subtitle_7">dopo 1 ora</string>
<string name="settings_show_until_subtitle_0">dopo 3 ore</string>
<string name="settings_show_until_subtitle_1">dopo 6 ore</string>
<string name="settings_show_until_subtitle_2">dopo 12 ore</string>
<string name="settings_show_until_subtitle_3">dopo 24 ore</string>
<string name="settings_show_until_subtitle_4">dopo 3 giorni</string>
<string name="settings_show_until_subtitle_5">dopo 7 giorni</string>
<string name="settings_show_until_title">Mostra eventi al massimo</string>
<string name="day_char">g</string>
<string name="settings_calendar_app_title">Applicazione calendario di default</string>
<string name="error_no_calendar">Nessun calendario trovato</string>
<string name="tomorrow">domani</string>
<string name="today">oggi</string>
<string name="settings_event_app_title">Tap sull\'evento apre</string>
<string name="settings_second_row_info_title">Informazione evento</string>
<string name="settings_second_row_info_subtitle_1">Indirizzo</string>
<string name="settings_second_row_info_subtitle_0">Orario</string>
<string name="settings_show_diff_time_title">Tempo mancante all\'evento</string>
<string name="settings_show_declined_events_title">Eventi declinati</string>
<string name="default_event_app">Dettaglio evento</string>
<string name="default_calendar_app">App calendario</string>
<string name="settings_show_multiple_events_title">Scorrimento eventi</string>
<string name="soon">presto</string>
<string name="now">ora</string>
<string name="settings_widget_update_frequency_title">Frequenza aggiornamento tempo mancante</string>
<string name="settings_widget_update_frequency_subtitle">Un\'alta frequenza di aggiornamento causerà un consumo maggiore della batteria</string>
<string name="settings_widget_update_frequency_low">Bassa</string>
<string name="settings_widget_update_frequency_default">Default</string>
<string name="settings_widget_update_frequency_high">Alta</string>
<string name="filters_header">Filtri</string>
<string name="event_detail_header">Dettagli evento</string>
<!-- Weather -->
<string name="settings_weather_title">Meteo</string>
<string name="title_permission_location">Mostra il meteo</string>
<string name="description_permission_location">Concedi il permesso per la localizzazione per vedere le informazioni sul meteo</string>
<string name="settings_unit_title">Unità di misura</string>
<string name="settings_weather_refresh_period_title">Frequenza aggiornamento</string>
<string name="settings_weather_refresh_period_subtitle_0">30 minuti</string>
<string name="settings_weather_refresh_period_subtitle_1">1 ora</string>
<string name="settings_weather_refresh_period_subtitle_2">3 ore</string>
<string name="settings_weather_refresh_period_subtitle_3">6 ore</string>
<string name="settings_weather_refresh_period_subtitle_4">12 ore</string>
<string name="settings_weather_refresh_period_subtitle_5">24 ore</string>
<string name="settings_custom_location_title">Location</string>
<string name="custom_location_gps">Usa geolocalizzazione</string>
<string name="show_weather_visible">Meteo visibile</string>
<string name="show_weather_not_visible">Meteo nascosto</string>
<string name="settings_weather_app_title">Tap sul meteo apre</string>
<string name="settings_weather_provider_api_key_title">Chiave API Meteo</string>
<string name="settings_weather_provider_api_key_subtitle_all_set">Il provider meteo è configurato correttamente</string>
<string name="settings_weather_provider_api_key_subtitle_not_set">Devi configurare il provider meteo</string>
<string name="api_key_hint">Chiave API OpenWeather</string>
<string name="default_weather_app">Meteo Google</string>
<string name="weather_warning">Il meteo di Google Awareness è stato deprecato. È ora necessaria una chiave API OpenWeather per mostrare il meteo.</string>
<string name="api_key_title_1">Registra un account su OpenWeather</string>
<string name="api_key_subtitle_1">Registra un account gratuito su OpenWeather, ci vorranno solo alcuni minuti.</string>
<string name="api_key_title_2">Copia la chiave API</string>
<string name="api_key_subtitle_2">Trova la chiave API nelle impostazioni del tuo nuovo account e copia la chiave di default.</string>
<string name="api_key_title_3">Inserisci la chiave nell\'app</string>
<string name="api_key_subtitle_3">Copia qui la chiave API e salva la nuova configurazione.</string>
<string name="action_open_provider">Apri OpenWeatherMap.com</string>
<string name="api_key_info_all_set">La chiave API potrebbe aver bisogno di più di 20 minuti per diventare attiva, aggiorneremo il meteo non appena sarà possibile.</string>
<string name="settings_weather_icon_pack_title">Stile icone</string>
<string name="settings_weather_icon_pack_default">Default</string>
<string name="settings_weather_icon_pack_minimal">Minimal</string>
<!-- Clock -->
<string name="settings_clock_title">Orologio</string>
<string name="settings_clock_app_title">Tap sull\'orologio apre</string>
<string name="title_show_clock">Mostra orologio</string>
<string name="show_clock_visible">Orologio visibile</string>
<string name="show_clock_not_visible">Orologio nascosto</string>
<string name="settings_clock_text_size_title">Dimensione testo</string>
<string name="default_clock_app">App orologio di default</string>
<string name="settings_clock_bottom_margin_title">Margine inferiore orologio</string>
<string name="settings_clock_bottom_margin_subtitle_none">Nessuno</string>
<string name="settings_clock_bottom_margin_subtitle_small">Piccolo</string>
<string name="settings_clock_bottom_margin_subtitle_medium">Medio</string>
<string name="settings_clock_bottom_margin_subtitle_large">Grande</string>
<string name="clock_warning">A causa di limitazioni tecnologiche l\'orologio non rispetterà il font e l\'ombra scelti nella sezione Display.</string>
<string name="settings_clock_text_color_title">Colore testo</string>
<string name="settings_ampm_indicator_title">Mostra AM/PM</string>
<string name="clock_text_header">Stile orologio</string>
<!-- Glance -->
<string name="settings_show_next_alarm_title">Prossimo allarme</string>
<string name="next_alarm_warning">Il prossimo allarme non sembra corretto. È stato impostato dall\'app %s.</string>
<string name="settings_at_a_glance_title">Glance</string>
<string name="settings_show_music_title">Canzone in riproduzione</string>
<string name="settings_request_notification_access">È necessario l\'accesso alle notifiche per controllare la canzone in riproduzione.</string>
<string name="settings_request_fitness_access">Sono necessari i permessi per accedere ai passi di oggi su Google Fit.</string>
<string name="title_show_glance">Mostra At a Glance</string>
<string name="description_show_glance_visible">Informazioni visibili</string>
<string name="description_show_glance_not_visible">Informazioni non visibili</string>
<string name="settings_sort_glance_providers_title">Priorità provider</string>
<string name="settings_sort_glance_providers_subtitle">Cambia ordine di importanza dei provider</string>
<string name="settings_custom_notes_title">Testo</string>
<string name="settings_low_battery_level_title">Batteria</string>
<string name="settings_daily_steps_title">Passi fatti</string>
<string name="battery_low_warning">Livello batteria basso</string>
<string name="daily_steps_counter">%d passi fatti finore</string>
<string name="charging">In carica</string>
<string name="providers">Providers</string>
<!-- Settings -->
<string name="action_share">Condividi</string>
<string name="action_rate">Lascia una recensione</string>
<string name="action_support">Dona</string>
<string name="action_feedback">Feedback</string>
<string name="action_about">Informazioni</string>
<string name="action_refresh_widget">Ricarica widget</string>
<string name="error_opening_uri">Errore apertura url, link copiato negli appunti.</string>
<string name="loading_text">Caricamento…</string>
<string name="error_opening_app">Errore apertura app.</string>
<string name="default_name">App di default</string>
<string name="action_save">Salva</string>
<string name="settings_visible">Visibile</string>
<string name="settings_not_visible">Non visibile</string>
<string name="support_translations_title">Aiuta con le traduzioni</string>
<string name="support_translations_subtitle">Apri una richiesta di modifica su GitHub</string>
<string name="support_website_title">Guarda i miei altri progetti</string>
<string name="support_website_subtitle">Stesso sviluppatore, altre possibilità</string>
<string name="error">Ops, qualcosa non ha funzionato!</string>
<string name="settings_theme_title">Tema</string>
<string name="support_main_subtitle">Gli sviluppatore hanno sempre bisogno di caffè</string>
<string name="settings_subtitle_dark_theme_light">Light</string>
<string name="settings_subtitle_dark_theme_dark">Dark</string>
<string name="settings_subtitle_dark_theme_by_battery_saver">In base al risparmio energetico</string>
<string name="settings_subtitle_dark_theme_follow_system">In base al sistema</string>
<string name="settings_subtitle_dark_theme_default">Default</string>
<string name="search">Cerca</string>
<string name="settings_app_version_title">Versione app</string>
<string name="settings_title_show_wallpaper">Mostra wallpaper</string>
<string name="support_refresh_widget_subtitle">Forza il riavvio del widget</string>
<string name="settings_feedback_subtitle">Questo è un progetto open-source</string>
<string name="settings_feedback_title">Feedback e richieste</string>
<string name="xiaomi_warning_title">Dispositivi Xiaomi</string>
<string name="xiaomi_warning_message">Concedi il permesso per mostrare finstre pop-up quando l\'applicazione è in background. Puoi trovare l\'impostazione nella sezione Altri permessi nei dettagli dell\'app. Nel caso non fosse attivata non sarà possibile aprire applicazioni cliccando sul widget.</string>
<string name="xiaomi_warning_message">Attiva il permesso per mostrare finestre pop-up quando l\'applicazione è in background, altrimenti non sarà possibile eserguire nessuna azione al tap del widget.</string>
<string name="action_ignore">Ignora</string>
<string name="action_grant_permission">Concedi permesso</string>
<string name="alpha">Trasparenza</string>
<string name="settings_background_color_title">Colore background</string>
<string name="transparent">Trasparente</string>
<string name="next_alarm_warning">La sveglia sembra impostata male.\nÈ stata impostata dall\'app %s.</string>
<string name="settings_title">Impostazioni</string>
<string name="settings_clock_text_color_title">Colore orologio</string>
<string name="settings_music_title">Musica</string>
<string name="settings_show_music_title">Mostra brano in riproduzione</string>
<string name="settings_show_music_enabled_subtitle">Visibile</string>
<string name="settings_show_music_disabled_subtitle">Non visibile</string>
<string name="settings_song_info_format_title">Formato informazioni brano</string>
<string name="settings_request_notification_access">Concedi all\'app il permesso di monitorare le notifiche, è necessario per poter mostrare il brano in riproduzione.</string>
<string name="settings_at_a_glance_title">Glance</string>
<string name="style_header">Stile</string>
<string name="actions_header">Azioni</string>
<string name="provider_header">Setup</string>
<string name="appearance_header">Stile</string>
<string name="preferences_header">Preferenze</string>
<!-- Activities -->
<string name="action_choose_application">Scegli applicazione</string>
<string name="support_main_title">Supporta lo sviluppatore</string>
<string name="thanks">Grazie per il supporto!</string>
<string name="donation_coffee">Un caffè</string>
<string name="donation_donuts">Un gelato</string>
<string name="donation_dinner">Una cena</string>
<string name="donation_breakfast">Una colazione abbondante</string>
<string name="donation_lunch">Un pranzo veloce</string>
<string name="action_show_widget_preview">Mostra preview widget</string>
<string name="support_dev_subtitle">Questo è un progetto sviluppato da una singola persona,\n grazie per il tuo supporto!</string>
<string name="settings_title_integrations">Integrazioni</string>
<string name="label_count_installed_integrations">%d integrazioni installate</string>
<string name="title_show_glance">Mostra notizie rapide</string>
<string name="description_show_glance">Mostra notizie rapide ottenute da diversi provider</string>
<string name="settings_show_next_alarm_subtitle">Mostra la prossima sveglia</string>
<string name="settings_show_dividers_title">Mostra divisori testo</string>
<string name="settings_sort_glance_providers_title">Ordine notizie rapide</string>
<string name="settings_sort_glance_providers_subtitle">Cambia l\'ordine di importanza delle notizie</string>
<string name="settings_custom_notes_title">Note</string>
<string name="settings_low_battery_level_title">Livello batteria</string>
<string name="settings_daily_steps_title">Passi di oggi</string>
<string name="battery_low_warning">Livello batteria basso</string>
<string name="settings_request_fitness_access">Abbiamo bisogno di alcuni permessi per leggere i tuoi passi di oggi da Google Fit.</string>
<string name="settings_ampm_indicator_title">Mostra AM/PM</string>
<string name="daily_steps_counter">%d passi</string>
<string name="soon">a breve</string>
<string name="now">ora</string>
<string name="settings_widget_update_frequency_title">Frequenza aggiornamento tempo rimanente</string>
<string name="settings_widget_update_frequency_subtitle">Maggiore è la frequenza maggiore sarà il consumo di batteria</string>
<string name="settings_widget_update_frequency_low">Bassa</string>
<string name="settings_widget_update_frequency_default">Default</string>
<string name="settings_widget_update_frequency_high">Alta</string>
<string name="settings_weather_icon_pack_title">Icon pack</string>
<string name="settings_weather_icon_pack_default">Default</string>
<string name="settings_weather_icon_pack_minimal">Minimal</string>
</resources>
</resources>

View File

@ -1,45 +1,84 @@
<resources>
<string name="app_name" translatable="false">Another Widget</string>
<string name="add_widget">Add</string>
<string name="main_pre_title" translatable="false">Just</string>
<string name="button_request_permission">Grant permission</string>
<string name="title_permission_calendar">Show your events</string>
<string name="title_permission_location">Show the weather</string>
<string name="description_permission_calendar">Grant access to your calendar\nto view events in your widget.</string>
<string name="description_permission_location">Grant access to your location\nto view weather in your widget.</string>
<string name="notification_title">Get more from your widget</string>
<string name="notification_subtitle">View your events and the weather in Another Widget.</string>
<!-- Display -->
<string name="settings_general_title">Display</string>
<string name="divider" translatable="false">|</string>
<string name="action_share">Share</string>
<string name="action_rate">Rate app</string>
<string name="action_support">Support me</string>
<string name="all_set_title">Good job!</string>
<string name="all_set_subtitle">You have completed the configuration.\nWatch out for updates.</string>
<string name="all_set_btn">Stay up to date</string>
<string name="action_about">About</string>
<string name="h_code">h</string>
<string name="min_code">" min"</string>
<string name="in_code">in</string>
<string name="action_project">Project</string>
<string name="settings_unit_title">Unit of measure</string>
<string name="settings_unit_subtitle">Choose the unit of temperature measurement</string>
<string name="fahrenheit" translatable="false">°F - Fahrenheit</string>
<string name="celsius" translatable="false">°C - Celsius</string>
<string name="settings_font_color_title">Text color</string>
<string name="settings_secondary_font_color_title">Text color</string>
<string name="settings_background_color_title">Background color</string>
<string name="title_main_text_size">Text size</string>
<string name="title_second_text_size">Text size</string>
<string name="title_text_shadow">Text shadow</string>
<string name="settings_text_shadow_subtitle_none">None</string>
<string name="settings_text_shadow_subtitle_low">Low</string>
<string name="settings_text_shadow_subtitle_high">High</string>
<string name="settings_custom_font_title">Widget font</string>
<string name="custom_font_subtitle_0">Device font</string>
<string name="custom_font_subtitle_1">Product Sans</string>
<string name="custom_date_format">Custom date format</string>
<string name="alpha">Alpha</string>
<string name="transparent">Transparent</string>
<string name="settings_show_dividers_title">Show text dividers</string>
<string name="first_row_header">First row</string>
<string name="second_row_header">Second row</string>
<string name="global_style_header">Widget</string>
<string name="action_capitalize_the_date">Capitalize the date</string>
<string name="settings_date_format_title">Date format</string>
<!-- Calendar -->
<string name="settings_calendar_title">Calendar</string>
<string name="title_permission_calendar">Show your events</string>
<string name="description_permission_calendar">Grant access to your calendar\nto view events in your widget.</string>
<string name="settings_filter_calendar_title">Filter events</string>
<string name="settings_filter_calendar_subtitle">Change calendar visibility</string>
<string name="settings_all_day_title">All day events</string>
<string name="settings_all_day_subtitle_visible">Visible</string>
<string name="settings_all_day_subtitle_gone">Hidden</string>
<string name="main_calendar">Account calendar</string>
<string name="settings_calendar_title">Calendar</string>
<string name="settings_weather_title">Weather</string>
<string name="settings_general_title">Display</string>
<string name="calendar_settings_list_error">Error loading the calendar list</string>
<string name="settings_hour_format_title">Hour format</string>
<string name="settings_hour_format_subtitle_12">12 hour</string>
<string name="settings_hour_format_subtitle_24">24 hour</string>
<string name="all_day">All day event</string>
<string name="settings_date_format_title">Date format</string>
<string name="show_events_visible">Events are visible</string>
<string name="show_events_not_visible">Events are hidden</string>
<string name="settings_show_until_subtitle_6">30 minutes later</string>
<string name="settings_show_until_subtitle_7">1 hour later</string>
<string name="settings_show_until_subtitle_0">3 hours later</string>
<string name="settings_show_until_subtitle_1">6 hours later</string>
<string name="settings_show_until_subtitle_2">12 hours later</string>
<string name="settings_show_until_subtitle_3">24 hours later</string>
<string name="settings_show_until_subtitle_4">3 days later</string>
<string name="settings_show_until_subtitle_5">7 days later</string>
<string name="settings_show_until_title">Show events at least</string>
<string name="day_char">d</string>
<string name="settings_calendar_app_title">Calendar default application</string>
<string name="error_no_calendar">No calendars found.</string>
<string name="tomorrow">tomorrow</string>
<string name="today">today</string>
<string name="settings_event_app_title">Tap on event opens</string>
<string name="settings_second_row_info_title">Event info</string>
<string name="settings_second_row_info_subtitle_1">Event address</string>
<string name="settings_second_row_info_subtitle_0">Event time</string>
<string name="settings_show_diff_time_title">Time left to the event</string>
<string name="settings_show_declined_events_title">Declined events</string>
<string name="default_event_app">Event details</string>
<string name="default_calendar_app">Default calendar app</string>
<string name="settings_show_multiple_events_title">Multiple events switcher</string>
<string name="soon">soon</string>
<string name="now">now</string>
<string name="settings_widget_update_frequency_title">Time left update frequency</string>
<string name="settings_widget_update_frequency_subtitle">High frequency causes more battery consume</string>
<string name="settings_widget_update_frequency_low">Low</string>
<string name="settings_widget_update_frequency_default">Default</string>
<string name="settings_widget_update_frequency_high">High</string>
<string name="filters_header">Filters</string>
<string name="event_detail_header">Event detail</string>
<!-- Weather -->
<string name="settings_weather_title">Weather</string>
<string name="title_permission_location">Show the weather</string>
<string name="description_permission_location">Grant access to your location\nto view weather in your widget.</string>
<string name="settings_unit_title">Unit of measure</string>
<string name="fahrenheit" translatable="false">°F - Fahrenheit</string>
<string name="celsius" translatable="false">°C - Celsius</string>
<string name="settings_weather_refresh_period_title">Refresh frequency</string>
<string name="settings_weather_refresh_period_subtitle_0">30 minutes</string>
<string name="settings_weather_refresh_period_subtitle_1">1 hour</string>
@ -49,124 +88,85 @@
<string name="settings_weather_refresh_period_subtitle_5">24 hours</string>
<string name="settings_custom_location_title">Location</string>
<string name="custom_location_gps">Use geolocation</string>
<string name="action_refresh_widget">Refresh widget</string>
<string name="show_events_visible">Events are visible</string>
<string name="show_events_not_visible">Events are hidden</string>
<string name="show_weather_visible">Weather info is visible</string>
<string name="show_weather_not_visible">Weather info is hidden</string>
<string name="settings_show_until_subtitle_0">3 hours later</string>
<string name="settings_show_until_subtitle_1">6 hours later</string>
<string name="settings_show_until_subtitle_2">12 hours later</string>
<string name="settings_show_until_subtitle_3">24 hours later</string>
<string name="settings_show_until_subtitle_4">3 days later</string>
<string name="settings_show_until_subtitle_5">7 days later</string>
<string name="settings_show_until_title">Show events at least</string>
<string name="day_char">d</string>
<string name="toolbar_transition_name" translatable="false">toolbar</string>
<string name="error_opening_uri">Error opening URL: Link copied to clipboard.</string>
<string name="loading_text">Loading Data…</string>
<string name="error_opening_app">Error opening app.</string>
<string name="settings_calendar_app_title">Calendar default application</string>
<string name="show_weather_visible">Weather info are visible</string>
<string name="show_weather_not_visible">Weather info are hidden</string>
<string name="settings_weather_app_title">Tap on weather opens</string>
<string name="default_name">Default app</string>
<string name="action_choose_application">Choose application</string>
<string name="settings_weather_provider_api_key_title">Weather API key</string>
<string name="settings_weather_provider_api_key_subtitle_all_set">The weather provider is configured correctly</string>
<string name="settings_weather_provider_api_key_subtitle_not_set">The weather provider must be configured</string>
<string name="notification_gps_title">Turn location on</string>
<string name="notification_gps_subtitle">Google Awareness needs active GPS to work.</string>
<string name="action_feedback">Feedback</string>
<string name="feedback_title">AW Feedback</string>
<string name="feedback_chooser_title">Send email…</string>
<string name="feedback_error">Error sending email.</string>
<string name="api_key_hint">OpenWeather API Key</string>
<string name="error_weather_api_key">The provider is not configured correctly, do you still want to go back?</string>
<string name="action_save">Save</string>
<string name="error_no_calendar">No calendars found.</string>
<string name="api_key_info_title">Instructions</string>
<string name="signature" translatable="false">Toms</string>
<string name="api_key_info_text"><![CDATA[Another Widget is a free application and will remain without banner ads.<BR /><BR />Due to its great success, surely beyond all my expectations, the weather provider fails to support all the requests that arrive (simply because it is free and therefore limited).<BR /><BR />I have to ask each of you to personally register an account on OpenWeather; the operation will take only a few minutes, and when your key has been activated, you will not have any problems with the weather.<BR /><BR />I\'m sorry for the inconvenience, keep supporting me!]]></string>
<string name="default_weather_app">Google Weather</string>
<string name="weather_warning">Google Awareness weather has been deprecated. It\'s now required an OpenWeather API key to show the weather in the widget.</string>
<string name="api_key_title_1">Register for an OpenWeather Account</string>
<string name="api_key_subtitle_1">Register a free account on OpenWeather. It will only take a few minutes.</string>
<string name="api_key_title_2">Copy your API Key</string>
<string name="api_key_subtitle_2">Find the API keys menu from your account settings and copy the default key.</string>
<string name="api_key_title_3">Enter the key to the app</string>
<string name="api_key_subtitle_3">Paste the key into the field above and save it. Once the key is activated the weather will become visible.</string>
<string name="api_key_info_start">Hi Everyone!</string>
<string name="action_open_provider">Go to OpenWeatherMap.com</string>
<string name="api_key_info_all_set"><![CDATA[It may take up to <b>ten minutes</b> before your API key is activated. The weather will be updated as soon as it is available!]]></string>
<string name="well_done">Well Done!</string>
<string name="hs_code">h</string>
<string name="tomorrow">tomorrow</string>
<string name="today">today</string>
<string name="settings_event_app_title">Tap on event opens</string>
<string name="settings_second_row_info_title">Second row information</string>
<string name="settings_second_row_info_subtitle_1">Event address</string>
<string name="settings_second_row_info_subtitle_0">Event time</string>
<string name="settings_second_row_info_subtitle_2">Show next alarm time</string>
<string name="settings_font_color_title">First row text color</string>
<string name="settings_secondary_font_color_title">Second row text color</string>
<string name="settings_background_color_title">Background color</string>
<string name="title_main_text_size">First row text size</string>
<string name="title_second_text_size">Second row text size</string>
<string name="provider_open_weather" translatable="false">OpenWeather</string>
<string name="provider_google_awareness" translatable="false">Google Awareness</string>
<string name="api_key_info_all_set">It may take up to ten minutes before your API key is activated. The weather will be updated as soon as it is available.</string>
<string name="settings_weather_icon_pack_title">Icon pack</string>
<string name="settings_weather_icon_pack_default">Default</string>
<string name="settings_weather_icon_pack_minimal">Minimal</string>
<!-- Clock -->
<string name="settings_clock_title">Clock</string>
<string name="settings_clock_app_title">Tap on clock opens</string>
<string name="title_show_clock">Show Clock</string>
<string name="description_show_clock">View the time over events and weather</string>
<string name="show_clock_visible">Clock visibility</string>
<string name="show_clock_visible">Clock is visible</string>
<string name="show_clock_not_visible">Clock is hidden</string>
<string name="settings_clock_text_size_title">Clock text size</string>
<string name="settings_clock_text_size_title">Text size</string>
<string name="default_clock_app">Default clock app</string>
<string name="settings_clock_bottom_margin_title">Clock bottom margin</string>
<string name="settings_clock_bottom_margin_subtitle_none">None</string>
<string name="settings_clock_bottom_margin_subtitle_small">Small</string>
<string name="settings_clock_bottom_margin_subtitle_medium">Medium</string>
<string name="settings_clock_bottom_margin_subtitle_large">Large</string>
<string name="clock_warning">Due to technological limitations, the clock won\'t have the custom font and the text shadows selected in the Display section.</string>
<string name="settings_clock_text_color_title">Text color</string>
<string name="settings_ampm_indicator_title">Show AM/PM Indicator</string>
<string name="clock_text_header">Clock text style</string>
<!-- Glance -->
<string name="settings_show_next_alarm_title">Next clock alarm</string>
<string name="settings_show_next_alarm_subtitle">Show the next clock alarm</string>
<string name="title_text_shadow">Text shadow</string>
<string name="settings_text_shadow_subtitle_none">None</string>
<string name="settings_text_shadow_subtitle_low">Low</string>
<string name="settings_text_shadow_subtitle_high">High</string>
<string name="advanced_settings_title">Advanced</string>
<string name="beta" translatable="false">Beta</string>
<string name="settings_product_sans_font_title">Product Sans Font</string>
<string name="settings_product_sans_font_subtitle">Using Product Sans disabled the possibility to tap widget elements. I\'m working on it.</string>
<string name="settings_show_diff_time_title">Time left to the event</string>
<string name="next_alarm_warning">The next alarm clock seems to be wrong.\nIt has been set by %s.</string>
<string name="settings_at_a_glance_title">Glance</string>
<string name="settings_show_music_title">Current playing song</string>
<string name="settings_request_notification_access">We need the notification access permission to check the current playing song.</string>
<string name="settings_request_fitness_access">We need a few permissions to get your daily steps from Google Fit.</string>
<string name="title_show_glance">Show at a glance info</string>
<string name="description_show_glance_visible">Service enabled</string>
<string name="description_show_glance_not_visible">Service disabled</string>
<string name="settings_sort_glance_providers_title">Data source priority</string>
<string name="settings_sort_glance_providers_subtitle">Change the data provider importance</string>
<string name="settings_custom_notes_title">Custom notes</string>
<string name="settings_low_battery_level_title">Battery</string>
<string name="settings_daily_steps_title">Daily steps</string>
<string name="battery_low_warning">Low battery level</string>
<string name="daily_steps_counter">%d steps so far</string>
<string name="charging">Charging</string>
<string name="providers">Providers</string>
<!-- Settings -->
<string name="action_share">Share</string>
<string name="action_rate">Rate app</string>
<string name="action_support">Support me</string>
<string name="action_feedback">Feedback</string>
<string name="action_about">About</string>
<string name="action_refresh_widget">Refresh widget</string>
<string name="toolbar_transition_name" translatable="false">toolbar</string>
<string name="error_opening_uri">Error opening URL: Link copied to clipboard.</string>
<string name="loading_text">Loading Data…</string>
<string name="error_opening_app">Error opening app.</string>
<string name="default_name">Default app</string>
<string name="action_save">Save</string>
<string name="settings_visible">Visible</string>
<string name="settings_not_visible">Hidden</string>
<string name="settings_show_declined_events_title">Declined events</string>
<string name="default_weather_app">Google Weather</string>
<string name="default_event_app">Event details</string>
<string name="default_calendar_app">Default calendar app</string>
<string name="default_clock_app">Default clock app</string>
<string name="settings_show_until_subtitle_7">1 hour later</string>
<string name="settings_show_until_subtitle_6">30 minutes later</string>
<string name="action_default">Default</string>
<string name="action_none">Disabled</string>
<string name="settings_custom_font_title">Widget font</string>
<string name="custom_font_subtitle_0">Device font</string>
<string name="custom_font_subtitle_1">Product Sans</string>
<string name="action_go_to_next_event">Show next\nevent</string>
<string name="settings_show_multiple_events_title">Multiple events switcher</string>
<string name="support_custom_app_name" translatable="false">\"Another\" Developer</string>
<string name="support_main_title">Support the developer</string>
<string name="support_translations_title">Help with translations</string>
<string name="support_translations_subtitle">Open a pull request on GitHub</string>
<string name="support_website_title">Check my other projects</string>
<string name="support_website_subtitle">Same developer, many possibilities</string>
<string name="error">Ooops, something went wrong!</string>
<string name="thanks">Thanks for supporting me!</string>
<string name="donation_coffee">An italian coffee</string>
<string name="donation_donuts">Some glazed donuts</string>
<string name="donation_dinner">An expensive dinner</string>
<string name="donation_breakfast">An english breakfast</string>
<string name="donation_lunch">A quick lunch</string>
<string name="background_service_title">Another Widget is running</string>
<string name="background_service_subtitle">AW is running in the background</string>
<string name="action_show_widget_preview">Show widget preview</string>
<string name="action_hide_widget_preview">Hide widget preview</string>
<string name="error_widget_notification_title">Location is turned off</string>
<string name="error_widget_notification_subtitle">Turn Location back on so Another Widget can update weather information with Google Awareness API.</string>
<string name="open_location_settings">Location settings</string>
<string name="change_provider">Change provider</string>
<string name="disable_notification">Disable notification</string>
<string name="settings_theme_title">Theme</string>
<string name="support_main_subtitle">Devs always need a lot of coffee</string>
<string name="settings_subtitle_dark_theme_light">Light</string>
@ -175,75 +175,34 @@
<string name="settings_subtitle_dark_theme_follow_system">Follow the system theme</string>
<string name="settings_subtitle_dark_theme_default">Default</string>
<string name="search">Search</string>
<string name="settings_app_version_title">App version</string>
<string name="settings_title_show_wallpaper">Show wallpaper</string>
<string name="support_refresh_widget_subtitle">Force the restart of the widget service</string>
<string name="account_events">Account events</string>
<string name="clock_warning">Due to technological limitations, the clock won\'t have the custom font and the text shadows selected in the typography section.</string>
<string name="weather_warning">Google Awareness weather has been deprecated. It\'s now required an OpenWeather API key to show the weather in the widget.</string>
<string name="custom_date_format">Custom date format</string>
<string name="settings_app_version_title">App version</string>
<string name="support_dev_subtitle">This is a single developer project,\nso thank you for the support!</string>
<string name="settings_feedback_subtitle">This is an open-source project, feel free to help.</string>
<string name="settings_feedback_title">Feedback and feature requests</string>
<string name="title_tasksintegration" translatable="false">Google Tasks</string>
<string name="settings_clock_bottom_margin_title">Clock bottom margin</string>
<string name="settings_clock_bottom_margin_subtitle_none">None</string>
<string name="settings_clock_bottom_margin_subtitle_small">Small</string>
<string name="settings_clock_bottom_margin_subtitle_medium">Medium</string>
<string name="settings_clock_bottom_margin_subtitle_large">Large</string>
<string name="xiaomi_manufacturer" translatable="false">xiaomi</string>
<string name="xiaomi_warning_title">Xiaomi Devices</string>
<string name="xiaomi_warning_message">Enable the permission to display pop-up windows when running in the background inside the "Other permission" section of the app settings. Otherwise, you will not able to open any applications tapping on the widget.</string>
<string name="action_ignore">Ignore</string>
<string name="action_grant_permission">Grant permission</string>
<string name="alpha">Alpha</string>
<string name="transparent">Transparent</string>
<string name="next_alarm_warning">The next alarm clock seems to be wrong.\nIt has been set by %s.</string>
<string name="settings_title">Settings</string>
<string name="settings_clock_text_color_title">Clock text color</string>
<string name="settings_at_a_glance_title">Glance</string>
<string name="settings_music_title">Music</string>
<string name="settings_show_music_title">Current playing song</string>
<string name="settings_show_music_enabled_subtitle">Show playing song info</string>
<string name="settings_show_music_disabled_subtitle">Hide playing song info</string>
<string name="settings_song_info_format_title">Song info format</string>
<string name="settings_request_notification_access">We need the notification access permission to check the current playing song.</string>
<string name="settings_request_fitness_access">We need a few permissions to get your daily steps from Google Fit.</string>
<string name="title_googlefit" translatable="false">Google Fit</string>
<string name="style_header">Style</string>
<string name="actions_header">Actions</string>
<string name="provider_header">Setup</string>
<string name="appearance_header">Appearance</string>
<string name="preferences_header">Preferences</string>
<!-- Activities -->
<string name="action_choose_application">Choose application</string>
<string name="support_main_title">Support the developer</string>
<string name="thanks">Thanks for supporting me!</string>
<string name="donation_coffee">An italian coffee</string>
<string name="donation_donuts">Some glazed donuts</string>
<string name="donation_dinner">An expensive dinner</string>
<string name="donation_breakfast">An english breakfast</string>
<string name="donation_lunch">A quick lunch</string>
<string name="action_show_widget_preview">Show widget preview</string>
<string name="support_dev_subtitle">This is a single developer project,\nso thank you for the support!</string>
<string name="settings_title_integrations">Integrations</string>
<string name="label_count_installed_integrations">%d installed integrations</string>
<string name="title_show_glance">Show at a glance info</string>
<string name="description_show_glance">Show some useful info</string>
<string name="settings_show_dividers_title">Show text dividers</string>
<string name="settings_sort_glance_providers_title">Data source priority</string>
<string name="settings_sort_glance_providers_subtitle">Change the data provider importance</string>
<string name="settings_custom_notes_title">Custom notes</string>
<string name="settings_low_battery_level_title">Battery</string>
<string name="settings_daily_steps_title">Daily steps</string>
<string name="battery_low_warning">Low battery level</string>
<string name="charging">Charging</string>
<string name="settings_ampm_indicator_title">Show AM/PM Indicator</string>
<string name="daily_steps_counter">%d steps so far</string>
<string name="soon">soon</string>
<string name="now">now</string>
<string name="settings_widget_update_frequency_title">Time left update frequency</string>
<string name="settings_widget_update_frequency_subtitle">High frequency causes more battery consume</string>
<string name="settings_widget_update_frequency_low">Low</string>
<string name="settings_widget_update_frequency_default">Default</string>
<string name="settings_widget_update_frequency_high">High</string>
<string name="settings_weather_icon_pack_title">Icon pack</string>
<string name="settings_weather_icon_pack_default">Default</string>
<string name="settings_weather_icon_pack_minimal">Minimal</string>
<string name="action_capitalize_the_date">Capitalize the date</string>
<string name="providers">Providers</string>
<string name="first_row_header">First row style</string>
<string name="second_row_header">Second row style</string>
<string name="global_style_header">Global style</string>
<string name="style_header">Style</string>
<string name="filters_header">Event filters</string>
<string name="event_detail_header">Event detail</string>
<string name="actions_header">Actions</string>
<string name="provider_header">Provider</string>
<string name="clock_text_header">Clock text</string>
<string name="preferences_header">Preferences</string>
</resources>