mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 23:51:21 +02:00
Merge branch 'main' into develop/customize-home
This commit is contained in:
commit
87245732af
32 changed files with 1063 additions and 304 deletions
8
.github/actions/native-build/action.yml
vendored
8
.github/actions/native-build/action.yml
vendored
|
|
@ -10,7 +10,7 @@ runs:
|
|||
- name: Load ffmpeg module cache
|
||||
id: cache_ffmpeg_module
|
||||
if: ${{ inputs.cache }}
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
with:
|
||||
path: |
|
||||
app/libs
|
||||
|
|
@ -18,7 +18,7 @@ runs:
|
|||
- name: Load libmpv module cache
|
||||
id: cache_libmpv_module
|
||||
if: ${{ inputs.cache }}
|
||||
uses: actions/cache/restore@v4
|
||||
uses: actions/cache/restore@v5
|
||||
with:
|
||||
path: |
|
||||
app/src/main/libs
|
||||
|
|
@ -43,7 +43,7 @@ runs:
|
|||
./build_ffmpeg_decoder.sh "${{ env.ANDROID_SDK_ROOT }}/ndk/${{ env.NDK_VERSION }}"
|
||||
- name: Save ffmpeg module cache
|
||||
id: cache_ffmpeg_module_save
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
path: |
|
||||
app/libs
|
||||
|
|
@ -75,7 +75,7 @@ runs:
|
|||
#ln -s libs jniLibs
|
||||
- name: Save libmpv module cache
|
||||
id: cache_libmpv_module_save
|
||||
uses: actions/cache/save@v4
|
||||
uses: actions/cache/save@v5
|
||||
with:
|
||||
path: |
|
||||
app/src/main/libs
|
||||
|
|
|
|||
4
.github/actions/setup/action.yml
vendored
4
.github/actions/setup/action.yml
vendored
|
|
@ -6,9 +6,9 @@ runs:
|
|||
steps:
|
||||
# Setup the SDKs
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
uses: actions/setup-python@v6
|
||||
with:
|
||||
python-version: '3.12'
|
||||
python-version: '3.14'
|
||||
- name: Setup JDK
|
||||
uses: actions/setup-java@v5
|
||||
with:
|
||||
|
|
|
|||
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
|
@ -25,7 +25,7 @@ jobs:
|
|||
contents: write
|
||||
steps:
|
||||
- name: Checkout the code
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0 # Need the tags to build
|
||||
- name: Setup
|
||||
|
|
|
|||
10
.github/workflows/pr.yml
vendored
10
.github/workflows/pr.yml
vendored
|
|
@ -16,13 +16,13 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout the code
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0 # Need the tags to build
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v6
|
||||
with:
|
||||
python-version: '3.12'
|
||||
python-version: '3.14'
|
||||
- name: Run pre-commit
|
||||
uses: pre-commit/action@v3.0.1
|
||||
|
||||
|
|
@ -31,7 +31,7 @@ jobs:
|
|||
needs: pre-commit
|
||||
steps:
|
||||
- name: Checkout the code
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0 # Need the tags to build
|
||||
- name: Setup
|
||||
|
|
@ -49,13 +49,13 @@ jobs:
|
|||
- name: Tar build dirs
|
||||
run: |
|
||||
tar -czf build.tgz ./app/.
|
||||
- uses: actions/upload-artifact@v5
|
||||
- uses: actions/upload-artifact@v6
|
||||
id: upload-build-dirs
|
||||
with:
|
||||
name: "${{ env.BUILD_DIRS_ARTIFACT }}"
|
||||
path: build.tgz
|
||||
if-no-files-found: error
|
||||
- uses: actions/upload-artifact@v5
|
||||
- uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: APKs
|
||||
path: "${{ steps.buildapp.outputs.apks }}"
|
||||
|
|
|
|||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -21,7 +21,7 @@ jobs:
|
|||
contents: write
|
||||
steps:
|
||||
- name: Checkout the code
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0 # Need the tags to build
|
||||
- name: Setup
|
||||
|
|
|
|||
|
|
@ -92,12 +92,16 @@ data class BaseItem(
|
|||
episodeCornerText =
|
||||
data.indexNumber?.let { "E$it" }
|
||||
?: data.premiereDate?.let(::formatDateTime),
|
||||
episdodeUnplayedCornerText =
|
||||
data.indexNumber?.let { "E$it" }
|
||||
?: data.userData
|
||||
?.unplayedItemCount
|
||||
?.takeIf { it > 0 }
|
||||
?.let { abbreviateNumber(it) },
|
||||
episodeUnplayedCornerText =
|
||||
if (type == BaseItemKind.SERIES || type == BaseItemKind.SEASON || type == BaseItemKind.BOX_SET) {
|
||||
data.indexNumber?.let { "E$it" }
|
||||
?: data.userData
|
||||
?.unplayedItemCount
|
||||
?.takeIf { it > 0 }
|
||||
?.let { abbreviateNumber(it) }
|
||||
} else {
|
||||
null
|
||||
},
|
||||
quickDetails =
|
||||
buildAnnotatedString {
|
||||
val details =
|
||||
|
|
@ -208,6 +212,6 @@ val BaseItemDto.aspectRatioFloat: Float? get() = width?.let { w -> height?.let {
|
|||
@Immutable
|
||||
data class BaseItemUi(
|
||||
val episodeCornerText: String?,
|
||||
val episdodeUnplayedCornerText: String?,
|
||||
val episodeUnplayedCornerText: String?,
|
||||
val quickDetails: AnnotatedString,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -167,19 +167,19 @@ fun listToDotString(
|
|||
strings.forEachIndexed { index, string ->
|
||||
append(string)
|
||||
if (index != strings.lastIndex) dot()
|
||||
communityRating?.let {
|
||||
dot()
|
||||
append(String.format(Locale.getDefault(), "%.1f", it))
|
||||
appendInlineContent(id = "star")
|
||||
}
|
||||
criticRating?.let {
|
||||
dot()
|
||||
append("${it.toInt()}%")
|
||||
if (it >= 60f) {
|
||||
appendInlineContent(id = "fresh")
|
||||
} else {
|
||||
appendInlineContent(id = "rotten")
|
||||
}
|
||||
}
|
||||
communityRating?.let {
|
||||
dot()
|
||||
append(String.format(Locale.getDefault(), "%.1f", it))
|
||||
appendInlineContent(id = "star")
|
||||
}
|
||||
criticRating?.let {
|
||||
dot()
|
||||
append("${it.toInt()}%")
|
||||
if (it >= 60f) {
|
||||
appendInlineContent(id = "fresh")
|
||||
} else {
|
||||
appendInlineContent(id = "rotten")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ fun DiscoverMovieDetailsHeader(
|
|||
) {
|
||||
val padding = 4.dp
|
||||
val details =
|
||||
remember(movie) {
|
||||
remember(movie, rating) {
|
||||
buildList {
|
||||
movie.releaseDate?.let(::add)
|
||||
movie.runtime
|
||||
|
|
@ -89,6 +89,7 @@ fun DiscoverMovieDetailsHeader(
|
|||
?.releaseDates
|
||||
?.firstOrNull()
|
||||
?.certification
|
||||
?.takeIf { it.isNotNullOrBlank() }
|
||||
?.let(::add)
|
||||
}.let {
|
||||
listToDotString(
|
||||
|
|
|
|||
|
|
@ -463,7 +463,7 @@ fun DiscoverSeriesDetailsHeader(
|
|||
) {
|
||||
val padding = 4.dp
|
||||
val details =
|
||||
remember(series) {
|
||||
remember(series, rating) {
|
||||
buildList {
|
||||
series.firstAirDate?.let(::add)
|
||||
series.episodeRunTime
|
||||
|
|
|
|||
|
|
@ -113,6 +113,7 @@ fun MovieDetailsHeader(
|
|||
movie.data.people
|
||||
?.filter { it.type == PersonKind.DIRECTOR && it.name.isNotNullOrBlank() }
|
||||
?.joinToString(", ") { it.name!! }
|
||||
?.takeIf { it.isNotNullOrBlank() }
|
||||
}
|
||||
|
||||
directorName
|
||||
|
|
|
|||
|
|
@ -494,7 +494,7 @@ fun HomePageCardContent(
|
|||
aspectRatio = ratio,
|
||||
imageType = imageType,
|
||||
imageContentScale = scale,
|
||||
cornerText = item?.ui?.episdodeUnplayedCornerText,
|
||||
cornerText = item?.ui?.episodeUnplayedCornerText,
|
||||
played = item?.data?.userData?.played ?: false,
|
||||
favorite = item?.favorite ?: false,
|
||||
playPercent =
|
||||
|
|
@ -512,7 +512,7 @@ fun HomePageCardContent(
|
|||
aspectRatio = ratio,
|
||||
imageType = imageType,
|
||||
imageContentScale = scale,
|
||||
cornerText = item?.ui?.episdodeUnplayedCornerText,
|
||||
cornerText = item?.ui?.episodeUnplayedCornerText,
|
||||
played = item?.data?.userData?.played ?: false,
|
||||
favorite = item?.favorite ?: false,
|
||||
playPercent =
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<string name="confirm">Potvrdit</string>
|
||||
<string name="continue_watching">Pokračovat ve sledování</string>
|
||||
<string name="critic_rating">Hodnocení kritiků</string>
|
||||
<string name="decimal_seconds">%.1f sekund</string>
|
||||
<string name="decimal_seconds">%.2f sekund</string>
|
||||
<string name="default_track">Výchozí</string>
|
||||
<string name="delete">Smazat</string>
|
||||
<string name="died">Zemřel</string>
|
||||
|
|
@ -453,4 +453,26 @@
|
|||
<string name="interlaced">Prokládané</string>
|
||||
<string name="color_code_programs">Color code programs</string>
|
||||
<string name="upgrade_mpv_toast">MPV je nyní výchozím přehrávačem mimo HDR.\nToto můžete změnit v nastavení.</string>
|
||||
<string name="hdr_subtitle_style">Styl HDR titulků</string>
|
||||
<string name="image_subtitle_opacity">Průhlednost obrázku titulků</string>
|
||||
<string name="brightness">Jas</string>
|
||||
<string name="contrast">Kontrast</string>
|
||||
<string name="saturation">Sytost</string>
|
||||
<string name="hue">Odstín</string>
|
||||
<string name="red">Červená</string>
|
||||
<string name="green">Zelená</string>
|
||||
<string name="blue">Modrá</string>
|
||||
<string name="blur">Rozostření</string>
|
||||
<string name="save_for_album">Uložit do alba</string>
|
||||
<string name="play_slideshow">Přehrát prezentaci</string>
|
||||
<string name="stop_slideshow">Zastavit prezentaci</string>
|
||||
<string name="slideshow_at_beginning">Na začátek</string>
|
||||
<string name="no_more_images">Žádné další fotky</string>
|
||||
<string name="rotate_left">Otočit vlevo</string>
|
||||
<string name="rotate_right">Otočit vpravo</string>
|
||||
<string name="zoom_in">Přiblížit</string>
|
||||
<string name="zoom_out">Oddálit</string>
|
||||
<string name="slideshow_duration">Trvání prezentace</string>
|
||||
<string name="play_videos_during_slideshow">Přehrávat videa během prezentace</string>
|
||||
<string name="send_media_info_log_to_server">Odesílat protokol informací o médiích serveru</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -371,7 +371,7 @@
|
|||
<string name="trending">Im Trend</string>
|
||||
<string name="voice_error_start_failed">Starten der Spracherkennung fehlgeschlagen</string>
|
||||
<string name="press_back_to_cancel">Zurück wählen um abzubrechen</string>
|
||||
<string name="upgrade_mpv_toast">MPV ist jetzt der Standard-Player, außer für HDR.\nDas kannst du in den Einstellungen ändern.</string>
|
||||
<string name="upgrade_mpv_toast">MPV ist jetzt der Standard-Player, außer für HDR.\nDu kannst das in den Einstellungen ändern.</string>
|
||||
<string name="voice_search">Sprachsuche</string>
|
||||
<string name="voice_search_prompt">Sprechen, um zu suchen</string>
|
||||
<string name="force_dovi_profile_7_summary">Ignoriert geräte kompatibilität</string>
|
||||
|
|
@ -384,4 +384,37 @@
|
|||
<string name="backdrop_display">Hintergrundstil</string>
|
||||
<string name="refresh_rate_switching">Bildwiederholraten-Anpassung</string>
|
||||
<string name="voice_error_speech_timeout">Keine Spracheingabe erkannt</string>
|
||||
<string name="voice_error_client">Spracherkennungsfehler</string>
|
||||
<string name="voice_error_audio">Aufnahme-Fehler</string>
|
||||
<string name="voice_error_no_match">Keine Spracherkennung</string>
|
||||
<string name="voice_error_busy">Spracherkennung beschäftigt</string>
|
||||
<string name="voice_error_timeout">Spracherkennung ist abgelaufen</string>
|
||||
<string name="video_range">Videobereich</string>
|
||||
<string name="video_range_type">Video-Bereichstyp</string>
|
||||
<string name="color_code_programs">Farbkorrektur-Software</string>
|
||||
<string name="clear_track_choices">Spur-Auswahl löschen</string>
|
||||
<string name="remove_seerr_server">Seerr-Server entfernen</string>
|
||||
<string name="software_decoding_av1">AV1 Software-Dekodierung</string>
|
||||
<string name="anamorphic">anamorph</string>
|
||||
<string name="color_space">Farbraum</string>
|
||||
<string name="color_transfer">Farbübertragung</string>
|
||||
<string name="color_primaries">Primärfarben</string>
|
||||
<string name="pixel_format">Pixelformat</string>
|
||||
<string name="ref_frames">Referenzbilder</string>
|
||||
<string name="edge_size">Randgröße</string>
|
||||
<string name="resolution_switching">Auflösungswechsel</string>
|
||||
<string name="guest_stars">Gaststars</string>
|
||||
<string name="slideshow_at_beginning">Ab Anfang</string>
|
||||
<string name="no_more_images">keine Fotos</string>
|
||||
<string name="rotate_left">Links Rotieren</string>
|
||||
<string name="rotate_right">Rechts Rotieren</string>
|
||||
<string name="red">Rot</string>
|
||||
<string name="green">Grün</string>
|
||||
<string name="blue">Blau</string>
|
||||
<string name="blur">Verschwommen</string>
|
||||
<string name="save_for_album">Speichern für Album</string>
|
||||
<string name="play_slideshow">Diashow abspielen</string>
|
||||
<string name="stop_slideshow">Diashow anhalten</string>
|
||||
<string name="brightness">Helligkeit</string>
|
||||
<string name="contrast">Kontrast</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -171,35 +171,35 @@
|
|||
<string name="extras">Επιπρόσθετα</string>
|
||||
<plurals name="other_extras">
|
||||
<item quantity="one">Άλλο</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="behind_the_scenes">
|
||||
<item quantity="one">Παρασκήνια</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="clips">
|
||||
<item quantity="one">Αποσπάσματα</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="deleted_scenes">
|
||||
<item quantity="one">Διαγραμμένες σκηνές</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="interviews">
|
||||
<item quantity="one">Συνεντεύξεις</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="scenes">
|
||||
<item quantity="one">Σκηνές</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="samples">
|
||||
<item quantity="one">Δείγματα</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="featurettes">
|
||||
<item quantity="one">Χαρακτηριστικά</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="auto_check_for_updates">Αυτόματος έλεγχος για ενημερώσεις</string>
|
||||
<string name="auto_play_next_delay">Καθυστέρηση πριν την έναρξη του επόμενου</string>
|
||||
|
|
|
|||
|
|
@ -24,11 +24,11 @@
|
|||
<string name="favorites">Favoritos</string>
|
||||
<string name="file_size">Tamaño</string>
|
||||
<string name="genres">Géneros</string>
|
||||
<string name="home">Página de inicio</string>
|
||||
<string name="home">Inicio</string>
|
||||
<string name="immediate">Inmediato</string>
|
||||
<string name="intro">Intro</string>
|
||||
<string name="jump_letters">#ABCDEFGHIJKLMNOPQRSTUVWXYZ</string>
|
||||
<string name="library">Catálogo</string>
|
||||
<string name="library">Biblioteca</string>
|
||||
<string name="license_info">Información de licencia</string>
|
||||
<string name="max_bitrate">Tasa de bits máxima</string>
|
||||
<string name="more">Más</string>
|
||||
|
|
@ -46,14 +46,14 @@
|
|||
<string name="recently_added_in">Agregado recientemente en %1$s</string>
|
||||
<string name="recently_added">Agregado recientemente</string>
|
||||
<string name="recommended">Recomendado</string>
|
||||
<string name="restart">Reiniciarlo</string>
|
||||
<string name="restart">Reiniciar</string>
|
||||
<string name="resume">Reanudar</string>
|
||||
<string name="save">Guardar</string>
|
||||
<string name="search_and_download"><![CDATA[Buscar y descargar]]></string>
|
||||
<string name="search">Buscar</string>
|
||||
<string name="searching">Buscando…</string>
|
||||
<string name="select_server">Seleccionar servidor</string>
|
||||
<string name="select_user">Seleccionar usuario</string>
|
||||
<string name="select_user">Seleccionar Usuario</string>
|
||||
<string name="sort_by_name">Nombre</string>
|
||||
<string name="sort_by_random">Aleatorio</string>
|
||||
<string name="studios">Estudios</string>
|
||||
|
|
@ -65,15 +65,15 @@
|
|||
<string name="switch_user">Cambiar</string>
|
||||
<string name="trailer">Tráiler</string>
|
||||
<plurals name="trailers">
|
||||
<item quantity="one">Tráilers</item>
|
||||
<item quantity="many"/>
|
||||
<item quantity="one">Tráiler</item>
|
||||
<item quantity="many">Tráilers</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="tv_shows">Series</string>
|
||||
<string name="ui_interface">Interfaz</string>
|
||||
<string name="version">Versión</string>
|
||||
<string name="video">Video</string>
|
||||
<string name="videos">Videos</string>
|
||||
<string name="video">Vídeo</string>
|
||||
<string name="videos">Vídeos</string>
|
||||
<string name="years_old">%1$d años</string>
|
||||
<string name="play_with_transcoding">Reproducir con transcodificación</string>
|
||||
<string name="show_clock">Mostrar reloj</string>
|
||||
|
|
@ -85,8 +85,8 @@
|
|||
<string name="runtime_sort">Duración</string>
|
||||
<string name="extras">Extras</string>
|
||||
<plurals name="other_extras">
|
||||
<item quantity="one">Otros</item>
|
||||
<item quantity="many"/>
|
||||
<item quantity="one">Otro</item>
|
||||
<item quantity="many">Otros</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="advanced_settings">Configuración avanzada</string>
|
||||
|
|
@ -97,19 +97,19 @@
|
|||
<string name="settings">Configuración</string>
|
||||
<string name="critic_rating">Calificación de la crítica</string>
|
||||
<string name="recap">Resumen</string>
|
||||
<string name="record_program">Grabar programa</string>
|
||||
<string name="record_program">Grabar Programa</string>
|
||||
<string name="record_series">Grabar serie</string>
|
||||
<string name="remove_favorite">Quitar de favoritos</string>
|
||||
<string name="show_debug_info">Mostrar información de depuración</string>
|
||||
<string name="show">Mostrar</string>
|
||||
<string name="shuffle">Aleatorio</string>
|
||||
<string name="skip">Saltar</string>
|
||||
<string name="sort_by_date_episode_added">Ordenar por fecha de añadido del episodio</string>
|
||||
<string name="sort_by_date_episode_added">Ordenar por fecha de inclusión del episodio</string>
|
||||
<string name="about">Acerca de</string>
|
||||
<string name="active_recordings">Grabaciones activas</string>
|
||||
<string name="cancel_recording">Cancelar grabación</string>
|
||||
<string name="cancel_series_recording">Cancelar grabación de la serie</string>
|
||||
<string name="clear_image_cache">Borrar la caché de imágenes</string>
|
||||
<string name="clear_image_cache">Borrar caché de imágenes</string>
|
||||
<string name="community_rating">Valoración de la comunidad</string>
|
||||
<string name="compose_error_message_title">¡Se ha producido un error! Pulsa el botón para enviar los registros a tu servidor.</string>
|
||||
<string name="default_track">Predeterminado</string>
|
||||
|
|
@ -119,41 +119,41 @@
|
|||
<string name="discovered_servers">Servidores detectados</string>
|
||||
<string name="download_and_update"><![CDATA[Descargar y actualizar]]></string>
|
||||
<string name="downloading">Descargando…</string>
|
||||
<string name="enter_server_url">Introduce la IP o la URL del servidor</string>
|
||||
<string name="error_loading_collection">Error al cargar la colección %1$s</string>
|
||||
<string name="forced_track">Pista forzada</string>
|
||||
<string name="enter_server_url">Introduce la IP o URL del servidor, incluido el puerto</string>
|
||||
<string name="error_loading_collection">Error cargando la colección %1$s</string>
|
||||
<string name="forced_track">Forzado</string>
|
||||
<string name="go_to_series">Ir a la serie</string>
|
||||
<string name="go_to">Ir a</string>
|
||||
<string name="hide_controller_timeout">Ocultar los controles de reproducción</string>
|
||||
<string name="hide_controller_timeout">Ocultar controles de reproducción</string>
|
||||
<string name="hide_debug_info">Ocultar información de depuración</string>
|
||||
<string name="hide">Ocultar</string>
|
||||
<string name="live_tv">Televisión en directo</string>
|
||||
<string name="live_tv">TV en vivo</string>
|
||||
<string name="loading">Cargando…</string>
|
||||
<string name="mark_entire_series_as_played">¿Marcar toda la serie como vista?</string>
|
||||
<string name="mark_entire_series_as_unplayed">¿Marcar toda la serie como no reproducida?</string>
|
||||
<string name="mark_entire_series_as_played">¿Marcar la serie completa como vista?</string>
|
||||
<string name="mark_entire_series_as_unplayed">¿Marcar la serie completa como no vista?</string>
|
||||
<string name="mark_unwatched">Marcar como no visto</string>
|
||||
<string name="mark_watched">Marcar como visto</string>
|
||||
<string name="more_like_this">Más como esto</string>
|
||||
<string name="movies">Películas</string>
|
||||
<string name="next_up">A continuación</string>
|
||||
<string name="next_up">Siguiente</string>
|
||||
<string name="no_data">Sin datos</string>
|
||||
<string name="no_scheduled_recordings">No hay grabaciones programadas</string>
|
||||
<string name="no_update_available">No hay ninguna actualización disponible</string>
|
||||
<string name="no_scheduled_recordings">Sin grabaciones programadas</string>
|
||||
<string name="no_update_available">No hay actualizaciones disponibles</string>
|
||||
<string name="path">Ruta</string>
|
||||
<string name="play_count">Recuento de reproducciones</string>
|
||||
<string name="play_count">Reproducciones</string>
|
||||
<string name="play_from_here">Reproducir desde aquí</string>
|
||||
<string name="playback_debug_info">Mostrar información de depuración de reproducción</string>
|
||||
<string name="playback_speed">Velocidad de reproducción</string>
|
||||
<string name="profile_specific_settings">Configuración del perfil de usuario</string>
|
||||
<string name="recently_recorded">Grabado recientemente</string>
|
||||
<string name="recently_released">Lanzado recientemente</string>
|
||||
<string name="show_next_up_when">Mostrar \"A continuación\"</string>
|
||||
<string name="sort_by_date_added">Fecha de añadido</string>
|
||||
<string name="sort_by_date_played">Ordenar por fecha de reproducción</string>
|
||||
<string name="sort_by_date_released">Ordenar por fecha de lanzamiento</string>
|
||||
<string name="subtitle_download_too_long">La descarga está tardando demasiado; puede que necesites reiniciar la reproducción</string>
|
||||
<string name="top_unwatched">Mejor valoradas sin ver</string>
|
||||
<string name="tv_dvr_schedule">Programación del DVR</string>
|
||||
<string name="show_next_up_when">Mostrar “Siguiente”</string>
|
||||
<string name="sort_by_date_added">Fecha de inclusión</string>
|
||||
<string name="sort_by_date_played">Fecha de reproducción</string>
|
||||
<string name="sort_by_date_released">Fecha de lanzamiento</string>
|
||||
<string name="subtitle_download_too_long">La descarga está tardando demasiado, es posible que debas reiniciar la reproducción</string>
|
||||
<string name="top_unwatched">Mejor calificados no vistos</string>
|
||||
<string name="tv_dvr_schedule">Programación DVR</string>
|
||||
<string name="tv_guide">Guía</string>
|
||||
<string name="tv_season">Temporada</string>
|
||||
<string name="tv_seasons">Temporadas</string>
|
||||
|
|
@ -162,15 +162,15 @@
|
|||
<string name="video_scale">Escala de vídeo</string>
|
||||
<string name="watch_live">Ver en directo</string>
|
||||
<string name="aired_episode_order">Orden de emisión</string>
|
||||
<string name="italic_font">Poner la fuente en cursiva</string>
|
||||
<string name="italic_font">Cursiva</string>
|
||||
<plurals name="behind_the_scenes">
|
||||
<item quantity="one">Detrás de las cámaras</item>
|
||||
<item quantity="one">Detrás de cámaras</item>
|
||||
<item quantity="many"/>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="theme_songs">
|
||||
<item quantity="one">Canciones principales</item>
|
||||
<item quantity="many"/>
|
||||
<item quantity="one">Canción principal</item>
|
||||
<item quantity="many">Canciones principales</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="theme_videos">
|
||||
|
|
@ -181,26 +181,26 @@
|
|||
<plurals name="clips">
|
||||
<item quantity="one">Clip</item>
|
||||
<item quantity="many">Clips</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="deleted_scenes">
|
||||
<item quantity="one">Escenas eliminadas</item>
|
||||
<item quantity="many"/>
|
||||
<item quantity="one">Escena eliminada</item>
|
||||
<item quantity="many">Escenas eliminadas</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="interviews">
|
||||
<item quantity="one">Entrevistas</item>
|
||||
<item quantity="many"/>
|
||||
<item quantity="one">Entrevista</item>
|
||||
<item quantity="many">Entrevistas</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="scenes">
|
||||
<item quantity="one">Escenas</item>
|
||||
<item quantity="many"/>
|
||||
<item quantity="one">Escena</item>
|
||||
<item quantity="many">Escenas</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="samples">
|
||||
<item quantity="one">Fragmentos</item>
|
||||
<item quantity="many"/>
|
||||
<item quantity="one">Muestra</item>
|
||||
<item quantity="many">Muestras</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="featurettes">
|
||||
|
|
@ -209,7 +209,7 @@
|
|||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="shorts">
|
||||
<item quantity="one">Cortos</item>
|
||||
<item quantity="one">CortoCortos</item>
|
||||
<item quantity="many"/>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
|
|
@ -233,32 +233,32 @@
|
|||
<item quantity="many">%d segundos</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="ac3_supported">El dispositivo es compatible con AC3/Dolby Digital</string>
|
||||
<string name="auto_check_for_updates">Comprobar actualizaciones automáticamente</string>
|
||||
<string name="auto_play_next_delay">Retraso antes de reproducir lo siguiente</string>
|
||||
<string name="auto_play_next">Reproducir automáticamente lo siguiente</string>
|
||||
<string name="check_for_updates">Comprobar si hay actualizaciones</string>
|
||||
<string name="combine_continue_next_summary">Se aplica solo a series de televisión</string>
|
||||
<string name="combine_continue_next"><![CDATA[Combinar “Seguir viendo” y “A continuación”]]></string>
|
||||
<string name="ac3_supported">El dispositivo soporta AC3/Dolby Digital</string>
|
||||
<string name="auto_check_for_updates">Buscar actualizaciones automáticamente</string>
|
||||
<string name="auto_play_next_delay">Retraso antes de reproducir el siguiente</string>
|
||||
<string name="auto_play_next">Reproducción automática del siguiente</string>
|
||||
<string name="check_for_updates">Buscar actualizaciones</string>
|
||||
<string name="combine_continue_next_summary">Aplica solo a series</string>
|
||||
<string name="combine_continue_next"><![CDATA[Combinar “Continuar viendo” y “Siguiente”]]></string>
|
||||
<string name="direct_play_ass">Reproducción directa de subtítulos ASS</string>
|
||||
<string name="direct_play_pgs">Reproducción directa de subtítulos PGS</string>
|
||||
<string name="downmix_stereo">Convertir siempre a estéreo</string>
|
||||
<string name="ffmpeg_extension_pref">Usar módulo de decodificación FFmpeg</string>
|
||||
<string name="global_content_scale">Escala predeterminada del contenido</string>
|
||||
<string name="ffmpeg_extension_pref">Usar módulo decodificador FFmpeg</string>
|
||||
<string name="global_content_scale">Escala de contenido predeterminada</string>
|
||||
<string name="install_update">Instalar actualización</string>
|
||||
<string name="max_homepage_items">Máximo de elementos por fila en inicio</string>
|
||||
<string name="max_homepage_items">Elementos máximos en filas de inicio</string>
|
||||
<string name="nav_drawer_pins_summary">Elige los elementos predeterminados que se mostrarán; los demás permanecerán ocultos</string>
|
||||
<string name="nav_drawer_pins">Personalizar los elementos del panel de navegación</string>
|
||||
<string name="nav_drawer_pins">Personalizar elementos del panel de navegación</string>
|
||||
<string name="nav_drawer_switch_on_focus_summary_off">Clic para cambiar de página</string>
|
||||
<string name="nav_drawer_switch_on_focus">Cambiar las páginas del menú lateral al recibir el foco</string>
|
||||
<string name="nav_drawer_switch_on_focus">Cambiar páginas del menú al enfocar</string>
|
||||
<string name="pass_out_protection">Protección contra inactividad</string>
|
||||
<string name="playback_overrides">Anulaciones de reproducción</string>
|
||||
<string name="remember_selected_tab">Recordar las pestañas seleccionadas</string>
|
||||
<string name="rewatch_next_up">Permitir volver a ver en “A continuación”</string>
|
||||
<string name="remember_selected_tab">Recordar pestañas seleccionadas</string>
|
||||
<string name="rewatch_next_up">Permitir volver a ver en “Siguiente”</string>
|
||||
<string name="seek_bar_steps">Pasos de la barra de búsqueda</string>
|
||||
<string name="send_app_logs_summary">Útil para depuración</string>
|
||||
<string name="send_app_logs">Enviar los registros de la app al servidor actual</string>
|
||||
<string name="send_crash_reports_summary">Intentará enviarlos al último servidor conectado</string>
|
||||
<string name="send_app_logs">Enviar registros de la app al servidor actual</string>
|
||||
<string name="send_crash_reports_summary">Intentará enviarse al último servidor conectado</string>
|
||||
<string name="send_crash_reports">Enviar informes de fallos</string>
|
||||
<string name="skip_back_on_resume_preference">Retroceder al reanudar la reproducción</string>
|
||||
<string name="skip_back_preference">Retroceder</string>
|
||||
|
|
@ -266,22 +266,22 @@
|
|||
<string name="skip_forward_preference">Avanzar</string>
|
||||
<string name="skip_intro_behavior">Comportamiento al saltar la intro</string>
|
||||
<string name="skip_outro_behavior">Comportamiento al saltar el outro</string>
|
||||
<string name="skip_previews_behavior">Comportamiento al saltar los avances</string>
|
||||
<string name="skip_recap_behavior">Comportamiento al saltar el resumen</string>
|
||||
<string name="skip_previews_behavior">Comportamiento al saltar avances</string>
|
||||
<string name="skip_recap_behavior">Comportamiento al saltar resumen</string>
|
||||
<string name="update_available">Actualización disponible</string>
|
||||
<string name="update_url_summary">URL para comprobar actualizaciones de la aplicación</string>
|
||||
<string name="update_url_summary">URL usada para comprobar actualizaciones</string>
|
||||
<string name="update_url">URL de actualización</string>
|
||||
<string name="font_size">Tamaño de fuente</string>
|
||||
<string name="font_color">Color de la fuente</string>
|
||||
<string name="font_opacity">Opacidad de la fuente</string>
|
||||
<string name="font_color">Color de fuente</string>
|
||||
<string name="font_opacity">Opacidad de fuente</string>
|
||||
<string name="edge_style">Estilo del borde</string>
|
||||
<string name="edge_color">Color del borde</string>
|
||||
<string name="background_opacity">Opacidad del fondo</string>
|
||||
<string name="background_style">Estilo del fondo</string>
|
||||
<string name="subtitle_style">Estilo de los subtítulos</string>
|
||||
<string name="subtitle_style">Estilo de subtítulos</string>
|
||||
<string name="background_color">Color del fondo</string>
|
||||
<string name="reset">Restablecer</string>
|
||||
<string name="bold_font">Fuente en negrita</string>
|
||||
<string name="bold_font">Negrita</string>
|
||||
<string name="player_backend">Motor de reproducción</string>
|
||||
<string name="mpv_hardware_decoding">MPV: Usar decodificación por hardware</string>
|
||||
<string name="disable_if_crash">Desactívalo si experimentas fallos</string>
|
||||
|
|
@ -303,7 +303,7 @@
|
|||
<string name="font">Fuente</string>
|
||||
<string name="background">Fondo</string>
|
||||
<string name="official_rating">Clasificación parental</string>
|
||||
<string name="ends_at">Termina en %1$s</string>
|
||||
<string name="ends_at">Termina a las %1$s</string>
|
||||
<string name="enter_server_address">Introduzca la dirección del servidor</string>
|
||||
<string name="no_servers_found">No se encontraron servidores</string>
|
||||
<string name="media_information">Información multimedia</string>
|
||||
|
|
@ -385,13 +385,13 @@
|
|||
<string name="voice_error_client">Error de reconocimiento de voz</string>
|
||||
<string name="voice_error_permissions">Se requiere permiso para el micrófono</string>
|
||||
<string name="voice_error_network">Error de red</string>
|
||||
<string name="voice_error_network_timeout">Tiempo de espera agotado de red</string>
|
||||
<string name="voice_error_network_timeout">Tiempo de espera de red agotado</string>
|
||||
<string name="voice_error_no_match">No se reconoce el habla</string>
|
||||
<string name="voice_error_busy">Reconocimiento de voz ocupado</string>
|
||||
<string name="voice_error_server">Error de servidor</string>
|
||||
<string name="voice_error_speech_timeout">No se detecta voz</string>
|
||||
<string name="voice_error_unknown">Error desconocido</string>
|
||||
<string name="voice_error_start_failed">No se pudo iniciar el reconocimiento de voz</string>
|
||||
<string name="voice_error_start_failed">Error al iniciar el reconocimiento de voz</string>
|
||||
<string name="voice_error_timeout">Se agotó el tiempo de espera para el reconocimiento de voz</string>
|
||||
<string name="retry">Reintentar</string>
|
||||
<string name="resolution_switching">Cambio de resolución</string>
|
||||
|
|
@ -421,4 +421,5 @@
|
|||
<string name="upcoming_tv">Próximos programas de televisión</string>
|
||||
<string name="request_4k">Solicitar en 4K</string>
|
||||
<string name="software_decoding_av1">Decodificación por software AV1</string>
|
||||
<string name="upgrade_mpv_toast">MPV es ahora el reproductor por defecto para HDR.\nPuedes cambiar esto en los ajustes.</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<string name="confirm">Kinnita</string>
|
||||
<string name="continue_watching">Jätka vaatamist</string>
|
||||
<string name="critic_rating">Kriitikute hinnang</string>
|
||||
<string name="decimal_seconds">%.1f sekundit</string>
|
||||
<string name="decimal_seconds">%.2f sekundit</string>
|
||||
<string name="default_track">Vaikimisi</string>
|
||||
<string name="delete">Kustuta</string>
|
||||
<string name="died">Surmaaeg</string>
|
||||
|
|
@ -406,4 +406,25 @@
|
|||
<string name="retry">Proovi uuesti</string>
|
||||
<string name="software_decoding_av1">AV1 tarkvaraline dekodeerimine</string>
|
||||
<string name="upgrade_mpv_toast">MPV on nüüd vaikimisi meediaesitaja kõige v.a. HDR-i jaoks.\nSeda saad muuta seadistustest.</string>
|
||||
<string name="hdr_subtitle_style">HDR-i tiitrite stiil</string>
|
||||
<string name="image_subtitle_opacity">Pildiliste tiitrite läbipaistvus</string>
|
||||
<string name="brightness">Eredus</string>
|
||||
<string name="contrast">Kontrastsus</string>
|
||||
<string name="saturation">Küllastus</string>
|
||||
<string name="hue">Värvitoon</string>
|
||||
<string name="red">Punane</string>
|
||||
<string name="green">Roheline</string>
|
||||
<string name="blue">Sinine</string>
|
||||
<string name="blur">Hägustamine</string>
|
||||
<string name="save_for_album">Salvesta albumi jaoks</string>
|
||||
<string name="play_slideshow">Näita slaidiesitlust</string>
|
||||
<string name="stop_slideshow">Peata slaidiesitlus</string>
|
||||
<string name="slideshow_at_beginning">Alguses</string>
|
||||
<string name="no_more_images">Rohkem fotosid pole</string>
|
||||
<string name="rotate_left">Pööra vasakule</string>
|
||||
<string name="rotate_right">Pööra paremale</string>
|
||||
<string name="zoom_in">Suumi sisse</string>
|
||||
<string name="zoom_out">Suumi välja</string>
|
||||
<string name="slideshow_duration">Slaidiesitluse kestus</string>
|
||||
<string name="play_videos_during_slideshow">Slaidiesitluse ajal esita videoid</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -422,4 +422,25 @@
|
|||
<string name="request_4k">Demande en 4K</string>
|
||||
<string name="software_decoding_av1">Décodage logiciel AV1</string>
|
||||
<string name="upgrade_mpv_toast">MPV est désormais le lecteur par défaut, sauf pour HDR.\nVous pouvez modifier cela dans les paramètres.</string>
|
||||
<string name="hdr_subtitle_style">Style de sous-titres HDR</string>
|
||||
<string name="image_subtitle_opacity">opacité du sous-titre de l\'image</string>
|
||||
<string name="brightness">Luminosité</string>
|
||||
<string name="contrast">Contraste</string>
|
||||
<string name="saturation">Saturation</string>
|
||||
<string name="hue">Teinte</string>
|
||||
<string name="red">Rouge</string>
|
||||
<string name="green">Vert</string>
|
||||
<string name="blue">Bleu</string>
|
||||
<string name="blur">Flou</string>
|
||||
<string name="save_for_album">Enregistrer pour l\'album</string>
|
||||
<string name="play_slideshow">Lire le diaporama</string>
|
||||
<string name="stop_slideshow">Arrêter le diaporama</string>
|
||||
<string name="slideshow_at_beginning">Au début</string>
|
||||
<string name="no_more_images">Plus de photos</string>
|
||||
<string name="rotate_left">Faire pivoter à gauche</string>
|
||||
<string name="rotate_right">Faire pivoter à droite</string>
|
||||
<string name="zoom_in">Zoomer</string>
|
||||
<string name="zoom_out">Dézoomer</string>
|
||||
<string name="slideshow_duration">Durée du diaporama</string>
|
||||
<string name="play_videos_during_slideshow">Diffuser des vidéos pendant le diaporama</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
<string name="confirm">Konfirmasi</string>
|
||||
<string name="continue_watching">Lanjutkan menonton</string>
|
||||
<string name="critic_rating">Penilaian Kritis</string>
|
||||
<string name="decimal_seconds">%.1f detik</string>
|
||||
<string name="decimal_seconds">%.2f detik</string>
|
||||
<string name="default_track">Bawaan</string>
|
||||
<string name="delete">Hapus</string>
|
||||
<string name="died">Meninggal</string>
|
||||
|
|
@ -389,4 +389,27 @@
|
|||
<string name="request">Minta</string>
|
||||
<string name="pending">Tertunda</string>
|
||||
<string name="software_decoding_av1">Dekode perangkat lunak AV1</string>
|
||||
<string name="upgrade_mpv_toast">MPV sekarang adalah pemutar bawaan kecuali konten HDR.\nPerubahan dapat dilakukan di menu pengaturan.</string>
|
||||
<string name="hdr_subtitle_style">Gaya subtitel HDR</string>
|
||||
<string name="image_subtitle_opacity">Opasitas subtitel gambar</string>
|
||||
<string name="brightness">Kecerahan</string>
|
||||
<string name="contrast">Kontras</string>
|
||||
<string name="saturation">Saturasi</string>
|
||||
<string name="hue">Hue</string>
|
||||
<string name="red">Merah</string>
|
||||
<string name="green">Hijau</string>
|
||||
<string name="blue">Biru</string>
|
||||
<string name="blur">Kabur</string>
|
||||
<string name="save_for_album">Simpan ke album</string>
|
||||
<string name="play_slideshow">Putar tayangan slide</string>
|
||||
<string name="stop_slideshow">Hentikan tayangan slide</string>
|
||||
<string name="slideshow_at_beginning">Di awal</string>
|
||||
<string name="no_more_images">Tidak ada foto lagi</string>
|
||||
<string name="rotate_left">Putar kiri</string>
|
||||
<string name="rotate_right">Putar kanan</string>
|
||||
<string name="zoom_in">Perbesar</string>
|
||||
<string name="zoom_out">Perkecil</string>
|
||||
<string name="slideshow_duration">Durasi tayangan slide</string>
|
||||
<string name="play_videos_during_slideshow">Putar video selama tayangan slide</string>
|
||||
<string name="send_media_info_log_to_server">Kirim log info media ke server</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@
|
|||
<string name="tv_guide">Guida TV</string>
|
||||
<string name="show">Mostra</string>
|
||||
<string name="searching">Ricerca in corso…</string>
|
||||
<string name="decimal_seconds">%.1f secondi</string>
|
||||
<string name="decimal_seconds">%.2f secondi</string>
|
||||
<string name="commercial">Commerciale</string>
|
||||
<string name="community_rating">Valutazione community</string>
|
||||
<string name="critic_rating">Valutazione della critica</string>
|
||||
|
|
@ -422,4 +422,26 @@
|
|||
<string name="voice_error_timeout">Riconoscimento vocale scaduto</string>
|
||||
<string name="software_decoding_av1">Decodifica software AV1</string>
|
||||
<string name="upgrade_mpv_toast">MPV è ora il lettore predefinito, eccetto per i contenuti HDR.\nPuoi modificarlo nelle impostazioni.</string>
|
||||
<string name="hdr_subtitle_style">Stile sottotitoli HDR</string>
|
||||
<string name="image_subtitle_opacity">Opacità sottotitoli immagine</string>
|
||||
<string name="brightness">Luminosità</string>
|
||||
<string name="contrast">Contrasto</string>
|
||||
<string name="saturation">Saturazione</string>
|
||||
<string name="hue">Tinta</string>
|
||||
<string name="red">Rosso</string>
|
||||
<string name="green">Verde</string>
|
||||
<string name="blue">Blu</string>
|
||||
<string name="blur">Sfocatura</string>
|
||||
<string name="save_for_album">Salva per l\'album</string>
|
||||
<string name="play_slideshow">Riproduci slideshow</string>
|
||||
<string name="stop_slideshow">Ferma slideshow</string>
|
||||
<string name="slideshow_at_beginning">Dall\'inizio</string>
|
||||
<string name="no_more_images">Nessun\'altra foto</string>
|
||||
<string name="rotate_left">Ruota a sinistra</string>
|
||||
<string name="rotate_right">Ruota a destra</string>
|
||||
<string name="zoom_in">Ingrandisci</string>
|
||||
<string name="zoom_out">Rimpicciolisci</string>
|
||||
<string name="slideshow_duration">Durata slideshow</string>
|
||||
<string name="play_videos_during_slideshow">Riproduci video durante lo slideshow</string>
|
||||
<string name="send_media_info_log_to_server">Invia log informazioni media al server</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@
|
|||
<string name="trailer">Trailer</string>
|
||||
<plurals name="trailers">
|
||||
<item quantity="one">Trailere</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="tv_dvr_schedule">DVR-plan</string>
|
||||
<string name="tv_guide">Programoversikt</string>
|
||||
|
|
@ -155,47 +155,47 @@
|
|||
<string name="extras">Ekstramateriale</string>
|
||||
<plurals name="other_extras">
|
||||
<item quantity="one">Annet</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="behind_the_scenes">
|
||||
<item quantity="one">Bak kulissene</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="theme_songs">
|
||||
<item quantity="one">Temasanger</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="theme_videos">
|
||||
<item quantity="one">Temavideoer</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="clips">
|
||||
<item quantity="one">Klipp</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="deleted_scenes">
|
||||
<item quantity="one">Slettede scener</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="interviews">
|
||||
<item quantity="one">Intervjuer</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="scenes">
|
||||
<item quantity="one">Scener</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="samples">
|
||||
<item quantity="one">Smakebiter</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="featurettes">
|
||||
<item quantity="one">Bakomfilmer</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="shorts">
|
||||
<item quantity="one">Kortfilmer</item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="downloads">
|
||||
<item quantity="one">%s nedlasting</item>
|
||||
|
|
|
|||
|
|
@ -45,9 +45,9 @@
|
|||
<string name="trailer">Zwiastun</string>
|
||||
<plurals name="trailers">
|
||||
<item quantity="one">Zwiastuny</item>
|
||||
<item quantity="few"></item>
|
||||
<item quantity="many"></item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="few"/>
|
||||
<item quantity="many"/>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="submit">Potwierdź</string>
|
||||
<string name="sort_by_date_released">Data Wydania</string>
|
||||
|
|
@ -122,21 +122,21 @@
|
|||
<string name="one_click_pause_summary_on">Wciśnij środek by pauzować/wznowić</string>
|
||||
<plurals name="interviews">
|
||||
<item quantity="one">Wywiady</item>
|
||||
<item quantity="few"></item>
|
||||
<item quantity="many"></item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="few"/>
|
||||
<item quantity="many"/>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="scenes">
|
||||
<item quantity="one">Sceny</item>
|
||||
<item quantity="few"></item>
|
||||
<item quantity="many"></item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="few"/>
|
||||
<item quantity="many"/>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="theme_videos">
|
||||
<item quantity="one">Czołówki</item>
|
||||
<item quantity="few"></item>
|
||||
<item quantity="many"></item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="few"/>
|
||||
<item quantity="many"/>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="create_playlist">Utwórz nową playliste</string>
|
||||
<string name="add_to_playlist">Dodaj do playlisty</string>
|
||||
|
|
@ -182,9 +182,9 @@
|
|||
<string name="italic_font">Czcionka kursywy</string>
|
||||
<plurals name="behind_the_scenes">
|
||||
<item quantity="one">Za kulisami</item>
|
||||
<item quantity="few"></item>
|
||||
<item quantity="many"></item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="few"/>
|
||||
<item quantity="many"/>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="advanced_settings">Ustawienia zaawansowane</string>
|
||||
<string name="check_for_updates">Sprawdź dostępność aktualizacji</string>
|
||||
|
|
@ -270,15 +270,15 @@
|
|||
<string name="extras">Dodatki</string>
|
||||
<plurals name="other_extras">
|
||||
<item quantity="one">Inne</item>
|
||||
<item quantity="few"></item>
|
||||
<item quantity="many"></item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="few"/>
|
||||
<item quantity="many"/>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="deleted_scenes">
|
||||
<item quantity="one">Usunięte sceny</item>
|
||||
<item quantity="few"></item>
|
||||
<item quantity="many"></item>
|
||||
<item quantity="other"></item>
|
||||
<item quantity="few"/>
|
||||
<item quantity="many"/>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="nav_drawer_switch_on_focus_summary_off">Naciśnij by zmienić stronę</string>
|
||||
<string name="send_app_logs_summary">Przydatne do debugowania</string>
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
<string name="collection">Colecção</string>
|
||||
<string name="collections">Colecções</string>
|
||||
<string name="confirm">Confirmar</string>
|
||||
<string name="decimal_seconds">%.1f segundos</string>
|
||||
<string name="decimal_seconds">%.2f segundos</string>
|
||||
<string name="default_track">Padrão</string>
|
||||
<string name="delete">Eliminar</string>
|
||||
<string name="directed_by">Realizado por %1$s</string>
|
||||
|
|
@ -422,4 +422,33 @@
|
|||
<string name="retry">Tentar novamente</string>
|
||||
<string name="software_decoding_av1">Decodificação de AV1 por software</string>
|
||||
<string name="upgrade_mpv_toast">O MPV é agora o reprodutor padrão, exceto para HDR.\nPode alterar esta configuração nas definições.</string>
|
||||
<plurals name="days">
|
||||
<item quantity="one">%s Dia</item>
|
||||
<item quantity="many">%s Dias</item>
|
||||
<item quantity="other">%s Dias</item>
|
||||
</plurals>
|
||||
<string name="hdr_subtitle_style">Estilo de legenda HDR</string>
|
||||
<string name="image_subtitle_opacity">Transparência da legenda da imagem</string>
|
||||
<string name="brightness">Brilho</string>
|
||||
<string name="contrast">Contraste</string>
|
||||
<string name="saturation">Saturação</string>
|
||||
<string name="hue">Matiz</string>
|
||||
<string name="red">Vermelho</string>
|
||||
<string name="green">Verde</string>
|
||||
<string name="blue">Azul</string>
|
||||
<string name="blur">Desfoque</string>
|
||||
<string name="save_for_album">Guardar para o álbum</string>
|
||||
<string name="play_slideshow">Reproduzir slides</string>
|
||||
<string name="stop_slideshow">Parar slides</string>
|
||||
<string name="slideshow_at_beginning">No início</string>
|
||||
<string name="no_more_images">Não há mais fotos</string>
|
||||
<string name="rotate_left">Rodar para a esquerda</string>
|
||||
<string name="rotate_right">Rodar para a direita</string>
|
||||
<string name="zoom_in">Ampliar</string>
|
||||
<string name="zoom_out">Diminuir</string>
|
||||
<string name="slideshow_duration">Duração dos slides</string>
|
||||
<string name="play_videos_during_slideshow">Reproduzir vídeos durante a apresentação de slides</string>
|
||||
<string name="send_media_info_log_to_server">Enviar registo de informações de mídia para o servidor</string>
|
||||
<string name="no_limit">Sem limite</string>
|
||||
<string name="max_days_next_up">Dias máximos em \'A Seguir\'</string>
|
||||
</resources>
|
||||
|
|
|
|||
439
app/src/main/res/values-tr/strings.xml
Normal file
439
app/src/main/res/values-tr/strings.xml
Normal file
|
|
@ -0,0 +1,439 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="about">Hakkında</string>
|
||||
<string name="active_recordings">Etkin kayıtlar</string>
|
||||
<string name="add_favorite">Favori</string>
|
||||
<string name="add_server">Sunucu Ekle</string>
|
||||
<string name="add_user">Kullanıcı Ekle</string>
|
||||
<string name="audio">Ses</string>
|
||||
<string name="birthplace">Doğum yeri</string>
|
||||
<string name="bitrate">Bit hızı</string>
|
||||
<string name="born">Doğum Tarihi</string>
|
||||
<string name="cancel_recording">Kaydı iptal et</string>
|
||||
<string name="cancel_series_recording">Dizi kaydını iptal et</string>
|
||||
<string name="cancel">İptal</string>
|
||||
<string name="chapters">Bölümler</string>
|
||||
<string name="choose_stream">Seç: %1$s</string>
|
||||
<string name="clear_image_cache">Resim önbelleğini temizle</string>
|
||||
<string name="collection">Koleksiyon</string>
|
||||
<string name="collections">Koleksiyonlar</string>
|
||||
<string name="commercial">Reklam</string>
|
||||
<string name="community_rating">Topluluk puanı</string>
|
||||
<string name="compose_error_message_title">Bir hata oluştu! Günlükleri sunucunuza göndermek için düğmeye basın.</string>
|
||||
<string name="confirm">Onayla</string>
|
||||
<string name="continue_watching">İzlemeye devam et</string>
|
||||
<string name="critic_rating">Eleştirmen puanı</string>
|
||||
<string name="decimal_seconds">%.2f saniye</string>
|
||||
<string name="default_track">Varsayılan</string>
|
||||
<string name="delete">Sil</string>
|
||||
<string name="died">Ölüm Tarihi</string>
|
||||
<string name="directed_by">Yönetmen %1$s</string>
|
||||
<string name="director">Yönetmen</string>
|
||||
<string name="disabled">Devre dışı</string>
|
||||
<string name="discovered_servers">Keşfedilen sunucular</string>
|
||||
<string name="download_and_update"><![CDATA[İndir ve Güncelle]]></string>
|
||||
<string name="downloading">İndiriliyor…</string>
|
||||
<string name="enabled">Etkin</string>
|
||||
<string name="ends_at">Bitiş saati %1$s</string>
|
||||
<string name="enter_server_url">Sunucu IP adresini veya URL\'sini girin</string>
|
||||
<string name="enter_server_address">Sunucu adresini girin</string>
|
||||
<string name="episodes">Bölümler</string>
|
||||
<string name="error_loading_collection">%1$s koleksiyonu yüklenirken bir hata oluştu</string>
|
||||
<string name="external_track">Harici</string>
|
||||
<string name="favorites">Favoriler</string>
|
||||
<string name="file_size">Boyut</string>
|
||||
<string name="forced_track">Zorunlu</string>
|
||||
<string name="genres">Türler</string>
|
||||
<string name="go_to_series">Dizilere git</string>
|
||||
<string name="go_to">Git</string>
|
||||
<string name="hide_controller_timeout">Oynatma kontrollerini gizle</string>
|
||||
<string name="hide_debug_info">Hata ayıklama bilgilerini gizle</string>
|
||||
<string name="hide">Gizle</string>
|
||||
<string name="home">Ana Ekran</string>
|
||||
<string name="immediate">Hemen</string>
|
||||
<string name="intro">İntro</string>
|
||||
<string name="jump_letters">#ABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZ</string>
|
||||
<string name="library">Kütüphane</string>
|
||||
<string name="license_info">Lisans bilgileri</string>
|
||||
<string name="live_tv">Canlı TV</string>
|
||||
<string name="loading">Yükleniyor…</string>
|
||||
<string name="mark_entire_series_as_played">Tüm diziyi izlendi olarak işaretle?</string>
|
||||
<string name="mark_entire_series_as_unplayed">Tüm diziyi izlenmedi olarak işaretle?</string>
|
||||
<string name="mark_unwatched">İzlenmedi olarak işaretle</string>
|
||||
<string name="mark_watched">İzlendi olarak işaretle</string>
|
||||
<string name="max_bitrate">Maksimum bit hızı</string>
|
||||
<string name="more_like_this">Benzerleri</string>
|
||||
<string name="more">Diğer</string>
|
||||
<plurals name="movies">
|
||||
<item quantity="one">Filmler</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="name">Ad</string>
|
||||
<string name="next_up">Sıradaki bölümler</string>
|
||||
<string name="no_data">Veri yok</string>
|
||||
<string name="no_results">Sonuç bulunamadı</string>
|
||||
<string name="no_servers_found">Sunucu bulunamadı</string>
|
||||
<string name="no_scheduled_recordings">Planlanmış kayıt yok</string>
|
||||
<string name="no_update_available">Güncelleme mevcut değil</string>
|
||||
<string name="none">Hiçbiri</string>
|
||||
<string name="only_forced_subtitles">Sadece zorunlu altyazılar</string>
|
||||
<string name="outro">Kapanış jeneriği</string>
|
||||
<string name="path">Yol</string>
|
||||
<plurals name="people">
|
||||
<item quantity="one">Kişiler</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="play_count">Oynatma Sayısı</string>
|
||||
<string name="play_from_here">Buradan oynat</string>
|
||||
<string name="play">Oynat</string>
|
||||
<string name="playback_debug_info">Oynatma hata ayıklama bilgilerini göster</string>
|
||||
<string name="playback_speed">Oynatma hızı</string>
|
||||
<string name="playback">Oynatma</string>
|
||||
<string name="playlist">Oynatma Listesi</string>
|
||||
<string name="playlists">Oynatma Listeleri</string>
|
||||
<string name="preview">Önizleme</string>
|
||||
<string name="profile_specific_settings">Kullanıcı Profili Ayarları</string>
|
||||
<string name="queue">Kuyruk</string>
|
||||
<string name="recap">Özet</string>
|
||||
<string name="recently_added_in">%1$s kütüphanesine son eklenenler</string>
|
||||
<string name="recently_added">Son eklenen</string>
|
||||
<string name="recently_recorded">Son Kaydedilenler</string>
|
||||
<string name="recently_released">Son Çıkanlar</string>
|
||||
<string name="recommended">Önerilenler</string>
|
||||
<string name="record_program">Programı Kaydet</string>
|
||||
<string name="record_series">Diziyi Kaydet</string>
|
||||
<string name="remove_favorite">Favorilerden kaldır</string>
|
||||
<string name="restart">Yeniden Başlat</string>
|
||||
<string name="resume">Sürdür</string>
|
||||
<string name="save">Kaydet</string>
|
||||
<string name="search_and_download"><![CDATA[Ara ve İndir]]></string>
|
||||
<string name="search">Ara</string>
|
||||
<string name="searching">Aranıyor…</string>
|
||||
<string name="voice_search">Sesli arama</string>
|
||||
<string name="voice_starting">Başlatılıyor</string>
|
||||
<string name="voice_search_prompt">Aramak için konuşun</string>
|
||||
<string name="processing">İşleniyor</string>
|
||||
<string name="press_back_to_cancel">İptal etmek için geri tuşuna basın</string>
|
||||
<string name="voice_error_audio">Ses kayıt hatası</string>
|
||||
<string name="voice_error_client">Ses tanıma hatası</string>
|
||||
<string name="voice_error_permissions">Mikrofon izni gerekiyor</string>
|
||||
<string name="voice_error_network">Ağ hatası</string>
|
||||
<string name="voice_error_network_timeout">Ağ zaman aşımı</string>
|
||||
<string name="voice_error_no_match">Ses tanınmadı</string>
|
||||
<string name="voice_error_busy">Ses tanıma meşgul</string>
|
||||
<string name="voice_error_server">Sunucu hatası</string>
|
||||
<string name="voice_error_speech_timeout">Ses algılanamadı</string>
|
||||
<string name="voice_error_unknown">Bilinmeyen hata</string>
|
||||
<string name="voice_error_start_failed">Ses tanıma başlatılamadı</string>
|
||||
<string name="voice_error_timeout">Ses tanıma zaman aşımına uğradı</string>
|
||||
<string name="retry">Yeniden deneyin</string>
|
||||
<string name="select_server">Sunucu Seç</string>
|
||||
<string name="select_user">Kullanıcı Seç</string>
|
||||
<string name="show_debug_info">Hata ayıklama bilgisini göster</string>
|
||||
<string name="show_next_up_when">Sıradakini göster</string>
|
||||
<string name="show">Göster</string>
|
||||
<string name="shuffle">Karıştır</string>
|
||||
<string name="skip">Atla</string>
|
||||
<string name="sort_by_date_added">Eklenme tarihi</string>
|
||||
<string name="sort_by_date_episode_added">Bölüm Eklenme Tarihi</string>
|
||||
<string name="sort_by_date_played">Oynatma Tarihi</string>
|
||||
<string name="sort_by_date_released">Yayınlanma Tarihi</string>
|
||||
<string name="sort_by_name">Ad</string>
|
||||
<string name="sort_by_random">Rastgele</string>
|
||||
<string name="studios">Yapım Stüdyoları</string>
|
||||
<string name="submit">Gönder</string>
|
||||
<string name="subtitle_download_too_long">İndirme işlemi uzun sürüyor, oynatmayı yeniden başlatmanız gerekebilir</string>
|
||||
<string name="subtitle">Altyazı</string>
|
||||
<string name="subtitles">Altyazılar</string>
|
||||
<string name="suggestions">Öneriler</string>
|
||||
<string name="switch_servers">Sunucu değiştir</string>
|
||||
<string name="switch_user">Değiştir</string>
|
||||
<string name="top_unwatched">İzlenmemiş En İyiler</string>
|
||||
<string name="trailer">Fragman</string>
|
||||
<plurals name="trailers">
|
||||
<item quantity="one">Fragmanlar</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="tv_dvr_schedule">Kayıt Takvimi</string>
|
||||
<string name="tv_guide">Rehber</string>
|
||||
<string name="tv_season">Sezon</string>
|
||||
<string name="tv_seasons">Sezonlar</string>
|
||||
<plurals name="tv_shows">
|
||||
<item quantity="one">Diziler</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<string name="ui_interface">Arayüz</string>
|
||||
<string name="unknown">Bilinmiyor</string>
|
||||
<string name="updates">Güncellemeler</string>
|
||||
<string name="version">Sürüm</string>
|
||||
<string name="video_scale">Video Ölçeği</string>
|
||||
<string name="video">Video</string>
|
||||
<string name="videos">Videolar</string>
|
||||
<string name="watch_live">Canlı izle</string>
|
||||
<string name="years_old">%1$d yaşında</string>
|
||||
<string name="play_with_transcoding">Kod dönüştürerek oynat</string>
|
||||
<string name="media_information">Medya Bilgisi</string>
|
||||
<string name="show_clock">Saati göster</string>
|
||||
<string name="aired_episode_order">Yayınlanma Sırası</string>
|
||||
<string name="create_playlist">Yeni oynatma listesi oluştur</string>
|
||||
<string name="add_to_playlist">Oynatma listesine ekle</string>
|
||||
<string name="one_click_pause">Tek tıkla duraklat</string>
|
||||
<string name="one_click_pause_summary_on">Durdur/Oynat için orta tuşa basın</string>
|
||||
<string name="italic_font">Metni italik yap</string>
|
||||
<string name="font">Font</string>
|
||||
<string name="background">Arka plan</string>
|
||||
<string name="success">Başarılı</string>
|
||||
<string name="official_rating">Yaş Derecelendirmesi</string>
|
||||
<string name="runtime_sort">Süre</string>
|
||||
<string name="extras">Ekstralar</string>
|
||||
<plurals name="other_extras">
|
||||
<item quantity="one">Diğer Ekstralar</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="behind_the_scenes">
|
||||
<item quantity="one">Sahne Arkası</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="theme_songs">
|
||||
<item quantity="one">Tema şarkıları</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="theme_videos">
|
||||
<item quantity="one">Tema Videoları</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="clips">
|
||||
<item quantity="one">Klipler</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="deleted_scenes">
|
||||
<item quantity="one">Silinmiş Sahneler</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="interviews">
|
||||
<item quantity="one">Röportajlar</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="scenes">
|
||||
<item quantity="one">Sahneler</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="samples">
|
||||
<item quantity="one">Örnekler</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="featurettes">
|
||||
<item quantity="one">Tanıtımlar</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="shorts">
|
||||
<item quantity="one">Kısa Videolar</item>
|
||||
<item quantity="other"/>
|
||||
</plurals>
|
||||
<plurals name="downloads">
|
||||
<item quantity="one">%s indirme</item>
|
||||
<item quantity="other">%s indirilenler</item>
|
||||
</plurals>
|
||||
<plurals name="hours">
|
||||
<item quantity="one">%d saat</item>
|
||||
<item quantity="other">%d saat</item>
|
||||
</plurals>
|
||||
<plurals name="items">
|
||||
<item quantity="one">%d öğe</item>
|
||||
<item quantity="other">%d öğe</item>
|
||||
</plurals>
|
||||
<plurals name="seconds">
|
||||
<item quantity="one">%d saniye</item>
|
||||
<item quantity="other">%d saniye</item>
|
||||
</plurals>
|
||||
<string name="ac3_supported">AC3/Dolby Digital desteği</string>
|
||||
<string name="advanced_settings">Gelişmiş Ayarlar</string>
|
||||
<string name="advanced_ui">Gelişmiş Arayüz</string>
|
||||
<string name="app_theme">Uygulama teması</string>
|
||||
<string name="auto_check_for_updates">Güncellemeleri otomatik denetle</string>
|
||||
<string name="auto_play_next_delay">Sıradakini oynatma gecikmesi</string>
|
||||
<string name="auto_play_next">Sıradakini otomatik oynat</string>
|
||||
<string name="check_for_updates">Güncellemeleri kontrol et</string>
|
||||
<string name="combine_continue_next_summary">Yalnızca diziler için geçerlidir</string>
|
||||
<string name="combine_continue_next"><![CDATA[İzlemeye Devam Et ve Sıradaki Bölümleri Birleştir]]></string>
|
||||
<string name="direct_play_ass">ASS altyazıları doğrudan oynat</string>
|
||||
<string name="direct_play_pgs">PGS altyazıları doğrudan oynat</string>
|
||||
<string name="downmix_stereo">Her zaman Stereo\'ya dönüştür</string>
|
||||
<string name="ffmpeg_extension_pref">FFmpeg kod çözücü kullan</string>
|
||||
<string name="global_content_scale">Varsayılan içerik ölçeği</string>
|
||||
<string name="install_update">Güncellemeyi yükle</string>
|
||||
<string name="installed_version">Yüklü sürüm</string>
|
||||
<string name="max_homepage_items">Ana sayfa satırlarında maksimum öge sayısı</string>
|
||||
<string name="nav_drawer_pins_summary">Gösterilecek varsayılan ögeleri seçin, diğerleri gizlenecektir</string>
|
||||
<string name="nav_drawer_pins">Yan Menü Ögelerini Düzenle</string>
|
||||
<string name="nav_drawer_switch_on_focus_summary_off">Sayfalar arası geçiş için tıklayın</string>
|
||||
<string name="nav_drawer_switch_on_focus">Odaklanınca yan menü sayfalarını değiştir</string>
|
||||
<string name="pass_out_protection">Uyuyakalma Koruması</string>
|
||||
<string name="play_theme_music">Tema müziğini oynat</string>
|
||||
<string name="playback_overrides">Oynatmayı geçersiz kılanlar</string>
|
||||
<string name="remember_selected_tab">Seçili sekmeleri hatırla</string>
|
||||
<string name="rewatch_next_up">Sıradaki bölümlerde tekrar izlemeyi etkinleştir</string>
|
||||
<string name="seek_bar_steps">İlerleme çubuğu adımları</string>
|
||||
<string name="send_app_logs_summary">Hata ayıklama için yararlıdır</string>
|
||||
<string name="send_app_logs">Uygulama günlüklerini mevcut sunucuya gönder</string>
|
||||
<string name="send_crash_reports_summary">Son bağlanan sunucuya gönderilmeye çalışılacak</string>
|
||||
<string name="send_crash_reports">Hata raporlarını gönder</string>
|
||||
<string name="settings">Ayarlar</string>
|
||||
<string name="skip_back_on_resume_preference">Devam ederken videoyu geri sar</string>
|
||||
<string name="skip_back_preference">Geri atla</string>
|
||||
<string name="skip_commercials_behavior">Reklam geçme davranışı</string>
|
||||
<string name="skip_forward_preference">İleri atla</string>
|
||||
<string name="skip_intro_behavior">İntro atlama davranışı</string>
|
||||
<string name="skip_outro_behavior">Kapanış jeneriği atlama davranışı</string>
|
||||
<string name="skip_previews_behavior">Önizlemeyi atlama davranışı</string>
|
||||
<string name="skip_recap_behavior">Özet atlama davranışı</string>
|
||||
<string name="update_available">Güncelleme mevcut</string>
|
||||
<string name="update_url_summary">Uygulama güncellemelerini kontrol etmek için kullanılan URL</string>
|
||||
<string name="update_url">Güncelleme URL\'si</string>
|
||||
<string name="font_size">Yazı tipi boyutu</string>
|
||||
<string name="font_color">Yazı tipi rengi</string>
|
||||
<string name="font_opacity">Yazı tipi opaklığı</string>
|
||||
<string name="edge_style">Kenar stili</string>
|
||||
<string name="edge_color">Kenar rengi</string>
|
||||
<string name="background_opacity">Arka plan opaklığı</string>
|
||||
<string name="background_style">Arka plan stili</string>
|
||||
<string name="subtitle_style">Altyazı stili</string>
|
||||
<string name="background_color">Arka plan rengi</string>
|
||||
<string name="reset">Sıfırla</string>
|
||||
<string name="bold_font">Kalın yazı tipi</string>
|
||||
<string name="player_backend">Oynatıcı motoru</string>
|
||||
<string name="mpv_hardware_decoding">MPV: Donanım kod çözmeyi kullan</string>
|
||||
<string name="disable_if_crash">Çökme sorunu yaşıyorsanız devre dışı bırakın</string>
|
||||
<string name="mpv_options">MPV Ayarları</string>
|
||||
<string name="exoplayer_options">ExoPlayer Ayarları</string>
|
||||
<string name="skip_segment_unknown">Bölümü atla</string>
|
||||
<string name="skip_segment_commercial">Reklamları atla</string>
|
||||
<string name="skip_segment_preview">Önizlemeyi atla</string>
|
||||
<string name="skip_segment_recap">Özeti atla</string>
|
||||
<string name="skip_segment_outro">Kapanış jeneriğini atla</string>
|
||||
<string name="skip_segment_intro">İntroyu atla</string>
|
||||
<string name="played">Oynatıldı</string>
|
||||
<string name="filter">Filtre</string>
|
||||
<string name="year">Yıl</string>
|
||||
<string name="decade">Dönem</string>
|
||||
<string name="remove">Sil</string>
|
||||
<string name="mpv_use_gpu_next">MPV: gpu-next kullan</string>
|
||||
<string name="mpv_conf">mpv.conf dosyasını düzenle</string>
|
||||
<string name="discard_change">Değişiklikleri iptal et?</string>
|
||||
<string name="subtitle_margin">Kenar boşluğu</string>
|
||||
<string name="verbose_logging">Ayrıntılı günlükleme</string>
|
||||
<string name="enter_pin">PIN girin</string>
|
||||
<string name="sign_in_auto">Otomatik oturum aç</string>
|
||||
<string name="use_server_credentials">Sunucu üzerinden giriş yap</string>
|
||||
<string name="press_enter_to_confirm">Onaylamak için orta tuşa basın</string>
|
||||
<string name="require_pin_code">Profil için PIN iste</string>
|
||||
<string name="confirm_pin">PIN\'i onayla</string>
|
||||
<string name="incorrect">Hatalı</string>
|
||||
<string name="pin_too_short">PIN en az 4 haneli olmalıdır</string>
|
||||
<string name="will_remove_pin">PIN kaldırılacak</string>
|
||||
<string name="image_cache_size">Görüntü disk önbellek boyutu (MB)</string>
|
||||
<string name="view_options">Görünüm seçenekleri</string>
|
||||
<string name="columns">Sütun sayısı</string>
|
||||
<string name="spacing">Öğe aralığı</string>
|
||||
<string name="aspect_ratio">En Boy Oranı</string>
|
||||
<string name="show_details">Detayları göster</string>
|
||||
<string name="image_type">Görsel türü</string>
|
||||
<string name="dolby_vision">Dolby Vision</string>
|
||||
<string name="dolby_atmos">Dolby Atmos</string>
|
||||
<string name="cast_and_crew"><![CDATA[Oyuncular ve Ekip]]></string>
|
||||
<string name="guest_stars">Konuk oyuncular</string>
|
||||
<string name="edge_size">Kenar boyutu</string>
|
||||
<string name="refresh_rate_switching">Yenileme hızı değiştirme</string>
|
||||
<string name="automatic">Otomatik</string>
|
||||
<string name="username_or_password">Kullanıcı adı/şifre kullan</string>
|
||||
<string name="login">Oturum aç</string>
|
||||
<string name="general">Genel</string>
|
||||
<string name="container">Kapsayıcı</string>
|
||||
<string name="title">Başlık</string>
|
||||
<string name="codec">Codec</string>
|
||||
<string name="profile">Profil</string>
|
||||
<string name="level">Düzey</string>
|
||||
<string name="resolution">Çözünürlük</string>
|
||||
<string name="anamorphic">Anamorfik</string>
|
||||
<string name="interlaced">Geçmeli</string>
|
||||
<string name="framerate">Kare hızı</string>
|
||||
<string name="bit_depth">Bit derinliği</string>
|
||||
<string name="video_range">Video aralığı</string>
|
||||
<string name="video_range_type">Video aralık türü</string>
|
||||
<string name="color_space">Renk alanı</string>
|
||||
<string name="color_transfer">Renk aktarımı</string>
|
||||
<string name="color_primaries">Renk ön seçimleri</string>
|
||||
<string name="pixel_format">Piksel biçimi</string>
|
||||
<string name="ref_frames">Referans kareler</string>
|
||||
<string name="nal">NAL</string>
|
||||
<string name="language">Dil</string>
|
||||
<string name="layout">Düzen</string>
|
||||
<string name="channels">Kanallar</string>
|
||||
<string name="sample_rate">Örnekleme hızı</string>
|
||||
<string name="avc">AVC</string>
|
||||
<string name="yes">Evet</string>
|
||||
<string name="no">Hayır</string>
|
||||
<string name="sdr">SDR</string>
|
||||
<string name="hdr">HDR</string>
|
||||
<string name="hdr10">HDR10</string>
|
||||
<string name="hdr10_plus">HDR10+</string>
|
||||
<string name="hlg">HLG</string>
|
||||
<string name="bit_unit">bit</string>
|
||||
<string name="sample_rate_unit">Hz</string>
|
||||
<string name="show_titles">Başlıkları göster</string>
|
||||
<string name="live_tv_repeat">Tekrarla</string>
|
||||
<string name="favorite_channels_at_beginning">Favori kanalları en başta göster</string>
|
||||
<string name="sort_channels_recently_watched">Kanalları son izlenene göre sırala</string>
|
||||
<string name="color_code_programs">Programları türüne göre renklendir</string>
|
||||
<string name="subtitle_delay">Altyazı gecikmesi</string>
|
||||
<string name="backdrop_display">Görsel arka plan stili</string>
|
||||
<string name="resolution_switching">Çözünürlük değiştirme</string>
|
||||
<string name="local">Lokal</string>
|
||||
<string name="play_trailer">Fragmanı oynat</string>
|
||||
<string name="no_trailers">Fragman yok</string>
|
||||
<string name="clear_track_choices">Parça seçimlerini temizle</string>
|
||||
<string name="dts_x">DTS:X</string>
|
||||
<string name="dts_hd">DTS:HD</string>
|
||||
<string name="truehd">TrueHD</string>
|
||||
<string name="dolby_digital">DD</string>
|
||||
<string name="dolby_digital_plus">DD+</string>
|
||||
<string name="dts">DTS</string>
|
||||
<string name="force_dovi_profile_7">Dolby Vision Profil 7\'yi doğrudan oynat</string>
|
||||
<string name="force_dovi_profile_7_summary">Cihaz uyumluluk kontrollerini yoksay</string>
|
||||
<string name="discover">Keşfet</string>
|
||||
<string name="request">İstek</string>
|
||||
<string name="pending">Beklemede</string>
|
||||
<string name="seerr_integration">Seerr entegrasyonu</string>
|
||||
<string name="remove_seerr_server">Seerr Sunucusunu Kaldır</string>
|
||||
<string name="seerr_server_added">Seerr sunucusu eklendi</string>
|
||||
<string name="password">Şifre</string>
|
||||
<string name="username">Kullanıcı adı</string>
|
||||
<string name="url">URL</string>
|
||||
<string name="trending">Popüler</string>
|
||||
<string name="upcoming_movies">Yaklaşan Filmler</string>
|
||||
<string name="upcoming_tv">Yaklaşan Diziler</string>
|
||||
<string name="request_4k">4K olarak iste</string>
|
||||
<string name="software_decoding_av1">AV1 yazılımsal kod çözme</string>
|
||||
<string name="upgrade_mpv_toast">HDR içerikler hariç varsayılan oynatıcı artık MPV. \nBu ayarı ayarlar bölümünden değiştirebilirsiniz.</string>
|
||||
<string name="hdr_subtitle_style">HDR Altyazı Stili</string>
|
||||
<string name="image_subtitle_opacity">Altyazı Arka Plan Matlığı</string>
|
||||
<string name="brightness">Parlaklık</string>
|
||||
<string name="contrast">Kontrast</string>
|
||||
<string name="saturation">Doygunluk</string>
|
||||
<string name="hue">Ton</string>
|
||||
<string name="red">Kırmızı</string>
|
||||
<string name="green">Yeşil</string>
|
||||
<string name="blue">Mavi</string>
|
||||
<string name="blur">Bulanıklık</string>
|
||||
<string name="save_for_album">Albüme Kaydet</string>
|
||||
<string name="play_slideshow">Slayt Gösterisini Oynat</string>
|
||||
<string name="stop_slideshow">Slayt Gösterisini Durdur</string>
|
||||
<string name="slideshow_at_beginning">En baştan</string>
|
||||
<string name="no_more_images">Daha fazla fotoğraf yok</string>
|
||||
<string name="rotate_left">Sola döndür</string>
|
||||
<string name="rotate_right">Sağa döndür</string>
|
||||
<string name="zoom_in">Yakınlaştır</string>
|
||||
<string name="zoom_out">Uzaklaştır</string>
|
||||
<string name="slideshow_duration">Slayt Gösterisi Süresi</string>
|
||||
<string name="play_videos_during_slideshow">Slayt gösterisi sırasında videoları oynat</string>
|
||||
</resources>
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
<string name="confirm">Підтвердити</string>
|
||||
<string name="continue_watching">Продовжити перегляд</string>
|
||||
<string name="critic_rating">Оцінка критиків</string>
|
||||
<string name="decimal_seconds">%.1fсекунд</string>
|
||||
<string name="decimal_seconds">%.1f секунд</string>
|
||||
<string name="default_track">За замовчуванням</string>
|
||||
<string name="delete">Видалити</string>
|
||||
<string name="died">Помер</string>
|
||||
|
|
@ -453,4 +453,25 @@
|
|||
<string name="request_4k">Запит в 4К</string>
|
||||
<string name="software_decoding_av1">Програмне декодування AV1</string>
|
||||
<string name="upgrade_mpv_toast">MPV тепер є плеєром за замовчуванням, за винятком для HDR.\nВи можете змінити це в налаштуваннях.</string>
|
||||
<string name="hdr_subtitle_style">HDR субтитри</string>
|
||||
<string name="image_subtitle_opacity">Прозорість зображення заголовку</string>
|
||||
<string name="brightness">Яскравість</string>
|
||||
<string name="contrast">Контрастність</string>
|
||||
<string name="saturation">Насичення</string>
|
||||
<string name="hue">Відтінок</string>
|
||||
<string name="red">Червоний</string>
|
||||
<string name="green">Зелений</string>
|
||||
<string name="blue">Синій</string>
|
||||
<string name="blur">Розмиття</string>
|
||||
<string name="save_for_album">Зберегти до альбому</string>
|
||||
<string name="play_slideshow">Відтворити слайд-шоу</string>
|
||||
<string name="stop_slideshow">Зупинити слайд-шоу</string>
|
||||
<string name="slideshow_at_beginning">На початок</string>
|
||||
<string name="no_more_images">Фото більше немає</string>
|
||||
<string name="rotate_left">Повернути ліворуч</string>
|
||||
<string name="rotate_right">Повернути праворуч</string>
|
||||
<string name="zoom_in">Збільшити</string>
|
||||
<string name="zoom_out">Зменшити</string>
|
||||
<string name="slideshow_duration">Тривалість слайд-шоу</string>
|
||||
<string name="play_videos_during_slideshow">Відтворення відео під час слайд-шоу</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
<string name="confirm">确认</string>
|
||||
<string name="continue_watching">继续观看</string>
|
||||
<string name="critic_rating">影评人评分</string>
|
||||
<string name="decimal_seconds">%.1f 秒</string>
|
||||
<string name="decimal_seconds">%.2f 秒</string>
|
||||
<string name="default_track">默认</string>
|
||||
<string name="delete">删除</string>
|
||||
<string name="died">去世</string>
|
||||
|
|
@ -231,10 +231,10 @@
|
|||
<string name="send_crash_reports_summary">将尝试发送到最后连接的服务器</string>
|
||||
<string name="send_crash_reports">发送崩溃报告</string>
|
||||
<string name="settings">设置</string>
|
||||
<string name="skip_back_on_resume_preference">恢复播放时快退</string>
|
||||
<string name="skip_back_preference">快退</string>
|
||||
<string name="skip_back_on_resume_preference">恢复播放时自动向后跳过</string>
|
||||
<string name="skip_back_preference">向后跳过</string>
|
||||
<string name="skip_commercials_behavior">跳过广告方式</string>
|
||||
<string name="skip_forward_preference">快进</string>
|
||||
<string name="skip_forward_preference">向前跳过</string>
|
||||
<string name="skip_intro_behavior">跳过片头方式</string>
|
||||
<string name="skip_outro_behavior">跳过片尾方式</string>
|
||||
<string name="skip_previews_behavior">跳过预览方式</string>
|
||||
|
|
@ -390,4 +390,31 @@
|
|||
<string name="retry">重试</string>
|
||||
<string name="software_decoding_av1">AV1 软件解码</string>
|
||||
<string name="upgrade_mpv_toast">除 HDR 视频外,mpv 现在是默认播放器。\n您可以在设置中更改此设置。</string>
|
||||
<string name="hdr_subtitle_style">HDR 字幕样式</string>
|
||||
<string name="image_subtitle_opacity">图像字幕不透明度</string>
|
||||
<string name="brightness">亮度</string>
|
||||
<string name="contrast">对比度</string>
|
||||
<string name="saturation">饱和度</string>
|
||||
<string name="hue">色调</string>
|
||||
<string name="red">红色</string>
|
||||
<string name="green">绿色</string>
|
||||
<string name="blue">蓝色</string>
|
||||
<string name="blur">模糊</string>
|
||||
<string name="save_for_album">保存到相册</string>
|
||||
<string name="play_slideshow">播放幻灯片</string>
|
||||
<string name="stop_slideshow">停止幻灯片</string>
|
||||
<string name="slideshow_at_beginning">回到开头</string>
|
||||
<string name="no_more_images">没有更多照片</string>
|
||||
<string name="rotate_left">向左旋转</string>
|
||||
<string name="rotate_right">向右旋转</string>
|
||||
<string name="zoom_in">放大</string>
|
||||
<string name="zoom_out">缩小</string>
|
||||
<string name="slideshow_duration">幻灯片时长</string>
|
||||
<string name="play_videos_during_slideshow">幻灯片播放期间播放视频</string>
|
||||
<string name="send_media_info_log_to_server">将媒体信息日志发送到服务器</string>
|
||||
<plurals name="days">
|
||||
<item quantity="other">%s 天</item>
|
||||
</plurals>
|
||||
<string name="no_limit">无限制</string>
|
||||
<string name="max_days_next_up">即将播放中的最大天数</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -119,10 +119,10 @@
|
|||
<string name="update_url">更新的 URL</string>
|
||||
<string name="font_size">字體大小</string>
|
||||
<string name="font_color">字體顏色</string>
|
||||
<string name="font_opacity">字體透明度</string>
|
||||
<string name="font_opacity">字體不透明度</string>
|
||||
<string name="edge_style">邊框樣式</string>
|
||||
<string name="edge_color">邊框顏色</string>
|
||||
<string name="background_opacity">背景透明度</string>
|
||||
<string name="background_opacity">背景不透明度</string>
|
||||
<string name="background_style">背景樣式</string>
|
||||
<string name="subtitle_style">字幕樣式</string>
|
||||
<string name="background_color">背景顏色</string>
|
||||
|
|
@ -160,7 +160,7 @@
|
|||
<string name="confirm">確認</string>
|
||||
<string name="continue_watching">繼續觀看</string>
|
||||
<string name="critic_rating">影評人評分</string>
|
||||
<string name="decimal_seconds">%.1f 秒</string>
|
||||
<string name="decimal_seconds">%.2f 秒</string>
|
||||
<string name="default_track">預設</string>
|
||||
<string name="delete">刪除</string>
|
||||
<string name="died">去世</string>
|
||||
|
|
@ -389,4 +389,26 @@
|
|||
<string name="voice_error_timeout">語音辨識逾時</string>
|
||||
<string name="retry">重試</string>
|
||||
<string name="software_decoding_av1">AV1 軟體解碼</string>
|
||||
<string name="upgrade_mpv_toast">除了 HDR 影片外,MPV 已成為預設播放器。 \n您可以在設定中變更此設定。</string>
|
||||
<string name="hdr_subtitle_style">HDR 字幕樣式</string>
|
||||
<string name="contrast">對比</string>
|
||||
<string name="saturation">飽和度</string>
|
||||
<string name="hue">色調</string>
|
||||
<string name="red">紅色</string>
|
||||
<string name="green">綠色</string>
|
||||
<string name="blue">藍色</string>
|
||||
<string name="blur">模糊</string>
|
||||
<string name="save_for_album">存為相簿</string>
|
||||
<string name="play_slideshow">播放幻燈片</string>
|
||||
<string name="stop_slideshow">停播幻燈片</string>
|
||||
<string name="slideshow_at_beginning">從頭開始</string>
|
||||
<string name="no_more_images">已無更多照片</string>
|
||||
<string name="rotate_left">向左旋轉</string>
|
||||
<string name="rotate_right">向右旋轉</string>
|
||||
<string name="zoom_in">放大</string>
|
||||
<string name="zoom_out">縮小</string>
|
||||
<string name="slideshow_duration">幻燈片播放時間</string>
|
||||
<string name="play_videos_during_slideshow">幻燈片播放時播放影片</string>
|
||||
<string name="image_subtitle_opacity">圖形字幕不透明度</string>
|
||||
<string name="brightness">亮度</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -15,9 +15,9 @@ ksp = "2.3.5"
|
|||
coreKtx = "1.17.0"
|
||||
appcompat = "1.7.1"
|
||||
composeBom = "2026.01.01"
|
||||
mockk = "1.14.7"
|
||||
mockk = "1.14.9"
|
||||
robolectric = "4.16.1"
|
||||
multiplatformMarkdownRenderer = "0.39.1"
|
||||
multiplatformMarkdownRenderer = "0.39.2"
|
||||
okhttpBom = "5.3.2"
|
||||
programguide = "1.6.0"
|
||||
slf4j2Timber = "1.2"
|
||||
|
|
@ -35,14 +35,14 @@ material3AdaptiveNav3 = "1.0.0-alpha03"
|
|||
protobuf = "0.9.6"
|
||||
datastore = "1.2.0"
|
||||
kotlinx-serialization = "1.10.0"
|
||||
protobuf-javalite = "4.33.4"
|
||||
protobuf-javalite = "4.33.5"
|
||||
hilt = "2.58"
|
||||
room = "2.8.4"
|
||||
preferenceKtx = "1.2.1"
|
||||
tvprovider = "1.1.0"
|
||||
workRuntimeKtx = "2.11.1"
|
||||
paletteKtx = "1.0.0"
|
||||
kotlinxCoroutinesTest = "1.7.3"
|
||||
kotlinxCoroutinesTest = "1.10.2"
|
||||
coreTesting = "2.2.0"
|
||||
openapi-generator = "7.19.0"
|
||||
|
||||
|
|
|
|||
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
5
gradle/wrapper/gradle-wrapper.properties
vendored
5
gradle/wrapper/gradle-wrapper.properties
vendored
|
|
@ -1,6 +1,7 @@
|
|||
#Sat Sep 20 16:26:22 EDT 2025
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
|
|
|||
298
gradlew
vendored
298
gradlew
vendored
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env sh
|
||||
#!/bin/sh
|
||||
|
||||
#
|
||||
# Copyright 2015 the original author or authors.
|
||||
# Copyright © 2015-2021 the original authors.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
|
|
@ -15,81 +15,115 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
##############################################################################
|
||||
##
|
||||
## Gradle start up script for UN*X
|
||||
##
|
||||
#
|
||||
# Gradle start up script for POSIX generated by Gradle.
|
||||
#
|
||||
# Important for running:
|
||||
#
|
||||
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
|
||||
# noncompliant, but you have some other compliant shell such as ksh or
|
||||
# bash, then to run this script, type that shell name before the whole
|
||||
# command line, like:
|
||||
#
|
||||
# ksh Gradle
|
||||
#
|
||||
# Busybox and similar reduced shells will NOT work, because this script
|
||||
# requires all of these POSIX shell features:
|
||||
# * functions;
|
||||
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
||||
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
||||
# * compound commands having a testable exit status, especially «case»;
|
||||
# * various built-in commands including «command», «set», and «ulimit».
|
||||
#
|
||||
# Important for patching:
|
||||
#
|
||||
# (2) This script targets any POSIX shell, so it avoids extensions provided
|
||||
# by Bash, Ksh, etc; in particular arrays are avoided.
|
||||
#
|
||||
# The "traditional" practice of packing multiple parameters into a
|
||||
# space-separated string is a well documented source of bugs and security
|
||||
# problems, so this is (mostly) avoided, by progressively accumulating
|
||||
# options in "$@", and eventually passing that to Java.
|
||||
#
|
||||
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
|
||||
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
|
||||
# see the in-line comments for details.
|
||||
#
|
||||
# There are tweaks for specific operating systems such as AIX, CygWin,
|
||||
# Darwin, MinGW, and NonStop.
|
||||
#
|
||||
# (3) This script is generated from the Groovy template
|
||||
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# within the Gradle project.
|
||||
#
|
||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
# Attempt to set APP_HOME
|
||||
|
||||
# Resolve links: $0 may be a link
|
||||
PRG="$0"
|
||||
# Need this for relative symlinks.
|
||||
while [ -h "$PRG" ] ; do
|
||||
ls=`ls -ld "$PRG"`
|
||||
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||
if expr "$link" : '/.*' > /dev/null; then
|
||||
PRG="$link"
|
||||
else
|
||||
PRG=`dirname "$PRG"`"/$link"
|
||||
fi
|
||||
app_path=$0
|
||||
|
||||
# Need this for daisy-chained symlinks.
|
||||
while
|
||||
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
|
||||
[ -h "$app_path" ]
|
||||
do
|
||||
ls=$( ls -ld "$app_path" )
|
||||
link=${ls#*' -> '}
|
||||
case $link in #(
|
||||
/*) app_path=$link ;; #(
|
||||
*) app_path=$APP_HOME$link ;;
|
||||
esac
|
||||
done
|
||||
SAVED="`pwd`"
|
||||
cd "`dirname \"$PRG\"`/" >/dev/null
|
||||
APP_HOME="`pwd -P`"
|
||||
cd "$SAVED" >/dev/null
|
||||
|
||||
APP_NAME="Gradle"
|
||||
APP_BASE_NAME=`basename "$0"`
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||
# This is normally unused
|
||||
# shellcheck disable=SC2034
|
||||
APP_BASE_NAME=${0##*/}
|
||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD="maximum"
|
||||
MAX_FD=maximum
|
||||
|
||||
warn () {
|
||||
echo "$*"
|
||||
}
|
||||
} >&2
|
||||
|
||||
die () {
|
||||
echo
|
||||
echo "$*"
|
||||
echo
|
||||
exit 1
|
||||
}
|
||||
} >&2
|
||||
|
||||
# OS specific support (must be 'true' or 'false').
|
||||
cygwin=false
|
||||
msys=false
|
||||
darwin=false
|
||||
nonstop=false
|
||||
case "`uname`" in
|
||||
CYGWIN* )
|
||||
cygwin=true
|
||||
;;
|
||||
Darwin* )
|
||||
darwin=true
|
||||
;;
|
||||
MINGW* )
|
||||
msys=true
|
||||
;;
|
||||
NONSTOP* )
|
||||
nonstop=true
|
||||
;;
|
||||
case "$( uname )" in #(
|
||||
CYGWIN* ) cygwin=true ;; #(
|
||||
Darwin* ) darwin=true ;; #(
|
||||
MSYS* | MINGW* ) msys=true ;; #(
|
||||
NONSTOP* ) nonstop=true ;;
|
||||
esac
|
||||
|
||||
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||
CLASSPATH="\\\"\\\""
|
||||
|
||||
|
||||
# Determine the Java command to use to start the JVM.
|
||||
if [ -n "$JAVA_HOME" ] ; then
|
||||
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||
# IBM's JDK on AIX uses strange locations for the executables
|
||||
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||
JAVACMD=$JAVA_HOME/jre/sh/java
|
||||
else
|
||||
JAVACMD="$JAVA_HOME/bin/java"
|
||||
JAVACMD=$JAVA_HOME/bin/java
|
||||
fi
|
||||
if [ ! -x "$JAVACMD" ] ; then
|
||||
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||
|
|
@ -98,88 +132,120 @@ Please set the JAVA_HOME variable in your environment to match the
|
|||
location of your Java installation."
|
||||
fi
|
||||
else
|
||||
JAVACMD="java"
|
||||
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
JAVACMD=java
|
||||
if ! command -v java >/dev/null 2>&1
|
||||
then
|
||||
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
|
||||
Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
fi
|
||||
|
||||
# Increase the maximum file descriptors if we can.
|
||||
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
|
||||
MAX_FD_LIMIT=`ulimit -H -n`
|
||||
if [ $? -eq 0 ] ; then
|
||||
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||
MAX_FD="$MAX_FD_LIMIT"
|
||||
fi
|
||||
ulimit -n $MAX_FD
|
||||
if [ $? -ne 0 ] ; then
|
||||
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
||||
fi
|
||||
else
|
||||
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
|
||||
fi
|
||||
fi
|
||||
|
||||
# For Darwin, add options to specify how the application appears in the dock
|
||||
if $darwin; then
|
||||
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
||||
fi
|
||||
|
||||
# For Cygwin or MSYS, switch paths to Windows format before running java
|
||||
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
|
||||
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
||||
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
||||
|
||||
JAVACMD=`cygpath --unix "$JAVACMD"`
|
||||
|
||||
# We build the pattern for arguments to be converted via cygpath
|
||||
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
|
||||
SEP=""
|
||||
for dir in $ROOTDIRSRAW ; do
|
||||
ROOTDIRS="$ROOTDIRS$SEP$dir"
|
||||
SEP="|"
|
||||
done
|
||||
OURCYGPATTERN="(^($ROOTDIRS))"
|
||||
# Add a user-defined pattern to the cygpath arguments
|
||||
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
|
||||
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
|
||||
fi
|
||||
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||
i=0
|
||||
for arg in "$@" ; do
|
||||
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
|
||||
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
|
||||
|
||||
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
|
||||
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
|
||||
else
|
||||
eval `echo args$i`="\"$arg\""
|
||||
fi
|
||||
i=`expr $i + 1`
|
||||
done
|
||||
case $i in
|
||||
0) set -- ;;
|
||||
1) set -- "$args0" ;;
|
||||
2) set -- "$args0" "$args1" ;;
|
||||
3) set -- "$args0" "$args1" "$args2" ;;
|
||||
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
||||
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
||||
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
||||
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
||||
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
||||
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
||||
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||
case $MAX_FD in #(
|
||||
max*)
|
||||
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
||||
# shellcheck disable=SC2039,SC3045
|
||||
MAX_FD=$( ulimit -H -n ) ||
|
||||
warn "Could not query maximum file descriptor limit"
|
||||
esac
|
||||
case $MAX_FD in #(
|
||||
'' | soft) :;; #(
|
||||
*)
|
||||
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
||||
# shellcheck disable=SC2039,SC3045
|
||||
ulimit -n "$MAX_FD" ||
|
||||
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||
esac
|
||||
fi
|
||||
|
||||
# Escape application args
|
||||
save () {
|
||||
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
|
||||
echo " "
|
||||
}
|
||||
APP_ARGS=`save "$@"`
|
||||
# Collect all arguments for the java command, stacking in reverse order:
|
||||
# * args from the command line
|
||||
# * the main class name
|
||||
# * -classpath
|
||||
# * -D...appname settings
|
||||
# * --module-path (only if needed)
|
||||
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
|
||||
|
||||
# Collect all arguments for the java command, following the shell quoting and substitution rules
|
||||
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
|
||||
# For Cygwin or MSYS, switch paths to Windows format before running java
|
||||
if "$cygwin" || "$msys" ; then
|
||||
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
|
||||
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
|
||||
|
||||
JAVACMD=$( cygpath --unix "$JAVACMD" )
|
||||
|
||||
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||
for arg do
|
||||
if
|
||||
case $arg in #(
|
||||
-*) false ;; # don't mess with options #(
|
||||
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
|
||||
[ -e "$t" ] ;; #(
|
||||
*) false ;;
|
||||
esac
|
||||
then
|
||||
arg=$( cygpath --path --ignore --mixed "$arg" )
|
||||
fi
|
||||
# Roll the args list around exactly as many times as the number of
|
||||
# args, so each arg winds up back in the position where it started, but
|
||||
# possibly modified.
|
||||
#
|
||||
# NB: a `for` loop captures its iteration list before it begins, so
|
||||
# changing the positional parameters here affects neither the number of
|
||||
# iterations, nor the values presented in `arg`.
|
||||
shift # remove old arg
|
||||
set -- "$@" "$arg" # push replacement arg
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||
|
||||
# Collect all arguments for the java command:
|
||||
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
||||
# and any embedded shellness will be escaped.
|
||||
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
|
||||
# treated as '${Hostname}' itself on the command line.
|
||||
|
||||
set -- \
|
||||
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||
-classpath "$CLASSPATH" \
|
||||
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
|
||||
"$@"
|
||||
|
||||
# Stop when "xargs" is not available.
|
||||
if ! command -v xargs >/dev/null 2>&1
|
||||
then
|
||||
die "xargs is not available"
|
||||
fi
|
||||
|
||||
# Use "xargs" to parse quoted args.
|
||||
#
|
||||
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
||||
#
|
||||
# In Bash we could simply go:
|
||||
#
|
||||
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
|
||||
# set -- "${ARGS[@]}" "$@"
|
||||
#
|
||||
# but POSIX shell has neither arrays nor command substitution, so instead we
|
||||
# post-process each arg (as a line of input to sed) to backslash-escape any
|
||||
# character that might be a shell metacharacter, then use eval to reverse
|
||||
# that process (while maintaining the separation between arguments), and wrap
|
||||
# the whole thing up as a single "set" statement.
|
||||
#
|
||||
# This will of course break if any of these variables contains a newline or
|
||||
# an unmatched quote.
|
||||
#
|
||||
|
||||
eval "set -- $(
|
||||
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
|
||||
xargs -n1 |
|
||||
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
|
||||
tr '\n' ' '
|
||||
)" '"$@"'
|
||||
|
||||
exec "$JAVACMD" "$@"
|
||||
|
|
|
|||
41
gradlew.bat
vendored
41
gradlew.bat
vendored
|
|
@ -13,8 +13,10 @@
|
|||
@rem See the License for the specific language governing permissions and
|
||||
@rem limitations under the License.
|
||||
@rem
|
||||
@rem SPDX-License-Identifier: Apache-2.0
|
||||
@rem
|
||||
|
||||
@if "%DEBUG%" == "" @echo off
|
||||
@if "%DEBUG%"=="" @echo off
|
||||
@rem ##########################################################################
|
||||
@rem
|
||||
@rem Gradle startup script for Windows
|
||||
|
|
@ -25,7 +27,8 @@
|
|||
if "%OS%"=="Windows_NT" setlocal
|
||||
|
||||
set DIRNAME=%~dp0
|
||||
if "%DIRNAME%" == "" set DIRNAME=.
|
||||
if "%DIRNAME%"=="" set DIRNAME=.
|
||||
@rem This is normally unused
|
||||
set APP_BASE_NAME=%~n0
|
||||
set APP_HOME=%DIRNAME%
|
||||
|
||||
|
|
@ -40,13 +43,13 @@ if defined JAVA_HOME goto findJavaFromJavaHome
|
|||
|
||||
set JAVA_EXE=java.exe
|
||||
%JAVA_EXE% -version >NUL 2>&1
|
||||
if "%ERRORLEVEL%" == "0" goto execute
|
||||
if %ERRORLEVEL% equ 0 goto execute
|
||||
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
echo.
|
||||
echo Please set the JAVA_HOME variable in your environment to match the
|
||||
echo location of your Java installation.
|
||||
echo. 1>&2
|
||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
|
||||
echo. 1>&2
|
||||
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||
echo location of your Java installation. 1>&2
|
||||
|
||||
goto fail
|
||||
|
||||
|
|
@ -56,32 +59,34 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
|||
|
||||
if exist "%JAVA_EXE%" goto execute
|
||||
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||
echo.
|
||||
echo Please set the JAVA_HOME variable in your environment to match the
|
||||
echo location of your Java installation.
|
||||
echo. 1>&2
|
||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
|
||||
echo. 1>&2
|
||||
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||
echo location of your Java installation. 1>&2
|
||||
|
||||
goto fail
|
||||
|
||||
:execute
|
||||
@rem Setup the command line
|
||||
|
||||
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||
set CLASSPATH=
|
||||
|
||||
|
||||
@rem Execute Gradle
|
||||
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
|
||||
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
|
||||
|
||||
:end
|
||||
@rem End local scope for the variables with windows NT shell
|
||||
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||
if %ERRORLEVEL% equ 0 goto mainEnd
|
||||
|
||||
:fail
|
||||
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||
rem the _cmd.exe /c_ return code!
|
||||
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||
exit /b 1
|
||||
set EXIT_CODE=%ERRORLEVEL%
|
||||
if %EXIT_CODE% equ 0 set EXIT_CODE=1
|
||||
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
|
||||
exit /b %EXIT_CODE%
|
||||
|
||||
:mainEnd
|
||||
if "%OS%"=="Windows_NT" endlocal
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
{
|
||||
"groupName": "AGP",
|
||||
"matchPackageNames": [
|
||||
"com.android.application:**"
|
||||
"com.android.application**"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue