Skip to content

Commit 128f00a

Browse files
authored
Merge branch 'main' into remove-iouitl
2 parents 68821e4 + 60b9455 commit 128f00a

34 files changed

+61
-9
lines changed

docs/content/doc/advanced/config-cheat-sheet.en-us.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ The following configuration set `Content-Type: application/vnd.android.package-a
313313
- `PORT_TO_REDIRECT`: **80**: Port for the http redirection service to listen on. Used when `REDIRECT_OTHER_PORT` is true.
314314
- `SSL_MIN_VERSION`: **TLSv1.2**: Set the minimum version of ssl support.
315315
- `SSL_MAX_VERSION`: **\<empty\>**: Set the maximum version of ssl support.
316-
- `SSL_CURVE_PREFERENCES`: **X25519,P256**: Set the prefered curves,
316+
- `SSL_CURVE_PREFERENCES`: **X25519,P256**: Set the preferred curves,
317317
- `SSL_CIPHER_SUITES`: **ecdhe_ecdsa_with_aes_256_gcm_sha384,ecdhe_rsa_with_aes_256_gcm_sha384,ecdhe_ecdsa_with_aes_128_gcm_sha256,ecdhe_rsa_with_aes_128_gcm_sha256,ecdhe_ecdsa_with_chacha20_poly1305,ecdhe_rsa_with_chacha20_poly1305**: Set the preferred cipher suites.
318318
- If there is not hardware support for AES suites by default the cha cha suites will be preferred over the AES suites
319319
- supported suites as of go 1.17 are:

docs/content/doc/developers/guidelines-backend.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ To maintain understandable code and avoid circular dependencies it is important
4343
- `modules/git`: Package to interactive with `Git` command line or Gogit package.
4444
- `public`: Compiled frontend files (javascript, images, css, etc.)
4545
- `routers`: Handling of server requests. As it uses other Gitea packages to serve the request, other packages (models, modules or services) shall not depend on routers.
46-
- `routers/api` Conatins routers for `/api/v1` aims to handle RESTful API requests.
47-
- `routers/install` Could only reponse when system is INSTALL mode.
46+
- `routers/api` Contains routers for `/api/v1` aims to handle RESTful API requests.
47+
- `routers/install` Could only respond when system is in INSTALL mode (INSTALL_LOCK=false).
4848
- `routers/private` will only be invoked by internal sub commands, especially `serv` and `hooks`.
4949
- `routers/web` will handle HTTP requests from web browsers or Git SMART HTTP protocols.
5050
- `services`: Support functions for common routing operations or command executions. Uses `models` and `modules` to handle the requests.
@@ -103,7 +103,7 @@ i.e. `servcies/user`, `models/repository`.
103103

104104
### Import Alias
105105

106-
Since there are many package levels and sub packages, so you will find `modules/user`, `models/user`, `services/user`. When these packages are import into one Go file, it's difficult to know which package we are using and if it's a variable name or an import name. So we recommand to always use import alias. To differ from package variables which are commonly use camelCase, just use **snake_case** as import package alias.
106+
Since there are some packages which use the same package name, it is possible that you find packages like `modules/user`, `models/user`, and `services/user`. When these packages are imported in one Go file, it's difficult to know which package we are using and if it's a variable name or an import name. So, we always recommend to use import aliases. To differ from package variables which are commonly in camelCase, just use **snake_case** for import aliases.
107107
i.e. `import user_service "code.gitea.io/gitea/services/user"`
108108

109109
### Future Tasks

docs/content/doc/installation/with-docker.en-us.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ In the next step a file named `/app/gitea/gitea` (with executable permissions) n
337337
ssh -p 2222 -o StrictHostKeyChecking=no [email protected] "SSH_ORIGINAL_COMMAND=\"$SSH_ORIGINAL_COMMAND\" $0 $@"
338338
```
339339

340-
Here you should also make sure that you've set the permisson of `/app/gitea/gitea` correctly:
340+
Here you should also make sure that you've set the permission of `/app/gitea/gitea` correctly:
341341

342342
```bash
343343
sudo chmod +x /app/gitea/gitea

docs/content/doc/upgrade/from-gogs.en-us.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Upgrade to [`gitea 1.6.4`](https://dl.gitea.io/gitea/1.6.4/) first. Download the
8181
the destination platform from the [downloads page](https://dl.gitea.io/gitea/1.6.4/) and replace the binary.
8282
Run Gitea at least once and check that everything works as expected.
8383

84-
Then repeat the procedure, but this time using the [lastest release](https://dl.gitea.io/gitea/{{< version >}}/).
84+
Then repeat the procedure, but this time using the [latest release](https://dl.gitea.io/gitea/{{< version >}}/).
8585

8686
## Upgrading from a more recent version of Gogs
8787

docs/content/doc/usage/command-line.en-us.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Admin operations:
130130
- `--custom-email-url`: Use a custom Email URL (option for GitHub).
131131
- `--icon-url`: Custom icon URL for OAuth2 login source.
132132
- `--override-local-2fa`: Allow source to override local 2FA. (Optional)
133-
- `--scopes`: Addtional scopes to request for this OAuth2 source. (Optional)
133+
- `--scopes`: Additional scopes to request for this OAuth2 source. (Optional)
134134
- `--required-claim-name`: Claim name that has to be set to allow users to login with this source. (Optional)
135135
- `--required-claim-value`: Claim value that has to be set to allow users to login with this source. (Optional)
136136
- `--group-claim-name`: Claim name providing group names for this source. (Optional)
@@ -153,7 +153,7 @@ Admin operations:
153153
- `--custom-email-url`: Use a custom Email URL (option for GitHub).
154154
- `--icon-url`: Custom icon URL for OAuth2 login source.
155155
- `--override-local-2fa`: Allow source to override local 2FA. (Optional)
156-
- `--scopes`: Addtional scopes to request for this OAuth2 source.
156+
- `--scopes`: Additional scopes to request for this OAuth2 source.
157157
- `--required-claim-name`: Claim name that has to be set to allow users to login with this source. (Optional)
158158
- `--required-claim-value`: Claim value that has to be set to allow users to login with this source. (Optional)
159159
- `--group-claim-name`: Claim name providing group names for this source. (Optional)

docs/content/doc/usage/reverse-proxies.en-us.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ backend gitea
312312
server localhost:3000 check
313313
```
314314

315-
If you redirect the http content to https, the configuration work the same way, just remember that the connexion between HAProxy and Gitea will be done via http so you do not have to enable https in Gitea's configuration.
315+
If you redirect the http content to https, the configuration work the same way, just remember that the connection between HAProxy and Gitea will be done via http so you do not have to enable https in Gitea's configuration.
316316

317317
## HAProxy with a sub-path
318318

options/locale/locale_bg-BG.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,7 @@ file_history=История
572572
file_view_raw=Виж директен файл
573573
file_permalink=Постоянна връзка
574574
file_too_large=Този файл е твърде голям за да се визуализира.
575+
575576
video_not_supported_in_browser=Вашият браузър не поддържа HTML5 видео тагове.
576577
audio_not_supported_in_browser=Вашият браузър не поддържа HTML5 аудио тагове.
577578
symbolic_link=Символен линк

options/locale/locale_cs-CZ.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -915,6 +915,7 @@ file_view_rendered=Zobrazit vykreslené
915915
file_view_raw=Zobrazit v surovém stavu
916916
file_permalink=Trvalý odkaz
917917
file_too_large=Soubor je příliš velký pro zobrazení.
918+
918919
video_not_supported_in_browser=Váš prohlížeč nepodporuje značku pro HTML5 video.
919920
audio_not_supported_in_browser=Váš prohlížeč nepodporuje značku pro HTML5 audio.
920921
stored_lfs=Uloženo pomocí Git LFS

options/locale/locale_de-DE.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,7 @@ file_view_rendered=Ansicht rendern
969969
file_view_raw=Originalformat anzeigen
970970
file_permalink=Permalink
971971
file_too_large=Die Datei ist zu groß zum Anzeigen.
972+
972973
file_copy_permalink=Permalink kopieren
973974
video_not_supported_in_browser=Dein Browser unterstützt das HTML5 'video'-Tag nicht.
974975
audio_not_supported_in_browser=Dein Browser unterstützt den HTML5 'audio'-Tag nicht.

options/locale/locale_el-GR.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1005,6 +1005,7 @@ file_view_rendered=Προβολή Απόδοσης
10051005
file_view_raw=Προβολή Ακατέργαστου
10061006
file_permalink=Permalink
10071007
file_too_large=Το αρχείο είναι πολύ μεγάλο για να εμφανιστεί.
1008+
10081009
file_copy_permalink=Αντιγραφή Permalink
10091010
video_not_supported_in_browser=Το πρόγραμμα περιήγησής σας δεν υποστηρίζει την ετικέτα HTML5 'video'.
10101011
audio_not_supported_in_browser=Το πρόγραμμα περιήγησής σας δεν υποστηρίζει την ετικέτα HTML5 'audio'.

options/locale/locale_es-ES.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -996,6 +996,7 @@ file_view_rendered=Ver procesado
996996
file_view_raw=Ver original
997997
file_permalink=Enlace permanente
998998
file_too_large=El archivo es demasiado grande para ser mostrado.
999+
9991000
file_copy_permalink=Copiar Permalink
10001001
video_not_supported_in_browser=Su navegador no soporta el tag video de HTML5.
10011002
audio_not_supported_in_browser=Su navegador no soporta el tag audio de HTML5.

options/locale/locale_fa-IR.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,7 @@ file_history=تاریخچه
765765
file_view_raw=مشاهده خام
766766
file_permalink=پیوند همیشگی
767767
file_too_large=حجم این پرونده بیشتر از آن است که قابل نمایش باشد.
768+
768769
video_not_supported_in_browser=مرورگر شما از تگ video که در HTML5 تعریف شده است، پشتیبانی نمی کند.
769770
audio_not_supported_in_browser=مرورگر شما از تگ audio که در HTML5 تعریف شده است، پشتیبانی نمی کند.
770771
stored_lfs=ذخیره شده با GIT LFS

options/locale/locale_fi-FI.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,7 @@ file_raw=Raaka
572572
file_history=Historia
573573
file_view_raw=Näytä raaka
574574
file_permalink=Pysyvä linkki
575+
575576
video_not_supported_in_browser=Selaimesi ei tue HTML5 video-tagia.
576577
audio_not_supported_in_browser=Selaimesi ei tue HTML5 audio-tagia.
577578
normal_view=Normaali näkymä

options/locale/locale_fr-FR.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -897,6 +897,7 @@ file_view_rendered=Voir le rendu
897897
file_view_raw=Voir le Raw
898898
file_permalink=Lien permanent
899899
file_too_large=Le fichier est trop gros pour être affiché.
900+
900901
video_not_supported_in_browser=Votre navigateur ne supporte pas le tag HTML5 "video".
901902
audio_not_supported_in_browser=Votre navigateur ne supporte pas la balise « audio » HTML5.
902903
stored_lfs=Stocké avec Git LFS

options/locale/locale_hu-HU.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -718,6 +718,7 @@ file_history=Előzmények
718718
file_view_raw=Nyers fájl megtekintése
719719
file_permalink=Állandó hivatkozás
720720
file_too_large=Ez a fájl túl nagy ahhoz, hogy megjelenítsük.
721+
721722
video_not_supported_in_browser=A böngésző nem támogatja a HTML5 video tag-et.
722723
audio_not_supported_in_browser=A böngésző nem támogatja a HTML5 audio tag-et.
723724
stored_lfs=Git LFS-el eltárolva

options/locale/locale_id-ID.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -693,6 +693,7 @@ file_history=Riwayat
693693
file_view_raw=Lihat Mentah
694694
file_permalink=Permalink
695695
file_too_large=Berkas terlalu besar untuk ditampilkan.
696+
696697
stored_lfs=Tersimpan dengan GIT LFS
697698
commit_graph=Grafik Komit
698699
blame=Salahkan

options/locale/locale_it-IT.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -829,6 +829,7 @@ file_view_source=Visualizza sorgente
829829
file_view_raw=Vedi originale
830830
file_permalink=Permalink
831831
file_too_large=Il file è troppo grande per essere visualizzato.
832+
832833
video_not_supported_in_browser=Il tuo browser non supporta i tag "video" di HTML5.
833834
audio_not_supported_in_browser=Il tuo browser non supporta il tag "video" di HTML5.
834835
stored_lfs=Memorizzati con Git LFS

options/locale/locale_ja-JP.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1005,6 +1005,7 @@ file_view_rendered=レンダリング表示
10051005
file_view_raw=Rawデータを見る
10061006
file_permalink=パーマリンク
10071007
file_too_large=このファイルは大きすぎるため、表示できません。
1008+
10081009
file_copy_permalink=パーマリンクをコピー
10091010
video_not_supported_in_browser=このブラウザはHTML5のvideoタグをサポートしていません。
10101011
audio_not_supported_in_browser=このブラウザーはHTML5のaudioタグをサポートしていません。

options/locale/locale_ko-KR.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -648,6 +648,7 @@ file_history=히스토리
648648
file_view_raw=원본 보기
649649
file_permalink=고유링크
650650
file_too_large=보여주기에는 파일이 너무 큽니다.
651+
651652
video_not_supported_in_browser=당신의 브라우저가 HTML5 'video' 태그를 지원하지 않습니다.
652653
audio_not_supported_in_browser=당신의 브라우저가 HTML5 'audio' 태그를 지원하지 않습니다.
653654
stored_lfs=Git LFS에 저장되어 있습니다

options/locale/locale_lv-LV.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -943,6 +943,7 @@ file_view_rendered=Skatīt rezultātu
943943
file_view_raw=Rādīt neapstrādātu
944944
file_permalink=Patstāvīgā saite
945945
file_too_large=Šis fails ir par lielu, lai to parādītu.
946+
946947
video_not_supported_in_browser=Jūsu pārlūks neatbalsta HTML5 video.
947948
audio_not_supported_in_browser=Jūsu pārlūks neatbalsta HTML5 audio.
948949
stored_lfs=Saglabāts Git LFS

options/locale/locale_ml-IN.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -670,6 +670,7 @@ file_history=നാള്‍വഴി
670670
file_view_raw=കലര്‍പ്പില്ലാതെ കാണുക
671671
file_permalink=സ്ഥിരമായ കണ്ണി
672672
file_too_large=ഈ ഫയൽ കാണിക്കാൻ കഴിയാത്തത്ര വലുതാണ്.
673+
673674
video_not_supported_in_browser=നിങ്ങളുടെ ബ്രൌസർ HTML5 'വീഡിയോ' ടാഗിനെ പിന്തുണയ്ക്കുന്നില്ല.
674675
audio_not_supported_in_browser=നിങ്ങളുടെ ബ്ര browser സർ HTML5 'ഓഡിയോ' ടാഗിനെ പിന്തുണയ്ക്കുന്നില്ല.
675676
stored_lfs=ഗിറ്റു് LFS ഉപയോഗിച്ച് സംഭരിച്ചു

options/locale/locale_nl-NL.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -847,6 +847,7 @@ file_history=Geschiedenis
847847
file_view_raw=Weergave ruw bestand
848848
file_permalink=Permalink
849849
file_too_large=Dit bestand is te groot om te tonen.
850+
850851
video_not_supported_in_browser=Je browser ondersteunt de HTML5 'video'-tag niet.
851852
audio_not_supported_in_browser=Je browser ondersteunt de HTML5 'audio'-tag niet.
852853
stored_lfs=Opgeslagen met Git LFS

options/locale/locale_pl-PL.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,7 @@ file_history=Historia
763763
file_view_raw=Zobacz czysty
764764
file_permalink=Bezpośredni odnośnik
765765
file_too_large=Ten plik jest zbyt duży, aby go wyświetlić.
766+
766767
video_not_supported_in_browser=Twoja przeglądarka nie obsługuje znacznika HTML5 "video".
767768
audio_not_supported_in_browser=Twoja przeglądarka nie obsługuje znacznika HTML5 "audio".
768769
stored_lfs=Przechowane za pomocą Git LFS

options/locale/locale_pt-BR.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -918,6 +918,7 @@ file_view_rendered=Ver Renderizado
918918
file_view_raw=Ver original
919919
file_permalink=Link permanente
920920
file_too_large=O arquivo é muito grande para ser mostrado.
921+
921922
video_not_supported_in_browser=Seu navegador não suporta a tag 'video' do HTML5.
922923
audio_not_supported_in_browser=Seu navegador não suporta a tag 'audio' do HTML5.
923924
stored_lfs=Armazenado com Git LFS

options/locale/locale_pt-PT.ini

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,9 @@ oauth_signup_submit=Completar conta
317317
oauth_signin_tab=Vincular a uma conta existente
318318
oauth_signin_title=Inicie a sessão para autorizar a vinculação à conta
319319
oauth_signin_submit=Vincular conta
320+
oauth.signin.error=Ocorreu um erro durante o processamento do pedido de autorização. Se este erro persistir, contacte o administrador.
321+
oauth.signin.error.access_denied=O pedido de autorização foi negado.
322+
oauth.signin.error.temporarily_unavailable=A autorização falhou porque o servidor de autenticação está temporariamente indisponível. Tente mais tarde.
320323
openid_connect_submit=Estabelecer ligação
321324
openid_connect_title=Estabelecer ligação a uma conta existente
322325
openid_connect_desc=O URI do OpenID escolhido é desconhecido. Associe-o a uma nova conta aqui.
@@ -1005,6 +1008,16 @@ file_view_rendered=Ver resultado processado
10051008
file_view_raw=Ver em bruto
10061009
file_permalink=Ligação permanente
10071010
file_too_large=O ficheiro é demasiado grande para ser apresentado.
1011+
bidi_bad_header=`Este ficheiro contém caracteres Unicode Bidireccionais inesperados!`
1012+
bidi_bad_description=`Este ficheiro contém caracteres Unicode Bidireccionais inesperados que podem ser processados de forma diferente do que aparece abaixo. Se o uso é intencional e legítimo, pode ignorar este aviso com segurança. Use o botão Revelar para mostrar os caracteres escondidos.`
1013+
bidi_bad_description_escaped=`Este ficheiro contém caracteres Unicode Bidireccionais inesperados. Os caracteres escondidos unicode estão revelados abaixo. Use o botão Esconder para mostrar como é que eles são apresentados.`
1014+
unicode_header=`Este ficheiro contém caracteres Unicode escondidos!`
1015+
unicode_description=`Este ficheiro contém caracteres Unicode escondidos que podem ser processados de forma diferente do que aparece abaixo. Se o uso é intencional e legítimo, pode ignorar este aviso com segurança. Use o botão Revelar para mostrar os caracteres escondidos.`
1016+
unicode_description_escaped=`Este ficheiro contém caracteres Unicode escondidos. Os caracteres unicode escondidos estão revelados abaixo. Use o botão Esconder para mostrar como é que eles são apresentados.`
1017+
line_unicode=`Esta linha tem caracteres unicode escondidos`
1018+
1019+
escape_control_characters=Revelar
1020+
unescape_control_characters=Esconder
10081021
file_copy_permalink=Copiar ligação permanente
10091022
video_not_supported_in_browser=O seu navegador não suporta a etiqueta 'video' do HTML5.
10101023
audio_not_supported_in_browser=O seu navegador não suporta a etiqueta 'audio' do HTML5.
@@ -2101,6 +2114,7 @@ diff.protected=Protegido
21012114
diff.image.side_by_side=Lado a Lado
21022115
diff.image.swipe=Deslizar
21032116
diff.image.overlay=Sobrepor
2117+
diff.has_escaped=Esta linha tem caracteres unicode escondidos
21042118

21052119
releases.desc=Acompanhe as versões e as descargas do repositório.
21062120
release.releases=Lançamentos

options/locale/locale_ru-RU.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -970,6 +970,7 @@ file_view_rendered=Просмотр отрендеренного
970970
file_view_raw=Посмотреть исходник
971971
file_permalink=Постоянная ссылка
972972
file_too_large=Этот файл слишком большой, поэтому он не может быть отображён.
973+
973974
file_copy_permalink=Копировать постоянную ссылку
974975
video_not_supported_in_browser=Ваш браузер не поддерживает HTML5 'video' тэг.
975976
audio_not_supported_in_browser=Ваш браузер не поддерживает HTML5 'audio' тэг.

options/locale/locale_si-LK.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,7 @@ release=නිකුතුව
346346
releases=නිකුතු
347347
file_history=ඉතිහාසය
348348
file_view_source=මූලාශ්‍රය දකින්න
349+
349350
commit_graph.color=වර්ණය
350351
download_file=ගොනුව බාගන්න
351352

options/locale/locale_sr-SP.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,7 @@ file_history=Историја
258258
file_view_raw=Прегледај саму датотеку
259259
file_permalink=Пермалинк
260260

261+
261262
editor.preview_changes=Преглед промена
262263
editor.or=или
263264
editor.commit_changes=Изврши комит промена

options/locale/locale_sv-SE.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -790,6 +790,7 @@ file_history=Historik
790790
file_view_raw=Visa i råformat
791791
file_permalink=Permalänk
792792
file_too_large=Filen är för stor för att visas.
793+
793794
video_not_supported_in_browser=Din webbläsare stödjer ej HTML5-taggen 'video'.
794795
audio_not_supported_in_browser=Din webbläsare stöder inte taggen 'audio' i HTML5.
795796
stored_lfs=Sparad med Git LFS

options/locale/locale_tr-TR.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -956,6 +956,7 @@ file_view_rendered=Oluşturulanları Görüntüle
956956
file_view_raw=Ham Görünüm
957957
file_permalink=Kalıcı Bağlantı
958958
file_too_large=Bu dosya görüntülemek için çok büyük.
959+
959960
video_not_supported_in_browser=Tarayıcınız HTML5 'video' etiketini desteklemiyor.
960961
audio_not_supported_in_browser=Tarayıcınız HTML5 'audio' etiketini desteklemiyor.
961962
stored_lfs=Git LFS ile depolandı

options/locale/locale_uk-UA.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -925,6 +925,7 @@ file_view_rendered=Переглянути відрендерено
925925
file_view_raw=Перегляд Raw
926926
file_permalink=Постійне посилання
927927
file_too_large=Цей файл завеликий щоб бути показаним.
928+
928929
video_not_supported_in_browser=Ваш браузер не підтримує тег 'video' HTML5.
929930
audio_not_supported_in_browser=Ваш браузер не підтримує тег HTML5 'audio'.
930931
stored_lfs=Збережено з Git LFS

0 commit comments

Comments
 (0)