Commit Graph

724 Commits

Author SHA1 Message Date
Kityn ca83f89443 Translated using Weblate (Polish)
Currently translated at 100.0% (333 of 333 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/pl/
2024-08-12 01:27:12 -04:00
VOLO Digital Agency fde0cf9d9d Translated using Weblate (Swedish)
Currently translated at 89.1% (297 of 333 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/sv/
2024-08-12 01:27:12 -04:00
Filippo Pesavento f5985490bf Translated using Weblate (Italian)
Currently translated at 99.6% (314 of 315 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/it/
2024-08-11 18:01:30 -04:00
Joe e4fd98c244
[tvOS] Settings Cleanup (#1163)
* Settings Cleanup. Replace strings with labels. Enforce the same font. Ensure Forms don't get clipped by their boundries. Create consistent, reusable button sizing/coloring. Apply to all Settings Pages.

* Remove custom Button/Form styling in exchange for just using .scrollClipDisabled()

* Swap back to Jellyfin Purple from Purple.

* Remove Check Button. Check all Section Inits where possible. Make Server Details Server non-focusable.

Create a new menu for Server Details selection. This is a WIP awaiting feedback from https://github.com/jellyfin/Swiftfin/pull/1163#discussion_r1705957885

---------

Co-authored-by: Joseph Kribs <joseph@kribs.net>
2024-08-06 20:56:24 -06:00
oxixes 0ae1324534 Translated using Weblate (Spanish)
Currently translated at 100.0% (315 of 315 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/es/
2024-08-06 21:48:57 -04:00
queeup 64b22d4e36 Translated using Weblate (Turkish)
Currently translated at 100.0% (315 of 315 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/tr/
2024-08-06 13:29:02 -04:00
Justin 4427808215 Translated using Weblate (German)
Currently translated at 100.0% (315 of 315 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/de/
2024-08-04 12:41:32 -04:00
Simon Caron 2bb3728ae6 Translated using Weblate (French)
Currently translated at 100.0% (315 of 315 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-08-04 12:41:32 -04:00
Germain Carré fe3ebeddc6 Translated using Weblate (French)
Currently translated at 100.0% (315 of 315 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-08-04 12:41:32 -04:00
Micka149 a0344dc26c Translated using Weblate (Russian)
Currently translated at 100.0% (315 of 315 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ru/
2024-07-31 08:41:31 -04:00
Chen Chengxuan 4d53609b6b Translated using Weblate (Chinese (Simplified))
Currently translated at 95.8% (302 of 315 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/zh_Hans/
2024-07-31 08:41:31 -04:00
Kityn 29fad2458b Translated using Weblate (Polish)
Currently translated at 100.0% (315 of 315 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/pl/
2024-07-26 02:41:31 -04:00
stanol 4d1956fda5 Translated using Weblate (Ukrainian)
Currently translated at 100.0% (315 of 315 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/uk/
2024-07-26 02:41:31 -04:00
Bas 3af6c5ba2b Translated using Weblate (Dutch)
Currently translated at 100.0% (315 of 315 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/nl/
2024-07-24 13:52:03 -04:00
Justin 254af5d9af Translated using Weblate (German)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/de/
2024-07-24 11:49:52 -04:00
Joe 56bd62db80
App-Wide Bitrate Limit (#1147)
* Creation of bitrate selections that mirror Jellyfin-Web. The goal is to eventually allow for these same selections to be available for usage in the Player itself to set the max bitrate per playback session. This App-Wide setting is for things like preserving data (Mobile) or for areas that have perpetually have low bandwidth (AppleTV). These settings currently default to 'Auto' which is the current limit of 360,000,000 bps / 360 mpbs. I have added a spot in BaseItemDTO+VideoPlayerViewModel to get the smaller amount between 360 Mpbs and the App Maximum Setting. This exists so I can go back and update this to get the Minumum between the Player Session max bitrate and the App Setting max bitrate.

Test on iPhone 10S, AppleTV 3rd Gen, and the iPhone 15 Pro via enumulator.

* Fix Bitrate naming (360p vs 480p) and remove the setting nested in a second section.

* Creation of a Maximum setting with 360mbps and an auto that gets the bitrate at playback.

* Remove comments for code where I want to eventually put it for better clarify

* Linting fixes

* Change the Playback Bitrate to an Int from a String since the Bitrate is valuable but the string isn't. Run the SwiftFormat on the maxBitrate function.

* Migrate the settings to their own menu with both the bitrate and the optional test size when auto is used.

* Creation of an enum filterValues function for Bitrate. This way, the selection on the Player Overlay (eventually) can be filtered to only include bitrates that are less than or equal to the App Setting for Maximum Bitrate. This should help prevent confusion / remove bandwidth conflicts.

The eventual Player Overlay setting should never conflict with the App-Wide Setting and should only offer options that are less than the App-Wide Setting.

* Change the videoPlayerViewModel to take parameters instead of defaults. Move the defaults up one level to be called there. Split the bitrate test from the getMaxBitrate to better guard against dividing against 0 and also split out the logic to be easier to read.

Change the PlaybackBitrate filter to always include Auto and, when auto, include ALL bitrates. This filter is not currently used.

* Remove the PlaybackBitrate FilterValues since this is not needed and will be created ad-hoc.

* Update the bitrateTestDuration verbage to better reflect that you're changing the size of the bitrate test and not just increasing the duration. Re-use the existing largest to smallest labels since there isn't a ton of benefit using "Longest to Shortest" so this should re-use existing localization. Comment the Labels.

No functional changes. Only an update to labels.

* Delete the Bitrate.json file but retain the Resources folder.

* Remove Resource Folder.

---------

Co-authored-by: Joe Kribs <joseph@kribs.net>
2024-07-23 06:18:28 -05:00
bartfaik04 5296404038 Translated using Weblate (Hungarian)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/hu/
2024-07-14 22:14:44 -04:00
Mario Paljusevic 18f0b40622 Translated using Weblate (Croatian)
Currently translated at 65.5% (194 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/hr/
2024-07-12 09:25:18 -04:00
Tifeko 42a895e9fa Translated using Weblate (Dutch)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/nl/
2024-07-04 09:41:30 -04:00
Yuwada Solway 439cd85c77 Translated using Weblate (Thai)
Currently translated at 98.6% (292 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/th/
2024-07-01 04:41:29 -04:00
Ghostdesu 4c17ea251b Translated using Weblate (Ukrainian)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/uk/
2024-06-20 15:41:28 -04:00
bene toffix 30cd161aa2 Translated using Weblate (Catalan)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ca/
2024-06-19 13:14:40 -04:00
Frederik 014f96458a Translated using Weblate (Danish)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/da/
2024-06-19 07:41:28 -04:00
DJSweder 0c13b7bab9 Translated using Weblate (Czech)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/cs/
2024-06-19 07:41:28 -04:00
Jean Franz db30ffcbd3 Translated using Weblate (Portuguese (Brazil))
Currently translated at 99.6% (295 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/pt_BR/
2024-06-17 12:43:48 -04:00
Adorján 33f3610c4d Translated using Weblate (Hungarian)
Currently translated at 99.3% (294 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/hu/
2024-06-17 12:43:48 -04:00
Jean Franz 7f6faa00ac Translated using Weblate (Portuguese)
Currently translated at 99.6% (295 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/pt/
2024-06-17 12:43:48 -04:00
Bas 9b1105b1c3 Translated using Weblate (Dutch)
Currently translated at 99.3% (294 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/nl/
2024-06-17 12:43:48 -04:00
Simon Caron 3eaec42f90 Translated using Weblate (French)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-06-14 21:11:27 -04:00
Chris Lee 1d284c800d Translated using Weblate (Norwegian Bokmål)
Currently translated at 94.5% (280 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/nb_NO/
2024-06-11 18:39:04 -04:00
Turtleindeed 4be6a5102b Translated using Weblate (Norwegian Bokmål)
Currently translated at 94.5% (280 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/nb_NO/
2024-06-11 18:39:04 -04:00
Simon Caron 00276cafe3 Translated using Weblate (French)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-06-11 18:39:04 -04:00
Sprisa c9aa3b89da Translated using Weblate (Finnish)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fi/
2024-06-11 14:17:27 -04:00
Sprisa b5d75b9b77 Translated using Weblate (Swedish)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/sv/
2024-06-11 14:17:27 -04:00
Aritra1235 e0e143d9ad Translated using Weblate (Hindi)
Currently translated at 9.7% (29 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/hi/
2024-06-10 14:41:30 -04:00
DJSweder 82a5ba56ef Translated using Weblate (Czech)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/cs/
2024-06-10 14:41:30 -04:00
Simon Caron 3433cd02e0 Translated using Weblate (French)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-06-10 14:41:30 -04:00
alex 9ebcbe9728 Translated using Weblate (Greek)
Currently translated at 49.6% (147 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/el/
2024-06-08 17:08:21 -04:00
Edmond 9efb659da4 Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/zh_Hant/
2024-06-07 08:55:17 -04:00
Edmond 51dfac3df6 Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/zh_Hans/
2024-06-07 08:55:17 -04:00
queeup d6999bc41b Translated using Weblate (Turkish)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/tr/
2024-06-04 20:10:39 -04:00
Justin c596a18064 Translated using Weblate (German)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/de/
2024-06-03 21:37:59 -04:00
nextlooper42 59afafdc00 Translated using Weblate (Slovak)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/sk/
2024-06-03 07:31:53 -04:00
cooper standard 445be004ac Translated using Weblate (Spanish)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/es/
2024-06-02 00:21:40 -04:00
wfwjcl c90d2d7156 Translated using Weblate (Spanish)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/es/
2024-06-02 00:21:40 -04:00
cooper standard 3a5b185ceb Translated using Weblate (Spanish)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/es/
2024-06-02 00:10:27 -04:00
Kityn f6ce1c7331 Translated using Weblate (Polish)
Currently translated at 100.0% (296 of 296 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/pl/
2024-06-01 12:00:50 -04:00
Tin Nguyen 3f0ddf61c8 Translated using Weblate (Vietnamese)
Currently translated at 49.3% (144 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/vi/
2024-05-31 11:56:51 -04:00
Joe 25b30b5436
Create Library Alpha Picker (#980) 2024-05-26 15:07:13 -06:00
DJSweder 142b881ea9 Translated using Weblate (Czech)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/cs/
2024-05-26 02:41:27 -04:00
Germán Pajarero 0a16437f50 Translated using Weblate (Esperanto)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/eo/
2024-05-16 05:29:07 -04:00
Germán Pajarero 0a3e91bbbf Translated using Weblate (Esperanto)
Currently translated at 71.5% (209 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/eo/
2024-05-15 18:15:12 -04:00
musenq e9baf2dd4f Translated using Weblate (Japanese)
Currently translated at 48.9% (143 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ja/
2024-05-08 04:45:59 -04:00
Andrea 823c06e1e9 Translated using Weblate (Italian)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/it/
2024-05-07 14:13:23 -04:00
Tommy 3f7719b234 Translated using Weblate (Norwegian Bokmål)
Currently translated at 92.8% (271 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/nb_NO/
2024-05-05 15:44:38 -04:00
musenq dd0c98ab98 Translated using Weblate (Japanese)
Currently translated at 47.6% (139 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ja/
2024-05-05 04:36:42 -04:00
HiPotionQ8 36f82ab5f9 Translated using Weblate (Arabic)
Currently translated at 85.9% (251 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ar/
2024-05-05 04:36:41 -04:00
HiPotionQ8 f958fa3f39 Translated using Weblate (Arabic)
Currently translated at 71.2% (208 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ar/
2024-05-04 13:06:07 -04:00
HanHwanHo 936245e414 Translated using Weblate (Korean)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ko/
2024-04-27 12:07:27 -04:00
SupertCZ 9dc6303388 Translated using Weblate (Czech)
Currently translated at 98.6% (288 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/cs/
2024-04-27 06:47:46 -04:00
DJSweder 73edea724c Translated using Weblate (Czech)
Currently translated at 85.9% (251 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/cs/
2024-04-26 11:38:55 -04:00
whisleywang 3ba922b4bd Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/zh_Hant/
2024-04-24 04:22:34 -04:00
MrJinchou c58d6c72c3 Translated using Weblate (Luxembourgish)
Currently translated at 2.3% (7 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/lb/
2024-04-23 19:24:40 -04:00
wfwjcl 84e5fc78da Translated using Weblate (Spanish)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/es/
2024-04-21 08:31:34 -04:00
Víctor Vázquez 3c52c5cba9 Translated using Weblate (Spanish)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/es/
2024-04-21 08:31:34 -04:00
Jaakko Rantamäki 16303c9bd4 Translated using Weblate (Finnish)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fi/
2024-04-19 04:48:54 -04:00
Jaakko Rantamäki 4f0766d242 Added translation using Weblate (Finnish) 2024-04-18 04:53:26 -04:00
ROYJohan08 d65c4e8454 Translated using Weblate (French)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-04-10 01:25:09 -04:00
Stefan Kolevski 4b30f8a405 Translated using Weblate (Macedonian)
Currently translated at 18.4% (54 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/mk/
2024-04-05 11:38:05 -04:00
nextlooper42 6c0ccddbd1 Translated using Weblate (Slovak)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/sk/
2024-04-02 14:36:10 -04:00
Stefan Kolevski bda46325b3 Translated using Weblate (Macedonian)
Currently translated at 0.6% (2 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/mk/
2024-04-02 10:38:02 -04:00
Stefan Kolevski 925d053e5c Added translation using Weblate (Macedonian) 2024-04-01 10:31:58 -04:00
Oatavandi 4ed9e52d1e Translated using Weblate (Tamil)
Currently translated at 67.4% (197 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ta/
2024-04-01 02:42:29 -04:00
nextlooper42 0d6e71b9c5 Translated using Weblate (Slovak)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/sk/
2024-03-30 20:12:42 -04:00
Tobias Mitala f87cdaf0d0 Translated using Weblate (Slovak)
Currently translated at 98.9% (289 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/sk/
2024-03-28 18:56:13 -04:00
Fra146 11fc23cab9 Translated using Weblate (Italian)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/it/
2024-03-15 13:38:03 -04:00
Nir Israel Hen 098c21b80b Translated using Weblate (Hebrew)
Currently translated at 99.6% (291 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/he/
2024-03-15 13:38:03 -04:00
Nir Israel Hen b2711b453c Translated using Weblate (Hebrew)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/he/
2024-03-14 11:38:02 -04:00
Blackspirits e02c3d05d9 Translated using Weblate (Portuguese)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/pt/
2024-03-09 18:38:04 -05:00
Blackspirits 8984cc8835 Translated using Weblate (Portuguese)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/pt/
2024-03-08 18:20:18 -05:00
1030283726 8418a3e8ba Translated using Weblate (Chinese (Traditional))
Currently translated at 91.7% (268 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/zh_Hant/
2024-02-29 04:17:23 -05:00
Siu Chi Wang f78788dce0 Translated using Weblate (Chinese (Traditional))
Currently translated at 90.7% (265 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/zh_Hant/
2024-02-28 05:37:13 -05:00
Leonardo Lopes da Luz 42afa0e717 Translated using Weblate (Portuguese)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/pt/
2024-02-26 20:37:12 -05:00
Jollerprutt 2cc07f1ff6 Translated using Weblate (Swedish)
Currently translated at 96.5% (282 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/sv/
2024-02-25 15:37:11 -05:00
Anže Kos 1fb05f6f9f Translated using Weblate (Slovenian)
Currently translated at 84.2% (246 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/sl/
2024-02-22 05:37:11 -05:00
Malthe Hensberg 8307ac501b Translated using Weblate (Danish)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/da/
2024-02-17 14:37:10 -05:00
C2gl bb172456bd Translated using Weblate (Dutch)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/nl/
2024-02-12 16:30:39 -05:00
Thomas Schwery 6d8c999a7a Translated using Weblate (French)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-01-30 14:30:34 -05:00
Kévin LEBLOND 41cdb1aae4 Translated using Weblate (Pashto)
Currently translated at 18.4% (54 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ps/
2024-01-28 15:30:35 -05:00
Daqwayne 85d5ad28d1 Translated using Weblate (Vietnamese)
Currently translated at 44.5% (130 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/vi/
2024-01-28 15:30:35 -05:00
Kévin LEBLOND d4f20deadd Translated using Weblate (French)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-01-28 15:30:35 -05:00
Malang Jan ff229a5c38 Translated using Weblate (Pashto)
Currently translated at 18.1% (53 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ps/
2024-01-24 10:30:33 -05:00
Mikael Fredriksson ae47e67eab Translated using Weblate (Swedish)
Currently translated at 95.5% (279 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/sv/
2024-01-24 10:30:32 -05:00
Malang Jan 4a3a59acd1 Added translation using Weblate (Pashto) 2024-01-23 07:43:59 -05:00
queeup 28956c8e12 Translated using Weblate (Turkish)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/tr/
2024-01-23 01:22:42 -05:00
Yağız Işkırık d0301fd5f1 Translated using Weblate (Turkish)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/tr/
2024-01-22 01:37:27 -05:00
Yağız Işkırık f403b55d77 Translated using Weblate (Turkish)
Currently translated at 99.6% (291 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/tr/
2024-01-21 10:40:21 -05:00
Yağız Işkırık 637a6a91fb Translated using Weblate (Turkish)
Currently translated at 99.6% (291 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/tr/
2024-01-21 10:40:21 -05:00
Emily e263cc6dca Translated using Weblate (Turkish)
Currently translated at 99.6% (291 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/tr/
2024-01-21 10:40:21 -05:00
Mikael Fredriksson 9434a08a14 Translated using Weblate (Swedish)
Currently translated at 95.2% (278 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/sv/
2024-01-15 22:30:29 -05:00
Lukáš Kucharczyk f44b040370 Translated using Weblate (Czech)
Currently translated at 82.1% (240 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/cs/
2024-01-14 09:30:30 -05:00
John Ricketts 29356bfa82 Translated using Weblate (Swedish)
Currently translated at 92.8% (271 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/sv/
2024-01-14 09:30:30 -05:00
John Ricketts 9ac1e2b0f3 Translated using Weblate (Spanish)
Currently translated at 89.7% (262 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/es/
2024-01-14 09:30:30 -05:00
Yiwei Yu e0d3e824dd Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/zh_Hans/
2024-01-14 09:30:30 -05:00
Chris Lee f4f11c71d8 Translated using Weblate (Norwegian Nynorsk)
Currently translated at 2.0% (6 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/nn/
2024-01-12 16:39:51 -05:00
Chris Lee 2e874587ae Translated using Weblate (Norwegian Bokmål)
Currently translated at 92.4% (270 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/nb_NO/
2024-01-12 16:39:51 -05:00
MCTVR 51639094c9 Translated using Weblate (Chinese (Simplified))
Currently translated at 99.6% (291 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/zh_Hans/
2024-01-12 16:39:50 -05:00
LI CHENXI 402ed42a4f Translated using Weblate (Chinese (Simplified))
Currently translated at 99.6% (291 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/zh_Hans/
2024-01-12 16:39:50 -05:00
Yiwei Yu b3fa5e96b3 Translated using Weblate (Chinese (Simplified))
Currently translated at 99.6% (291 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/zh_Hans/
2024-01-12 16:39:50 -05:00
Chris Lee 3dd1c77d11 Added translation using Weblate (Norwegian Nynorsk) 2024-01-11 21:54:11 -05:00
bene toffix 7cf1f69555 Translated using Weblate (Catalan)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ca/
2024-01-09 09:30:28 -05:00
Alberto A 2e2add17ab Translated using Weblate (Italian)
Currently translated at 97.2% (284 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/it/
2024-01-08 01:01:06 -05:00
Nevylish 3791b36001 Translated using Weblate (French)
Currently translated at 97.6% (285 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-01-07 08:30:27 -05:00
Thibault b9f8e521f9 Translated using Weblate (French)
Currently translated at 97.6% (285 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-01-07 08:30:26 -05:00
wfwjcl 53be9b1136 Translated using Weblate (Spanish)
Currently translated at 89.7% (262 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/es/
2024-01-07 08:30:26 -05:00
tan a1b432262a Translated using Weblate (Thai)
Currently translated at 98.2% (287 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/th/
2024-01-04 03:30:29 -05:00
Adam K 92105c7e57 Translated using Weblate (Greek)
Currently translated at 50.0% (146 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/el/
2024-01-04 03:30:26 -05:00
Adrien d59c25662a Translated using Weblate (French)
Currently translated at 92.1% (269 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-01-04 03:30:26 -05:00
Thomas Schwery 7f14b5d83e Translated using Weblate (French)
Currently translated at 92.1% (269 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-01-04 03:30:26 -05:00
LI CHENXI 70298b3c82 Translated using Weblate (Chinese (Simplified))
Currently translated at 86.9% (254 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/zh_Hans/
2024-01-04 03:30:26 -05:00
tan 946353eb5c Added translation using Weblate (Thai) 2024-01-02 07:49:28 -05:00
bene toffix aac809767d Translated using Weblate (Catalan)
Currently translated at 74.6% (218 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ca/
2024-01-02 04:44:49 -05:00
Deleted User ea21f90e80 Translated using Weblate (Dutch)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/nl/
2024-01-02 04:44:49 -05:00
Tycho Brouwer acfa930090 Translated using Weblate (Dutch)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/nl/
2024-01-02 04:44:49 -05:00
Adrien 23b6f24d7f Translated using Weblate (French)
Currently translated at 90.7% (265 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-01-02 04:44:49 -05:00
Thomas Schwery e9c68ff7ce Translated using Weblate (French)
Currently translated at 90.7% (265 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2024-01-02 04:44:49 -05:00
3lo 854044b4e4 Translated using Weblate (Arabic)
Currently translated at 70.8% (207 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ar/
2023-12-31 09:30:24 -05:00
queeup 1079df40f9 Translated using Weblate (Turkish)
Currently translated at 97.9% (286 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/tr/
2023-12-28 12:30:24 -05:00
Csaba 01132f937d Translated using Weblate (Hungarian)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/hu/
2023-12-28 12:30:24 -05:00
ds256 7e5b4cc498 Translated using Weblate (German)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/de/
2023-12-28 12:30:23 -05:00
Anthony Lavado 9d5ac90523 Deleted translation using Weblate (English (Old)) 2023-12-27 14:37:50 -05:00
Ethan Pippin 22acbefaa0 Added translation using Weblate (English (Old)) 2023-12-27 13:30:33 -05:00
ds256 5b08b3fe5b Translated using Weblate (German)
Currently translated at 93.1% (272 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/de/
2023-12-26 10:39:56 -05:00
FGH c7d52998ae Translated using Weblate (German)
Currently translated at 93.1% (272 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/de/
2023-12-26 10:39:56 -05:00
Mladen N ca1560cddb Translated using Weblate (Bulgarian)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/bg/
2023-12-25 05:30:28 -05:00
queeup f95365b5fa Translated using Weblate (Turkish)
Currently translated at 96.2% (281 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/tr/
2023-12-25 05:30:24 -05:00
Oliver Bastholm f73a085843 Translated using Weblate (Danish)
Currently translated at 82.1% (240 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/da/
2023-12-25 05:30:23 -05:00
Adrien 88ed82c480 Translated using Weblate (French)
Currently translated at 89.3% (261 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2023-12-25 05:30:23 -05:00
Mladen N 14c764434f Added translation using Weblate (Bulgarian) 2023-12-23 21:29:51 -05:00
Vasilii a88a10dd58 Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/pt_BR/
2023-12-20 10:30:25 -05:00
Vasilii 1a6a99a54b Translated using Weblate (Ukrainian)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/uk/
2023-12-20 10:30:22 -05:00
Edmond 489a6d075c Translated using Weblate (Chinese (Traditional))
Currently translated at 87.3% (255 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/zh_Hant/
2023-12-20 10:30:22 -05:00
Yaron Shahrabani 367c7e7ef4 Translated using Weblate (Hebrew)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/he/
2023-12-20 10:30:21 -05:00
Luther 6ef1a45bad Translated using Weblate (French)
Currently translated at 85.2% (249 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/fr/
2023-12-20 10:30:21 -05:00
queeup 85fbd79616 Translated using Weblate (Turkish)
Currently translated at 76.0% (222 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/tr/
2023-12-17 14:08:31 -05:00
Kityn 37edfc2c0d Translated using Weblate (Polish)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/pl/
2023-12-17 14:08:31 -05:00
stanol 3f1cb1f89a Translated using Weblate (Ukrainian)
Currently translated at 97.9% (286 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/uk/
2023-12-17 14:08:30 -05:00
Deleted User 3c25030de1 Translated using Weblate (Dutch)
Currently translated at 98.9% (289 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/nl/
2023-12-17 14:08:30 -05:00
Vasilii 32aabbc449 Translated using Weblate (Russian)
Currently translated at 100.0% (292 of 292 strings)

Translation: Swiftfin/Swiftfin
Translate-URL: https://translate.jellyfin.org/projects/swiftfin/swiftfin/ru/
2023-12-17 14:08:29 -05:00
Anthony Lavado e88a2288fb Added translation using Weblate (Portuguese (Brazil)) 2023-12-15 13:25:12 -05:00