doorkeeper-i18n 5.2.3 → 5.2.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ec82f2a627b6febd8755abaace00d860eb807e432bb715c0e2af64163b84b0b
4
- data.tar.gz: 79f05c3bfb01d2c4ddd7bf1a0a29079497172bf949a5c2efb14decd46e8afbad
3
+ metadata.gz: 9a95df6e1b3e9a2b63df9592fe7b69e7333582c371dd4ab0389febd5aa4ca4fa
4
+ data.tar.gz: 1c0a02f0584b44ba0c42bd2d4491e7724384bbc63160ef50f0dbfd3c726e3a0c
5
5
  SHA512:
6
- metadata.gz: cdb783a8fb296b47c17d85623eb3bbe05b8e2126e8ecfd86a23bbc07fa6b637aae3ee44893fa1472bcf68c3a905db6c20f65de08f3100c7e7e92105afeb026d3
7
- data.tar.gz: 3274f7685f6e251bbe24d6987c36beedeb4bc54288a8212bc017edb0962f9adbea72af2a9a67b433673ac4e4bbd60b2141259f634760ad6feb7a605eace5f3db
6
+ metadata.gz: 5bae295a667ce7d0a6228398220fa193314217c6dc0b58c9e8d019189e75c10a13b9a82a7bbd1f17c9110c00159f561c53fa483d35fe2a89176ece8e15eb1a96
7
+ data.tar.gz: a5db457bd1bd6be732fa18e0a3eead7fc7082e8a89860a58f707c2b2c91f94b68b201f57fbaf7c4ee875cbc063b41f03f3cf2dd2b9ab988c0d8e9124870fd0d3
@@ -0,0 +1,35 @@
1
+ name: CI
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ build:
7
+ name: >-
8
+ Ruby ${{ matrix.ruby }}
9
+ env:
10
+ CI: true
11
+ RAILS_ENV: test
12
+
13
+ runs-on: ${{ matrix.os }}
14
+ if: |
15
+ !( contains(github.event.pull_request.title, '[ci skip]')
16
+ || contains(github.event.pull_request.title, '[skip ci]'))
17
+ strategy:
18
+ fail-fast: true
19
+ matrix:
20
+ os: [ ubuntu-latest ]
21
+ ruby:
22
+ - '3.1.0'
23
+ steps:
24
+ - name: Repo checkout
25
+ uses: actions/checkout@v2
26
+
27
+ - name: Setup Ruby
28
+ uses: ruby/setup-ruby@v1
29
+ with:
30
+ ruby-version: ${{ matrix.ruby }}
31
+ bundler-cache: true
32
+
33
+ - name: Run tests
34
+ timeout-minutes: 10
35
+ run: bundle exec rake spec
data/.gitignore CHANGED
@@ -2,3 +2,4 @@
2
2
  Gemfile.lock
3
3
  .idea
4
4
  *.gem
5
+ /log/
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # doorkeeper-i18n
2
2
  [![Gem Version](https://badge.fury.io/rb/doorkeeper-i18n.svg)](http://badge.fury.io/rb/doorkeeper-i18n)
3
- [![Build Status](https://travis-ci.org/doorkeeper-gem/doorkeeper-i18n.svg?branch=master)](https://travis-ci.org/doorkeeper-gem/doorkeeper-i18n)
3
+ [![CI](https://github.com/doorkeeper-gem/doorkeeper-i18n/actions/workflows/ci.yml/badge.svg)](https://github.com/doorkeeper-gem/doorkeeper-i18n/actions/workflows/ci.yml)
4
4
 
5
5
  Locales for [Doorkeeper](https://github.com/doorkeeper-gem/doorkeeper) gem.
6
6
 
@@ -39,6 +39,8 @@ Currently supported locales:
39
39
  * Czech (cs)
40
40
  * Slovak (sk)
41
41
  * Bulgarian (bg)
42
+ * Indonesian (id)
43
+ * Turkish (tr)
42
44
 
43
45
  ## License
44
46
 
@@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = "doorkeeper-i18n"
5
- gem.version = "5.2.3"
5
+ gem.version = "5.2.5"
6
6
  gem.authors = ["Tute Costa", "Nikita Bulai"]
7
7
  gem.email = %w[bulaj.nikita@gmail.com]
8
8
  gem.homepage = "https://github.com/doorkeeper-gem/doorkeeper-i18n"
data/rails/locales/fr.yml CHANGED
@@ -2,137 +2,150 @@ fr:
2
2
  activerecord:
3
3
  attributes:
4
4
  doorkeeper/application:
5
- name: Nom
6
- redirect_uri: L'URL de redirection
5
+ name: 'Nom'
6
+ redirect_uri: 'URI de redirection'
7
7
  errors:
8
8
  models:
9
9
  doorkeeper/application:
10
10
  attributes:
11
11
  redirect_uri:
12
- fragment_present: ne peut contenir un fragment.
13
- invalid_uri: doit être une URL valide.
14
- unspecified_scheme: doit spécifier un schéma.
15
- relative_uri: doit être une URL absolue.
16
- secured_uri: doit être une URL HTTP/SSL.
17
- forbidden_uri: est interdit par le serveur.
12
+ fragment_present: 'ne peut contenir un fragment.'
13
+ invalid_uri: 'doit être une URI valide.'
14
+ unspecified_scheme: 'doit spécifier un schéma.'
15
+ relative_uri: 'doit être une URI absolue.'
16
+ secured_uri: 'doit être une URI HTTP/SSL.'
17
+ forbidden_uri: 'est interdit par le serveur.'
18
18
  scopes:
19
- not_match_configured: doesn't match configured on the server.
19
+ not_match_configured: 'ne correspond pas à la configuration du serveur.'
20
+
20
21
  doorkeeper:
21
22
  applications:
22
23
  confirmations:
23
- destroy: Êtes-vous certain?
24
+ destroy: 'Êtes-vous certain?'
24
25
  buttons:
25
- edit: Modifier
26
- destroy: Supprimer
27
- submit: Envoyer
28
- cancel: Annuler
29
- authorize: Autoriser
26
+ edit: 'Modifier'
27
+ destroy: 'Supprimer'
28
+ submit: 'Envoyer'
29
+ cancel: 'Annuler'
30
+ authorize: 'Autoriser'
30
31
  form:
31
- error: Oups! Vérifier votre formulaire pour des erreurs possibles
32
+ error: 'Oups! Vérifier votre formulaire pour des erreurs possibles'
32
33
  help:
33
- confidential: |
34
- L'application sera utilisée quand la confidentialité du secret pourra
35
- être maintenue. Les application mobile native, et les Applications
36
- mono-page ne sont pas considérées comme sûr.
37
- redirect_uri: Utiliser une ligne par URL
38
- blank_redirect_uri: Leave it blank if you configured your provider to use Client Credentials, Resource Owner Password Credentials or any other grant type that doesn't require redirect URI.
39
- scopes: Utilisez un espace entre chaque portée. Laissez vide pour utiliser la portée par defaut
34
+ confidential: "L'application sera utilisée quand la confidentialité du secret pourra être maintenue. Les application mobile native, et les Applications mono-page ne sont pas considérées comme sûr."
35
+ redirect_uri: 'Utiliser une ligne par URI'
36
+ blank_redirect_uri: "Laissez-le vide si vous avez configuré votre fournisseur pour utiliser les informations d'identification du client, les informations d'identification du mot de passe du propriétaire de la ressource ou tout autre type d'octroi qui ne nécessite pas d'URI de redirection."
37
+ scopes: 'Séparez les portées avec des espaces. Laissez vide pour utiliser les portées par défaut.'
40
38
  edit:
41
- title: Modifier l'application
39
+ title: "Modifier l'application"
42
40
  index:
43
- title: Vos applications
44
- new: Nouvelle application
45
- name: Nom
46
- callback_url: URL de retour d'appel
47
- confidential: Confidential?
48
- actions: Actions
41
+ title: 'Vos applications'
42
+ new: 'Nouvelle application'
43
+ name: 'Nom'
44
+ callback_url: "URL de retour d'appel"
45
+ confidential: 'Confidentiel?'
46
+ actions: 'Actions'
49
47
  confidentiality:
50
- 'yes': Oui
51
- 'no': Non
48
+ 'yes': 'Oui'
49
+ 'no': 'Non'
52
50
  new:
53
- title: Nouvelle application
51
+ title: 'Nouvelle application'
54
52
  show:
55
- title: 'Application : %{name}'
56
- application_id: ID de l'application
57
- secret: Secret
58
- secret_hashed: Secret hashed
59
- scopes: Portées
60
- confidential: Confidential
61
- callback_urls: URL du retour d'appel
62
- actions: Actions
63
- not_defined: Not defined
53
+ title: 'Application : %{name}'
54
+ application_id: 'UID'
55
+ secret: 'Secret'
56
+ secret_hashed: 'Secret hashé'
57
+ scopes: 'Portées'
58
+ confidential: 'Confidentiel'
59
+ callback_urls: "Urls du retour d'appel"
60
+ actions: 'Actions'
61
+ not_defined: 'Non défini'
62
+
64
63
  authorizations:
65
64
  buttons:
66
- authorize: Autoriser
67
- deny: Refuser
65
+ authorize: 'Autoriser'
66
+ deny: 'Refuser'
68
67
  error:
69
- title: Une erreur est survenue
68
+ title: 'Une erreur est survenue'
70
69
  new:
71
- title: Autorisation requise
72
- prompt: Autorisez %{client_name} à utiliser votre compte?
73
- able_to: Cette application pourra
70
+ title: 'Autorisation requise'
71
+ prompt: 'Autorisez %{client_name} à utiliser votre compte?'
72
+ able_to: 'Cette application pourra'
74
73
  show:
75
- title: Code d'autorisation
74
+ title: "Code d'autorisation"
76
75
  form_post:
77
- title: Submit this form
76
+ title: 'Soumettre ce formulaire'
77
+
78
78
  authorized_applications:
79
79
  confirmations:
80
- revoke: Êtes-vous certain?
80
+ revoke: 'Êtes-vous certain?'
81
81
  buttons:
82
- revoke: Annuler
82
+ revoke: 'Annuler'
83
83
  index:
84
- title: Vos applications autorisées
85
- application: Application
86
- created_at: Créé le
87
- date_format: "%Y-%m-%d %H:%M:%S"
84
+ title: 'Vos applications autorisées'
85
+ application: 'Application'
86
+ created_at: 'Créé le'
87
+ date_format: '%d/%m/%Y %H:%M:%S'
88
+
88
89
  pre_authorization:
89
- status: Pre-authorization
90
+ status: 'Pré-autorisation'
91
+
90
92
  errors:
91
93
  messages:
94
+ # Common error messages
92
95
  invalid_request:
93
- unknown: La demande manque un paramètre requis, inclut une valeur de paramètre non prise en charge, ou est autrement mal formée.
94
- missing_param: 'Missing required parameter: %{value}.'
95
- request_not_authorized: Request need to be authorized. Required parameter for authorizing request is missing or invalid.
96
- invalid_redirect_uri: L'URL de redirection n'est pas valide.
97
- unauthorized_client: Le client n'est pas autorisé à effectuer cette demande à l'aide de cette méthode.
98
- access_denied: Le propriétaire de la ressource ou le serveur d'autorisation a refusé la demande.
99
- invalid_scope: Le scope demandé n'est pas valide, est inconnu, ou est mal formé.
100
- invalid_code_challenge_method: The code challenge method must be plain or S256.
101
- server_error: Le serveur d'autorisation a rencontré une condition inattendue qui l'a empêché de remplir la demande.
102
- temporarily_unavailable: Le serveur d'autorisation est actuellement incapable de traiter la demande à cause d'une surcharge ou d'un entretien temporaire du serveur.
103
- credential_flow_not_configured: Le flux des identifiants du mot de passe du propriétaire de la ressource a échoué en raison de Doorkeeper.configure.resource_owner_from_credentials n'est pas configuré.
104
- resource_owner_authenticator_not_configured: La recherche du propriétaire de la ressource a échoué en raison de Doorkeeper.configure.resource_owner_authenticator n'est pas configuré.
105
- admin_authenticator_not_configured: Access to admin panel is forbidden due to Doorkeeper.configure.admin_authenticator being unconfigured.
106
- unsupported_response_type: Le serveur d'autorisation ne prend pas en charge ce type de réponse.
107
- unsupported_response_mode: The authorization server does not support this response mode.
108
- invalid_client: L'authentification du client a échoué à cause d'un client inconnu, d'aucune authentification de client incluse, ou d'une méthode d'authentification non prise en charge.
109
- invalid_grant: Le consentement d'autorisation accordé n'est pas valide, a expiré, est annulé, ne concorde pas avec l'URL de redirection utilisée dans la demande d'autorisation, ou a été émis à un autre client.
110
- unsupported_grant_type: Le type de consentement d'autorisation n'est pas pris en charge par le serveur d'autorisation.
96
+ unknown: 'La demande manque un paramètre requis, inclut une valeur de paramètre non prise en charge, ou est autrement mal formée.'
97
+ missing_param: 'Paramètre requis manquant: %{value}.'
98
+ request_not_authorized: 'La demande doit être autorisée. Le paramètre requis pour autoriser la demande est manquant ou invalide.'
99
+ invalid_redirect_uri: "L'URI de redirection n'est pas valide."
100
+ unauthorized_client: "Le client n'est pas autorisé à effectuer cette demande à l'aide de cette méthode."
101
+ access_denied: "Le propriétaire de la ressource ou le serveur d'autorisation a refusé la demande."
102
+ invalid_scope: "Le scope demandé n'est pas valide, est inconnu, ou est mal formé."
103
+ invalid_code_challenge_method: "La méthode de challenge du code doit être en clair ou S256."
104
+ server_error: "Le serveur d'autorisation a rencontré une condition inattendue qui l'a empêché de remplir la demande."
105
+ temporarily_unavailable: "Le serveur d'autorisation est actuellement incapable de traiter la demande à cause d'une surcharge ou d'un entretien temporaire du serveur."
106
+
107
+ # Configuration error messages
108
+ credential_flow_not_configured: "Le flux des identifiants du mot de passe du propriétaire de la ressource a échoué en raison de Doorkeeper.configure.resource_owner_from_credentials n'est pas configuré."
109
+ resource_owner_authenticator_not_configured: "La recherche du propriétaire de la ressource a échoué en raison de Doorkeeper.configure.resource_owner_authenticator n'est pas configuré."
110
+ admin_authenticator_not_configured: "L'accès au panneau d'administration est interdit en raison de Doorkeeper.configure.admin_authenticator n'étant pas configurée."
111
+
112
+ # Access grant errors
113
+ unsupported_response_type: "Le serveur d'autorisation ne prend pas en charge ce type de réponse."
114
+ unsupported_response_mode: "Le serveur d'autorisation ne prend pas en charge ce mode de réponse."
115
+
116
+ # Access token errors
117
+ invalid_client: "L'authentification du client a échoué à cause d'un client inconnu, d'aucune authentification de client incluse, ou d'une méthode d'authentification non prise en charge."
118
+ invalid_grant: "Le consentement d'autorisation accordé n'est pas valide, a expiré, est annulé, ne concorde pas avec l'URI de redirection utilisée dans la demande d'autorisation, ou a été émis à un autre client."
119
+ unsupported_grant_type: "Le type de consentement d'autorisation n'est pas pris en charge par le serveur d'autorisation."
120
+
111
121
  invalid_token:
112
- revoked: Le jeton d'accès a été annulé
113
- expired: Le jeton d'accès a expiré
114
- unknown: Le jeton d'accès n'est pas valide
122
+ revoked: "Le jeton d'accès a été annulé"
123
+ expired: "Le jeton d'accès a expiré"
124
+ unknown: "Le jeton d'accès n'est pas valide"
115
125
  revoke:
116
- unauthorized: Vous n'êtes pas autorisé à révoquer ce jeton
126
+ unauthorized: "Vous n'êtes pas autorisé à révoquer ce jeton"
127
+
117
128
  forbidden_token:
118
- missing_scope: L'accès à cette ressource nécessite une étendue "%{oauth_scopes}"
129
+ missing_scope: "L'accès à cette ressource nécessite une portée %{oauth_scopes}"
130
+
119
131
  flash:
120
132
  applications:
121
133
  create:
122
- notice: Application créée.
134
+ notice: 'Application créée.'
123
135
  destroy:
124
- notice: Application supprimée.
136
+ notice: 'Application supprimée.'
125
137
  update:
126
- notice: Application mise à jour.
138
+ notice: 'Application mise à jour.'
127
139
  authorized_applications:
128
140
  destroy:
129
- notice: Application annulée.
141
+ notice: 'Application annulée.'
142
+
130
143
  layouts:
131
144
  admin:
132
- title: Doorkeeper
145
+ title: 'Doorkeeper'
133
146
  nav:
134
- oauth2_provider: Fournisseur OAuth2
135
- applications: Applications
136
- home: Home
147
+ oauth2_provider: 'Fournisseur OAuth2'
148
+ applications: 'Applications'
149
+ home: 'Accueil'
137
150
  application:
138
- title: Autorisation OAuth requise
151
+ title: 'Autorisation OAuth requise'
@@ -0,0 +1,135 @@
1
+ id:
2
+ activerecord:
3
+ attributes:
4
+ doorkeeper/application:
5
+ name: 'Nama'
6
+ redirect_uri: 'Mengalihkan URI'
7
+ errors:
8
+ models:
9
+ doorkeeper/application:
10
+ attributes:
11
+ redirect_uri:
12
+ fragment_present: 'tidak boleh mengandung fragmen.'
13
+ invalid_uri: 'harus berupa URI yang valid.'
14
+ unspecified_scheme: 'harus menentukan suatu skema.'
15
+ relative_uri: 'harus berupa URI absolut.'
16
+ secured_uri: 'must be an HTTPS/SSL URI.'
17
+ forbidden_uri: 'harus berupa URI HTTPS/SSL.'
18
+ scopes:
19
+ not_match_configured: "tidak cocok dengan yang dikonfigurasi di server."
20
+ doorkeeper:
21
+ applications:
22
+ confirmations:
23
+ destroy: 'Apakah Anda yakin?'
24
+ buttons:
25
+ edit: 'Ubah'
26
+ destroy: 'Hapus'
27
+ submit: 'Kirim'
28
+ cancel: 'Batal'
29
+ authorize: 'Izinkan'
30
+ form:
31
+ error: 'Ups! Periksa formulir Anda untuk kesalahan yang mungkin terjadi'
32
+ help:
33
+ confidential: 'Aplikasi akan digunakan di mana kunci rahasia klien dapat dijaga kerahasiaannya. Aplikasi seluler asli dan Aplikasi Satu Halaman dianggap tidak rahasia.'
34
+ redirect_uri: 'Gunakan satu baris per URI'
35
+ blank_redirect_uri: "Biarkan kosong jika Anda mengonfigurasi penyedia Anda untuk menggunakan Kredensial Klien, Kredensial Kata Sandi Pemilik Resource, atau jenis pemberian lainnya yang tidak memerlukan URI pengalihan."
36
+ scopes: 'Pisahkan cakupan dengan spasi. Biarkan kosong untuk menggunakan cakupan bawaan.'
37
+ edit:
38
+ title: 'Ubah aplikasi'
39
+ index:
40
+ title: 'Aplikasi anda'
41
+ new: 'Aplikasi Baru'
42
+ name: 'Nama'
43
+ callback_url: 'URL Panggilan Balik'
44
+ confidential: 'Konfidensial?'
45
+ actions: 'Tindakan'
46
+ confidentiality:
47
+ 'yes': 'Ya'
48
+ 'no': 'Tidak'
49
+ new:
50
+ title: 'Aplikasi Baru'
51
+ show:
52
+ title: 'Aplikasi: %{name}'
53
+ application_id: 'UID'
54
+ secret: 'Kunci rahasia'
55
+ secret_hashed: 'Kunci rahasia yang dihash'
56
+ scopes: 'Cakupan'
57
+ confidential: 'Konfidensial'
58
+ callback_urls: 'Url-url panggil balik'
59
+ actions: 'Tindakan'
60
+ not_defined: 'Tidak terdefinisi'
61
+ authorizations:
62
+ buttons:
63
+ authorize: 'Izinkan'
64
+ deny: 'Tolak'
65
+ error:
66
+ title: 'Telah terjadi kesalahan'
67
+ new:
68
+ title: 'Membutuhkan otorisasi '
69
+ prompt: 'Izinkan %{client_name} untuk memakai akun anda?'
70
+ able_to: 'Aplikasi ini dapat melakukan'
71
+ show:
72
+ title: 'Kode otorisasi'
73
+ form_post:
74
+ title: 'Kirim form ini'
75
+ authorized_applications:
76
+ confirmations:
77
+ revoke: 'Apakah anda yakin?'
78
+ buttons:
79
+ revoke: 'Cabut'
80
+ index:
81
+ title: 'Aplikasi anda yang terotorisasi'
82
+ application: 'Aplikasi'
83
+ created_at: 'Dibuat Pada'
84
+ date_format: '%Y-%m-%d %H:%M:%S'
85
+ pre_authorization:
86
+ status: 'Sebelum-otorisasi'
87
+ errors:
88
+ messages:
89
+ invalid_request:
90
+ unknown: 'Permintaan tidak memiliki parameter yang diperlukan, termasuk nilai parameter yang tidak didukung, atau formatnya salah.'
91
+ missing_param: 'Parameter yang diperlukan tidak ada: %{value}.'
92
+ request_not_authorized: 'Permintaan harus diotorisasi. Parameter yang diperlukan untuk permintaan otorisasi tidak ada atau tidak valid.'
93
+ invalid_redirect_uri: "Format uri redirect yang diminta salah atau tidak cocok dengan URI redirect klien."
94
+ unauthorized_client: 'Klien tidak diizinkan untuk melakukan permintaan ini menggunakan metode ini.'
95
+ access_denied: 'Pemilik resource atau server otorisasi menolak permintaan tersebut.'
96
+ invalid_scope: 'Cakupan yang diminta tidak valid, tidak diketahui, atau salah format'
97
+ invalid_code_challenge_method: 'Metode tantangan kode harus polos atau S256.'
98
+ server_error: 'Server otorisasi mengalami kondisi tak terduga yang mencegahnya memenuhi permintaan.'
99
+ temporarily_unavailable: 'Server otorisasi saat ini tidak dapat menangani permintaan karena kelebihan beban sementara atau pemeliharaan server'
100
+ credential_flow_not_configured: 'Alur Kredensial Kata Sandi Pemilik Resource gagal karena Doorkeeper.configure.resource_owner_from_credentials belum dikonfigurasi.'
101
+ resource_owner_authenticator_not_configured: 'Penemuan Pemilik Resource Daya gagal karena Doorkeeper.configure.resource_owner_authenticator belum dikonfigurasi'
102
+ admin_authenticator_not_configured: 'Akses ke panel admin dilarang karena Doorkeeper.configure.admin_authenticator belum dikonfigurasi.'
103
+ unsupported_response_type: 'Server otorisasi tidak mendukung jenis respons ini.'
104
+ unsupported_response_mode: 'Server otorisasi tidak mendukung mode respons ini.'
105
+ invalid_client: 'Otentikasi klien gagal karena klien tidak dikenal, tidak ada autentikasi klien yang disertakan, atau metode autentikasi yang tidak didukung.'
106
+ invalid_grant: 'Pemberian otorisasi yang diberikan tidak valid, kedaluwarsa, dicabut, tidak cocok dengan URI pengalihan yang digunakan dalam permintaan otorisasi, atau diberikan kepada klien lain.'
107
+ unsupported_grant_type: 'Jenis pemberian otorisasi tidak didukung oleh server otorisasi.'
108
+ invalid_token:
109
+ revoked: "Token akses telah dicabut"
110
+ expired: "Token akses telah kadaluwarsa"
111
+ unknown: "Token akses tidak valid"
112
+ revoke:
113
+ unauthorized: "Anda tidak berwenang untuk mencabut token ini"
114
+ forbidden_token:
115
+ missing_scope: 'Akses ke resource ini memerlukan cakupan "%{oauth_scopes}".'
116
+ flash:
117
+ applications:
118
+ create:
119
+ notice: 'Aplikasi telah dibuat.'
120
+ destroy:
121
+ notice: 'Aplikasi telah dihapus.'
122
+ update:
123
+ notice: 'Aplikasi telah diubah.'
124
+ authorized_applications:
125
+ destroy:
126
+ notice: 'Aplikasi telah dihapus.'
127
+ layouts:
128
+ admin:
129
+ title: 'Doorkeeper'
130
+ nav:
131
+ oauth2_provider: 'Penyedia OAuth2'
132
+ applications: 'Aplikasi'
133
+ home: 'Home'
134
+ application:
135
+ title: 'Membutuhkan otorisasi OAuth'
@@ -0,0 +1,135 @@
1
+ tr:
2
+ activerecord:
3
+ attributes:
4
+ doorkeeper/application:
5
+ name: 'Ad'
6
+ redirect_uri: 'Yönlendirme URL'
7
+ errors:
8
+ models:
9
+ doorkeeper/application:
10
+ attributes:
11
+ redirect_uri:
12
+ fragment_present: 'Yönlendirme URL için fragment kullanılamaz'
13
+ invalid_uri: 'Geçerli bir URI olmalıdır'
14
+ unspecified_scheme: 'Şema belirtilmelidir'
15
+ relative_uri: 'Mutlak URI olmalıdır'
16
+ secured_uri: 'HTTPS/SSL URI olmalıdır'
17
+ forbidden_uri: 'Sunucu tarafından yasaklanmıştır'
18
+ scopes:
19
+ not_match_configured: "Sunucu tarafında yapılandırılmış olan ile eşleşmiyor"
20
+ doorkeeper:
21
+ applications:
22
+ confirmations:
23
+ destroy: 'Silmek istediğinizden emin misiniz?'
24
+ buttons:
25
+ edit: 'Düzenle'
26
+ destroy: 'Sil'
27
+ submit: 'Gönder'
28
+ cancel: 'İptal'
29
+ authorize: 'Yetkilendir'
30
+ form:
31
+ error: 'Hata! Formunuzda hata olabilir'
32
+ help:
33
+ confidential: 'Gizli olarak kullanılacak bir uygulama olarak işaretlenir. Mobil uygulamalar veya tek sayfalık uygulamalar gibi.'
34
+ redirect_uri: 'Her URI için bir satır kullanın'
35
+ blank_redirect_uri: "Eğer uygulama için Client Credentials, Resource Owner Password Credentials veya başka bir yetki türü kullanılıyorsa, yönlendirme URI'lerini boş bırakın."
36
+ scopes: 'Yetkileri aralarında boşluk bırakarak ayırın'
37
+ edit:
38
+ title: 'Uygulamayı düzenle'
39
+ index:
40
+ title: 'Uygulamalarınız'
41
+ new: 'Yeni Uygulama'
42
+ name: 'Ad'
43
+ callback_url: 'Yönlendirme URL'
44
+ confidential: 'Gizli?'
45
+ actions: 'Eylemler'
46
+ confidentiality:
47
+ 'yes': 'Evet'
48
+ 'no': 'Hayır'
49
+ new:
50
+ title: 'Yeni Uygulama'
51
+ show:
52
+ title: "Uygulama: %{name}"
53
+ application_id: 'UID'
54
+ secret: 'Gizli'
55
+ secret_hashed: 'Gizli karma'
56
+ scopes: 'Yetkiler'
57
+ confidential: 'Gizli'
58
+ callback_urls: 'Yönlendirme URLleri'
59
+ actions: 'Eylemler'
60
+ not_defined: 'Belirtilmemiş'
61
+ authorizations:
62
+ buttons:
63
+ authorize: 'Yetkilendir'
64
+ deny: 'Reddet'
65
+ error:
66
+ title: 'Bir hata oluştu'
67
+ new:
68
+ title: 'Oturum zorunlu '
69
+ prompt: "%{client_name} kullanıcı hesabınıza yetkilendirmek istiyor musunuz?"
70
+ able_to: 'Bu uygulama şunu yapabilir'
71
+ show:
72
+ title: 'Yetkilendirme kodu'
73
+ form_post:
74
+ title: 'Bu formu gönderin'
75
+ authorized_applications:
76
+ confirmations:
77
+ revoke: 'Emin misiniz?'
78
+ buttons:
79
+ revoke: 'İptal et'
80
+ index:
81
+ title: 'Yetkilendirilmiş uygulamalar'
82
+ application: 'Uygulama'
83
+ created_at: 'Oluşturulma tarihi'
84
+ date_format: '%Y-%m-%d %H:%M:%S'
85
+ pre_authorization:
86
+ status: 'Yetkilendirme durumu'
87
+ errors:
88
+ messages:
89
+ invalid_request:
90
+ unknown: 'İstekte gerekli bir parametre eksik, desteklenmeyen bir parametre değeri içeriyor veya başka bir şekilde hatalı biçimlendirilmiş.'
91
+ missing_param: "%{value} parametresi eksik"
92
+ request_not_authorized: 'Talebin yetkilendirilmesi gerekiyor. Yetkilendirme isteği için gerekli parametre eksik veya geçersiz.'
93
+ invalid_redirect_uri: "İstenen yönlendirme URI'si hatalı biçimlendirilmiş veya istemci yönlendirme URI'si ile eşleşmiyor."
94
+ unauthorized_client: 'İstemci, bu yöntemi kullanarak bu isteği gerçekleştirme yetkisine sahip değil.'
95
+ access_denied: 'Kaynak sahibi veya yetkilendirme sunucusu, isteği reddetti.'
96
+ invalid_scope: 'İstenen kapsam geçersiz, bilinmiyor veya hatalı biçimlendirilmiş.'
97
+ invalid_code_challenge_method: 'Kod sorgulama yöntemi düz veya S256 olmalıdır.'
98
+ server_error: 'Yetkilendirme sunucusu, isteği yerine getirmesini engelleyen beklenmeyen bir koşulla karşılaştı.'
99
+ temporarily_unavailable: 'Yetkilendirme sunucusu, sunucunun geçici olarak aşırı yüklenmesi veya bakımı nedeniyle şu anda isteği işleyemiyor.'
100
+ credential_flow_not_configured: 'Doorkeeper.configure.resource_owner_from_credentials yapılandırılmadığından Kaynak Sahibi Parolası Kimlik Bilgileri akışı başarısız oldu.'
101
+ resource_owner_authenticator_not_configured: 'Doorkeeper.configure.resource_owner_authenticator yapılandırılmadığından Kaynak Sahibi bulma başarısız oldu.'
102
+ admin_authenticator_not_configured: 'Doorkeeper.configure.admin_authenticator yapılandırılmamış olduğundan yönetici paneline erişim yasaktır.'
103
+ unsupported_response_type: 'Yetkilendirme sunucusu bu yanıt türünü desteklemiyor.'
104
+ unsupported_response_mode: 'Yetkilendirme sunucusu bu yanıt modunu desteklemiyor.'
105
+ invalid_client: 'Bilinmeyen istemci, istemci kimlik doğrulamasının dahil edilmemesi veya desteklenmeyen kimlik doğrulama yöntemi nedeniyle istemci kimlik doğrulaması başarısız oldu.'
106
+ invalid_grant: "Sağlanan yetkilendirme yetkisi geçersiz, süresi doldu, iptal edildi, yetkilendirme talebinde kullanılan yeniden yönlendirme URI'si ile eşleşmiyor veya başka bir istemciye verildi."
107
+ unsupported_grant_type: 'Yetki verme türü, yetkilendirme sunucusu tarafından desteklenmiyor.'
108
+ invalid_token:
109
+ revoked: "Erişim jetonu geri alındı."
110
+ expired: "Erişim jetonu zaman aşımına uğradı ve kullanılmaya devam edemez."
111
+ unknown: "Erişim jetonu geçersiz."
112
+ revoke:
113
+ unauthorized: "Bu erişim jetonu için yetkilendirme yapılamadı."
114
+ forbidden_token:
115
+ missing_scope: "Bu kaynağa erişim için, %{oauth_scopes} yetkileri gerekli."
116
+ flash:
117
+ applications:
118
+ create:
119
+ notice: 'Uygulama oluşturuldu'
120
+ destroy:
121
+ notice: 'Uygulama silindi'
122
+ update:
123
+ notice: 'Uygulama güncellendi'
124
+ authorized_applications:
125
+ destroy:
126
+ notice: 'Yetkilendirilmiş uygulama silindi'
127
+ layouts:
128
+ admin:
129
+ title: 'Doorkeeper'
130
+ nav:
131
+ oauth2_provider: 'OAuth2 Sağlayıcı'
132
+ applications: 'Uygulamalar'
133
+ home: 'Anasayfa'
134
+ application:
135
+ title: 'OAuth yetkilendirmesi zorunlu'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doorkeeper-i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.3
4
+ version: 5.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tute Costa
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-09-24 00:00:00.000000000 Z
12
+ date: 2022-09-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: doorkeeper
@@ -90,8 +90,8 @@ extra_rdoc_files: []
90
90
  files:
91
91
  - ".editorconfig"
92
92
  - ".github/dependabot.yml"
93
+ - ".github/workflows/ci.yml"
93
94
  - ".gitignore"
94
- - ".travis.yml"
95
95
  - Gemfile
96
96
  - MIT-LICENSE
97
97
  - README.md
@@ -110,6 +110,7 @@ files:
110
110
  - rails/locales/es.yml
111
111
  - rails/locales/fi.yml
112
112
  - rails/locales/fr.yml
113
+ - rails/locales/id.yml
113
114
  - rails/locales/it.yml
114
115
  - rails/locales/ja.yml
115
116
  - rails/locales/ko.yml
@@ -118,6 +119,7 @@ files:
118
119
  - rails/locales/pt-BR.yml
119
120
  - rails/locales/ru.yml
120
121
  - rails/locales/sk.yml
122
+ - rails/locales/tr.yml
121
123
  - rails/locales/zh-CN.yml
122
124
  - rails/locales/zh-HK.yml
123
125
  - rails/locales/zh-TW.yml
@@ -147,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
147
149
  - !ruby/object:Gem::Version
148
150
  version: '0'
149
151
  requirements: []
150
- rubygems_version: 3.1.2
152
+ rubygems_version: 3.0.8
151
153
  signing_key:
152
154
  specification_version: 4
153
155
  summary: Translations for doorkeeper rubygem.
data/.travis.yml DELETED
@@ -1,9 +0,0 @@
1
- cache: bundler
2
- language: ruby
3
- sudo: false
4
- arch:
5
- - amd64
6
- - ppc64le
7
-
8
- rvm:
9
- - 2.6.2