Refactor styles again, this time trying to seperate the more layout-specific attributes so that layouts become more re-usable. This also updates the naming conventions of styles.
74 lines
No EOL
3.1 KiB
XML
74 lines
No EOL
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<!-- Label Namespace | Static Labels -->
|
|
<string name="lbl_retry">फिर से कोशिश करे</string>
|
|
<string name="lbl_grant">अनुदान</string>
|
|
|
|
<string name="lbl_artists">कलाकार</string>
|
|
<string name="lbl_library">पुस्तकालय</string>
|
|
<string name="lbl_albums">एल्बम</string>
|
|
<string name="lbl_songs">गीत</string>
|
|
<string name="lbl_all_songs">गीत</string>
|
|
|
|
<string name="lbl_filter">छलनी</string>
|
|
<string name="lbl_search">खोजें</string>
|
|
<string name="lbl_filter_all">सारे</string>
|
|
|
|
<string name="lbl_sort">क्रमबद्ध</string>
|
|
|
|
<string name="lbl_play">चलाएं</string>
|
|
<string name="lbl_shuffle">शफ़ल</string>
|
|
|
|
<string name="lbl_go_artist">कलाकार पर जाएं</string>
|
|
<string name="lbl_go_album">एल्बम पर जाएं</string>
|
|
|
|
<string name="lbl_queue">पंक्ति</string>
|
|
<string name="lbl_queue_add">क़तार में जोड़ें</string>
|
|
<string name="lbl_queue_added">कतार में जोड़ा गया</string>
|
|
|
|
<string name="lbl_about">इसके बारे में</string>
|
|
<string name="lbl_code">GitHub में देखें</string>
|
|
<string name="lbl_faq">FAQ</string>
|
|
<string name="lbl_licenses">लाइसेंस</string>
|
|
|
|
<!-- Settings namespace | Settings-related labels -->
|
|
<string name="set_title">सेटिंग्स</string>
|
|
|
|
<string name="set_theme">थीम</string>
|
|
<string name="set_theme_auto">सफ़ेद</string>
|
|
<string name="set_theme_day">गहरा</string>
|
|
<string name="set_theme_night">स्वचलित</string>
|
|
<string name="set_accent">एक्सेंट</string>
|
|
|
|
<string name="set_color_notif">अधिसूचना को रंग दें</string>
|
|
|
|
<string name="set_audio">ऑडियो</string>
|
|
<string name="set_focus">ऑडियो फोकस</string>
|
|
<string name="set_plug_mgt">हेडसेट प्लग</string>
|
|
|
|
<string name="setting_behavior">चाल चलन</string>
|
|
|
|
<!-- Error Namespace | Error Labels -->
|
|
<string name="err_no_music">कोई संगीत नहीं मिला</string>
|
|
|
|
<!-- Description Namespace | Accessibility Strings -->
|
|
<string name="desc_play_pause">चलाएं/रोकें</string>
|
|
|
|
<string name="desc_error">त्रुटी</string>
|
|
|
|
<!-- Hint Namespace | EditText Hints -->
|
|
<string name="hint_search_library">संग्रह में खोजें</string>
|
|
|
|
<!-- Color Label namespace | Accent names -->
|
|
|
|
<!-- Format Namespace | Value formatting/plurals -->
|
|
<plurals name="fmt_song_count">
|
|
<item quantity="one">%d गीत</item>
|
|
<item quantity="other">%d गीत</item>
|
|
</plurals>
|
|
|
|
<plurals name="fmt_album_count">
|
|
<item quantity="one">%d एल्बम</item>
|
|
<item quantity="other">%d एल्बम</item>
|
|
</plurals>
|
|
</resources> |