Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 3ccb6f9d authored by Valdnet's avatar Valdnet Committed by GitHub
Browse files

Fix string and correct PL translation (#1029)

parent 85aa5547
Loading
Loading
Loading
Loading
+8 −5
Original line number Original line Diff line number Diff line
@@ -48,9 +48,9 @@
    <!-- Title of prompt to delete a recurring task -->
    <!-- Title of prompt to delete a recurring task -->
    <string name="opentasks_task_details_delete_recurring_task">Usuń powtarzające się zadanie</string>
    <string name="opentasks_task_details_delete_recurring_task">Usuń powtarzające się zadanie</string>
    <!-- Option to remove all instances of a recurring task -->
    <!-- Option to remove all instances of a recurring task -->
    <string name="opentasks_task_details_delete_all_tasks">Wszystkie zdarzenia</string>
    <string name="opentasks_task_details_delete_all_tasks">Wszystkie zadania</string>
    <!-- Option to remove a single instances of a recurring task -->
    <!-- Option to remove a single instances of a recurring task -->
    <string name="opentasks_task_details_delete_this_task">To zdarzenie</string>
    <string name="opentasks_task_details_delete_this_task">To zadanie</string>


    <!-- Label of button to hide a tick box -->
    <!-- Label of button to hide a tick box -->
    <string name="opentasks_hide_tick_box">Tekst</string>
    <string name="opentasks_hide_tick_box">Tekst</string>
@@ -252,12 +252,12 @@
    <!-- Dashclock -->
    <!-- Dashclock -->
    <string name="dashclock_extension_title">Zadania</string>
    <string name="dashclock_extension_title">Zadania</string>
    <string name="dashclock_extension_description">Wyświetla informacje dla ostatnich zadań.</string>
    <string name="dashclock_extension_description">Wyświetla informacje dla ostatnich zadań.</string>
    <string name="dashclock_widget_title_due_expanded">%1$s zaplanowanych due - %2$s</string>
    <string name="dashclock_widget_title_due_expanded">%1$s zaplanowane na - %2$s</string>
    <string name="dashclock_widget_title_due_expanded_allday">%1$s zaplanowane</string>
    <string name="dashclock_widget_title_due_expanded_allday">%1$s zaplanowane</string>
    <string name="dashclock_widget_title_start_expanded">%1$s zaczynające się - %2$s</string>
    <string name="dashclock_widget_title_start_expanded">%1$s zaczynające się - %2$s</string>
    <string name="dashclock_widget_title_start_expanded_allday">%1$s zaczynające się dziś</string>
    <string name="dashclock_widget_title_start_expanded_allday">%1$s zaczynające się dziś</string>
    <string name="dashclock_pref_displayed_task_title">Wyświetlone zadania</string>
    <string name="dashclock_pref_displayed_task_title">Wyświetlane wydarzenia</string>
    <string name="dashclock_pref_displayed_task_summary">Wybierz, które zdarzenia zadań  wyświetlane w widżecie paska zadań</string>
    <string name="dashclock_pref_displayed_task_summary">Wybierz, które wydarzenia zadań mają być wyświetlane w widgecie DashClock</string>
    <string name="dashclock_pref_displayed_task_dialog_title">Wydarzenia do wyświetlenia</string>
    <string name="dashclock_pref_displayed_task_dialog_title">Wydarzenia do wyświetlenia</string>
    <string name="dashclock_display_type_due">zadania zaplanowane</string>
    <string name="dashclock_display_type_due">zadania zaplanowane</string>
    <string name="dashclock_display_type_start">zadania rozpoczynające się</string>
    <string name="dashclock_display_type_start">zadania rozpoczynające się</string>
@@ -294,6 +294,9 @@
    <!-- Option to follow the system theme  -->
    <!-- Option to follow the system theme  -->
    <string name="opentasks_preference_system_theme">Śledź system</string>
    <string name="opentasks_preference_system_theme">Śledź system</string>
    
    
    <!-- System theme disclaimer -->
    <string name="opentasks_preference_system_theme_disclaimer">Śledzenie systemu jest eksperymentalne i zaimplementowane tylko częściowo.</string>

    <!-- Option to use a dark theme -->
    <!-- Option to use a dark theme -->
    <string name="opentasks_preference_dark_theme">Ciemny motyw</string>
    <string name="opentasks_preference_dark_theme">Ciemny motyw</string>


+3 −0
Original line number Original line Diff line number Diff line
@@ -296,6 +296,9 @@
    <!-- Option to follow the system theme  -->
    <!-- Option to follow the system theme  -->
    <string name="opentasks_preference_system_theme">Follow system</string>
    <string name="opentasks_preference_system_theme">Follow system</string>
    
    
    <!-- System theme disclaimer -->
    <string name="opentasks_preference_system_theme_disclaimer">Follow system is experimental and only partially implemented.</string>

    <!-- Option to use a dark theme -->
    <!-- Option to use a dark theme -->
    <string name="opentasks_preference_dark_theme">Dark theme</string>
    <string name="opentasks_preference_dark_theme">Dark theme</string>


+2 −2
Original line number Original line Diff line number Diff line
@@ -8,7 +8,7 @@
                android:title="@string/opentasks_preference_system_theme"
                android:title="@string/opentasks_preference_system_theme"
                android:key="@string/opentasks_pref_appearance_system_theme"
                android:key="@string/opentasks_pref_appearance_system_theme"
                app:disableDependentsState="true"
                app:disableDependentsState="true"
                app:summary="@string/opentasks_preference_dark_theme_disclaimer"
                app:summary="@string/opentasks_preference_system_theme_disclaimer"
                app:defaultValue="@bool/opentasks_system_theme_default" />
                app:defaultValue="@bool/opentasks_system_theme_default" />
        <androidx.preference.SwitchPreferenceCompat
        <androidx.preference.SwitchPreferenceCompat
                android:title="@string/opentasks_preference_dark_theme"
                android:title="@string/opentasks_preference_dark_theme"
+2 −2
Original line number Original line Diff line number Diff line
@@ -3,7 +3,7 @@
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:android="http://schemas.android.com/apk/res/android"
        app:title="@string/opentasks_preference_appearance">
        app:title="@string/opentasks_preference_appearance">


    <androidx.preference.PreferenceCategory android:title="Theme">
    <androidx.preference.PreferenceCategory android:title="@string/opentasks_preference_theme">
        <androidx.preference.SwitchPreferenceCompat
        <androidx.preference.SwitchPreferenceCompat
                android:title="@string/opentasks_preference_dark_theme"
                android:title="@string/opentasks_preference_dark_theme"
                android:key="@string/opentasks_pref_appearance_dark_theme"
                android:key="@string/opentasks_pref_appearance_dark_theme"