muck-auth 3.3.0 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/app/controllers/muck/authentications_controller.rb +43 -13
- data/app/helpers/muck_auth_helper.rb +4 -2
- data/app/views/authentications/_available_services.html.erb +1 -2
- data/app/views/authentications/_current_services.html.erb +8 -4
- data/app/views/authentications/destroy.erb +2 -0
- data/app/views/authentications/index.html.erb +4 -4
- data/config/locales/ar.yml +2 -0
- data/config/locales/bg.yml +2 -0
- data/config/locales/ca.yml +2 -0
- data/config/locales/cs.yml +2 -0
- data/config/locales/da.yml +2 -0
- data/config/locales/de.yml +5 -3
- data/config/locales/el.yml +2 -0
- data/config/locales/en.yml +2 -0
- data/config/locales/es.yml +2 -0
- data/config/locales/et.yml +2 -0
- data/config/locales/fa.yml +6 -4
- data/config/locales/fi.yml +2 -0
- data/config/locales/fr.yml +2 -0
- data/config/locales/gl.yml +2 -0
- data/config/locales/hi.yml +2 -0
- data/config/locales/hr.yml +2 -0
- data/config/locales/ht.yml +2 -0
- data/config/locales/hu.yml +2 -0
- data/config/locales/id.yml +2 -0
- data/config/locales/it.yml +7 -5
- data/config/locales/iw.yml +2 -0
- data/config/locales/ja.yml +2 -0
- data/config/locales/ko.yml +2 -0
- data/config/locales/lt.yml +2 -0
- data/config/locales/lv.yml +2 -0
- data/config/locales/mt.yml +2 -0
- data/config/locales/nl.yml +5 -3
- data/config/locales/no.yml +2 -0
- data/config/locales/pl.yml +2 -0
- data/config/locales/pt-PT.yml +2 -0
- data/config/locales/ro.yml +2 -0
- data/config/locales/ru.yml +2 -0
- data/config/locales/sk.yml +2 -0
- data/config/locales/sl.yml +2 -0
- data/config/locales/sq.yml +2 -0
- data/config/locales/sr.yml +2 -0
- data/config/locales/sv.yml +6 -4
- data/config/locales/th.yml +2 -0
- data/config/locales/tl.yml +2 -0
- data/config/locales/tr.yml +5 -3
- data/config/locales/uk.yml +2 -0
- data/config/locales/vi.yml +2 -0
- data/config/locales/zh-CN.yml +2 -0
- data/config/locales/zh-TW.yml +2 -0
- data/config/locales/zh.yml +2 -0
- data/muck-auth.gemspec +3 -2
- metadata +5 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.3.
|
1
|
+
3.3.1
|
@@ -1,11 +1,7 @@
|
|
1
1
|
class Muck::AuthenticationsController < ApplicationController
|
2
2
|
def index
|
3
3
|
@current_authentications = current_user.authentications if current_user
|
4
|
-
|
5
|
-
@unused_authentications = Authentication.unused_services(@current_authentications)
|
6
|
-
else
|
7
|
-
@unused_authentications = Authentication.all_services
|
8
|
-
end
|
4
|
+
@unused_authentications = get_unused_authentications(@current_authentications)
|
9
5
|
respond_to do |format|
|
10
6
|
format.html { render :template => 'authentications/index' }
|
11
7
|
end
|
@@ -15,30 +11,33 @@ class Muck::AuthenticationsController < ApplicationController
|
|
15
11
|
@omniauth = request.env["omniauth.auth"]
|
16
12
|
# Associated the account with the user
|
17
13
|
if current_user
|
14
|
+
@user = current_user
|
18
15
|
current_user.authentications.create!(:provider => @omniauth['provider'], :uid => @omniauth['uid'], :raw_auth => @omniauth.to_json,
|
19
16
|
:token => @omniauth['credentials']['token'], :secret => @omniauth['credentials']['secret'] )
|
20
17
|
flash[:notice] = t('muck.auth.authentication_success')
|
21
|
-
|
22
|
-
# Try to log the user in via the service
|
23
|
-
elsif authentication = Authentication.find_by_provider_and_uid(@omniauth['provider'], @omniauth['uid'])
|
18
|
+
status = :logged_in_success
|
19
|
+
elsif authentication = Authentication.find_by_provider_and_uid(@omniauth['provider'], @omniauth['uid']) # Try to log the user in via the service
|
24
20
|
flash[:notice] = t('muck.users.login_success')
|
25
21
|
UserSession.create(authentication.user)
|
26
|
-
|
22
|
+
@user = current_user
|
23
|
+
status = :log_via_oauth_in_success
|
27
24
|
else
|
25
|
+
# Could not find any information. Create a new account.
|
28
26
|
@user = User.new
|
29
27
|
@user.apply_omniauth(@omniauth)
|
30
28
|
@user.generate_password
|
31
29
|
if @user.save
|
32
30
|
UserSession.create(@user)
|
33
31
|
flash[:notice] = t('muck.users.thanks_sign_up')
|
34
|
-
|
32
|
+
status = :new_signup_success
|
35
33
|
else
|
36
34
|
# Have to build a new user to get rid of the password
|
37
35
|
@user = User.new
|
38
36
|
@user.apply_omniauth(@omniauth)
|
39
|
-
|
37
|
+
status = :new_signup_failure
|
40
38
|
end
|
41
39
|
end
|
40
|
+
after_create_response(status)
|
42
41
|
end
|
43
42
|
|
44
43
|
def failure
|
@@ -50,7 +49,38 @@ class Muck::AuthenticationsController < ApplicationController
|
|
50
49
|
def destroy
|
51
50
|
@authentication = current_user.authentications.find(params[:id])
|
52
51
|
@authentication.destroy
|
53
|
-
|
54
|
-
|
52
|
+
@current_authentications = current_user.authentications
|
53
|
+
@unused_authentications = get_unused_authentications(@current_authentications)
|
54
|
+
respond_to do |format|
|
55
|
+
format.html do
|
56
|
+
flash[:notice] = t('muck.auth.removed_authentication')
|
57
|
+
redirect_to authentications_url
|
58
|
+
end
|
59
|
+
format.js { render :template => 'authentications/destroy' }
|
60
|
+
end
|
55
61
|
end
|
62
|
+
|
63
|
+
protected
|
64
|
+
|
65
|
+
def get_unused_authentications(current_authentications)
|
66
|
+
if current_authentications
|
67
|
+
Authentication.unused_services(current_authentications)
|
68
|
+
else
|
69
|
+
Authentication.all_services
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
def after_create_response(status)
|
74
|
+
case status
|
75
|
+
when :logged_in_success
|
76
|
+
redirect_to authentications_url
|
77
|
+
when :log_via_oauth_in_success
|
78
|
+
redirect_to authentications_url
|
79
|
+
when :new_signup_success
|
80
|
+
signup_complete_path(@user)
|
81
|
+
when :new_signup_failure
|
82
|
+
render :template => 'authentications/signup'
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
56
86
|
end
|
@@ -1,8 +1,10 @@
|
|
1
1
|
module MuckAuthHelper
|
2
2
|
|
3
|
-
def auth_list(include_icons)
|
3
|
+
def auth_list(include_icons, services_to_exclude = nil)
|
4
4
|
list = ''
|
5
|
-
Secrets.auth_credentials.keys
|
5
|
+
services = Secrets.auth_credentials.keys
|
6
|
+
services = services - services_to_exclude.map(&:provider) if services_to_exclude
|
7
|
+
services.each do |auth|
|
6
8
|
list << %Q{<li class="#{auth_css_class(auth)} auth_service service-link" #{auth_icon_back(auth, include_icons)} title="#{auth_title(auth)}">#{auth_link(auth)}</li>}
|
7
9
|
end
|
8
10
|
list.html_safe
|
@@ -1,8 +1,7 @@
|
|
1
1
|
<div id="auth_available_services" class="auth-services">
|
2
2
|
<% unless Secrets.auth_credentials.empty? %>
|
3
|
-
<h3><%=translate('muck.auth.you_can_connect_to_the_following_services') %></h3>
|
4
3
|
<ul <%='class="icon-list"'.html_safe if include_icons%>>
|
5
|
-
<%= auth_list(include_icons) %>
|
4
|
+
<%= auth_list(include_icons, @current_authentications) %>
|
6
5
|
</ul>
|
7
6
|
<% end %>
|
8
7
|
</div>
|
@@ -3,11 +3,15 @@
|
|
3
3
|
<p><%=translate('muck.auth.you_are_currently_not_connected_to_any_external_services') %></p>
|
4
4
|
<% else -%>
|
5
5
|
<p><%=translate('muck.auth.you_are_connected_to_the_following_services') %></p>
|
6
|
-
<ul
|
6
|
+
<ul class="icon-list">
|
7
7
|
<% authentications.each do |auth| -%>
|
8
|
-
<li class="<%=auth_css_class(auth.provider)%> oauth_service service-link" <%= auth_icon_back(auth.provider, include_icons) %>>
|
9
|
-
|
10
|
-
<%=
|
8
|
+
<li id="<%=auth.dom_id%>" class="<%=auth_css_class(auth.provider)%> oauth_service service-link" <%= auth_icon_back(auth.provider, include_icons).html_safe %>>
|
9
|
+
<p><%= auth_name(auth.provider) %></p>
|
10
|
+
<%= render(:partial => 'shared/delete', :locals => { :delete_object => auth,
|
11
|
+
:button_type => :image,
|
12
|
+
:button_text => "(disconnect)",
|
13
|
+
:form_class => 'disconnect-service',
|
14
|
+
:delete_path => authentication_path(auth, :format => 'js') }).html_safe %>
|
11
15
|
</li>
|
12
16
|
<% end -%>
|
13
17
|
</ul>
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<h1><%=translate('muck.auth.services') %></h1>
|
2
|
-
<% if @
|
3
|
-
<%= render 'authentications/current_services', :authentications => @current_authentications %>
|
4
|
-
<p
|
2
|
+
<% if @current_authentications %>
|
3
|
+
<%= render 'authentications/current_services', :authentications => @current_authentications, :include_icons => true %>
|
4
|
+
<p><%=translate('muck.auth.add_another_service') %></p>
|
5
5
|
<% else %>
|
6
|
-
<p
|
6
|
+
<p><%=translate('muck.auth.sign_in_via_service') %></p>
|
7
7
|
<% end %>
|
8
8
|
<%= render 'authentications/available_services', :authentications => @unused_authentications, :include_icons => true %>
|
data/config/locales/ar.yml
CHANGED
@@ -3,6 +3,7 @@ ar:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "عنوان رمز الوصول"
|
6
|
+
add_another_service: "إضافة إلى خدمة أخرى في قم بما يلي :"
|
6
7
|
application: التطبيق
|
7
8
|
application_developers: "مطوري التطبيقات"
|
8
9
|
are_you_sure: "هل أنت متأكد؟"
|
@@ -44,6 +45,7 @@ ar:
|
|
44
45
|
revoke: إلغاء!
|
45
46
|
services: الخدمات
|
46
47
|
show_label: عرض
|
48
|
+
sign_in_via_service: "تسجيل الدخول من خلال واحدة من هذه الخدمات :"
|
47
49
|
sign_up_prompt: "من أجل مواصلة يرجى تقديم المعلومات أدناه."
|
48
50
|
support_url_label: "دعم رابط"
|
49
51
|
tokens_issued: "وقد صدرت الرموز التالية للتطبيقات في اسمك"
|
data/config/locales/bg.yml
CHANGED
@@ -3,6 +3,7 @@ bg:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Кода за достъп URL"
|
6
|
+
add_another_service: "Добавяне на друга услуга да влезете с:"
|
6
7
|
application: Прилагане
|
7
8
|
application_developers: "Разработчиците на приложения"
|
8
9
|
are_you_sure: "Сигурни ли сте?"
|
@@ -44,6 +45,7 @@ bg:
|
|
44
45
|
revoke: Прекратяване!
|
45
46
|
services: Услуги
|
46
47
|
show_label: Покажи
|
48
|
+
sign_in_via_service: "Вход през една от тези услуги:"
|
47
49
|
sign_up_prompt: "За да продължи моля представете информацията по-долу."
|
48
50
|
support_url_label: "Подкрепа URL"
|
49
51
|
tokens_issued: "Следните символи са издадени на приложения във вашето име"
|
data/config/locales/ca.yml
CHANGED
@@ -3,6 +3,7 @@ ca:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Token d'accés URL"
|
6
|
+
add_another_service: "Afegeix a un altre servei per accedir a:"
|
6
7
|
application: Aplicació
|
7
8
|
application_developers: "Desenvolupadors d'Aplicacions"
|
8
9
|
are_you_sure: "Estàs segur?"
|
@@ -44,6 +45,7 @@ ca:
|
|
44
45
|
revoke: Revocar!
|
45
46
|
services: Serveis
|
46
47
|
show_label: Mostra
|
48
|
+
sign_in_via_service: "Entra a través d'un d'aquests serveis:"
|
47
49
|
sign_up_prompt: "Per tal de continuar si us plau completi el següent."
|
48
50
|
support_url_label: "Suport URL"
|
49
51
|
tokens_issued: "Les fitxes següents s'han emès a les aplicacions en el seu nom"
|
data/config/locales/cs.yml
CHANGED
@@ -3,6 +3,7 @@ cs:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Přístup Token URL"
|
6
|
+
add_another_service: "Přidat další služby přihlaste se:"
|
6
7
|
application: Aplikace
|
7
8
|
application_developers: "Vývojáři aplikací"
|
8
9
|
are_you_sure: "Jste si jisti?"
|
@@ -44,6 +45,7 @@ cs:
|
|
44
45
|
revoke: Odvolat!
|
45
46
|
services: Služby
|
46
47
|
show_label: Zobrazit
|
48
|
+
sign_in_via_service: "Přihlaste se přes jeden z těchto služeb:"
|
47
49
|
sign_up_prompt: "Aby bylo možné pokračovat, uveďte informace níže."
|
48
50
|
support_url_label: "Podpora URL"
|
49
51
|
tokens_issued: "Následující žetony byly vydány k aplikacím ve tvém jménu"
|
data/config/locales/da.yml
CHANGED
@@ -3,6 +3,7 @@ da:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Adgang Token URL"
|
6
|
+
add_another_service: "Tilføj en anden tjeneste at logge ind med:"
|
6
7
|
application: Ansøgning
|
7
8
|
application_developers: Applikationsudviklere
|
8
9
|
are_you_sure: "Er du sikker?"
|
@@ -44,6 +45,7 @@ da:
|
|
44
45
|
revoke: Tilbagekald!
|
45
46
|
services: Tjenester
|
46
47
|
show_label: Vis
|
48
|
+
sign_in_via_service: "Logge ind fra en af disse tjenester:"
|
47
49
|
sign_up_prompt: "For at fortsætte skal du angive nedenstående oplysninger."
|
48
50
|
support_url_label: "Support URL"
|
49
51
|
tokens_issued: "Følgende symboler er udstedt for ansøgninger i dit navn"
|
data/config/locales/de.yml
CHANGED
@@ -3,6 +3,7 @@ de:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Access Token URL"
|
6
|
+
add_another_service: "Fügen Sie einen weiteren Dienst in mit Vorzeichen:"
|
6
7
|
application: Anwendung
|
7
8
|
application_developers: Anwendungsentwickler
|
8
9
|
are_you_sure: "Sind Sie sicher?"
|
@@ -18,14 +19,14 @@ de:
|
|
18
19
|
connect_to_account_title: "Verbinden Sie Ihr Konto %{service}"
|
19
20
|
consume_secret: "Consumer Secret:"
|
20
21
|
delete: Löschen
|
21
|
-
destroyed_successfully: "Zerstört die Client-
|
22
|
+
destroyed_successfully: "Zerstört die Client-Applikation Anmeldung"
|
22
23
|
disconnect: Trennen
|
23
24
|
disconnect_or_reconnect: "%{disconnect}} Oder %{reconnect} wenn Sie erfahren ein Problem."
|
24
25
|
do_you_have_an_application_to_register: "Haben Sie eine Anwendung, die Sie gerne für den Einsatz mit uns über das %{link} Standard Register würde?"
|
25
26
|
edit: Bearbeiten
|
26
27
|
edit_application: "Bearbeiten Sie Ihre Anwendung"
|
27
28
|
edit_label: Bearbeiten
|
28
|
-
http_result_error: "Es gab ein Problem mit
|
29
|
+
http_result_error: "Es gab ein Problem mit Ihrem Antrag %{error}"
|
29
30
|
issued: Ausgestellt
|
30
31
|
main_application_label: "Hauptanwendung URL *"
|
31
32
|
name_label: "Name *"
|
@@ -44,6 +45,7 @@ de:
|
|
44
45
|
revoke: Widerrufen!
|
45
46
|
services: Dienstleistungen
|
46
47
|
show_label: Show
|
48
|
+
sign_in_via_service: "Melden Sie sich über einen dieser Dienste:"
|
47
49
|
sign_up_prompt: "Um auch in Zukunft geben Sie bitte die unten stehenden Informationen."
|
48
50
|
support_url_label: "Support URL"
|
49
51
|
tokens_issued: "Die folgenden Token müssen Anwendungen auf Ihren Namen ausgestellt"
|
@@ -51,7 +53,7 @@ de:
|
|
51
53
|
we_support_hmac_sha: "Wir unterstützen HMAC-SHA1 (empfohlen) als auch als Nur-Text im SSL-Modus."
|
52
54
|
wrong_id: "Falsche Anwendung id"
|
53
55
|
you_are_already_connected_to: "Sie sind bereits auf %{service} Connected"
|
54
|
-
you_are_connected_to_the_following_services: "Sie
|
56
|
+
you_are_connected_to_the_following_services: "Sie sind für folgende Leistungen verbunden:"
|
55
57
|
you_are_currently_not_connected_to_any_external_services: "Sie sind derzeit nicht auf externe Dienste angeschlossen."
|
56
58
|
you_can_connect_to_the_following_services: "Sie können die folgenden Dienste in Verbindung zu treten:"
|
57
59
|
you_have_the_following_client_applications_registered: "Sie haben folgende Client-Anwendungen registriert:"
|
data/config/locales/el.yml
CHANGED
@@ -3,6 +3,7 @@ el:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Δείτε το Κουπόνι URL"
|
6
|
+
add_another_service: "Προσθέστε άλλη υπηρεσία για να συνδεθείτε με:"
|
6
7
|
application: Εφαρμογή
|
7
8
|
application_developers: "Οι προγραμματιστές εφαρμογών"
|
8
9
|
are_you_sure: "Είσαι σίγουρος;"
|
@@ -44,6 +45,7 @@ el:
|
|
44
45
|
revoke: Ανάκληση!
|
45
46
|
services: Υπηρεσίες
|
46
47
|
show_label: Εμφάνιση
|
48
|
+
sign_in_via_service: "Συνδεθείτε μέσω ενός από αυτές τις υπηρεσίες:"
|
47
49
|
sign_up_prompt: "Για να συνεχιστεί δώστε τις παρακάτω πληροφορίες."
|
48
50
|
support_url_label: "URL Υποστήριξη"
|
49
51
|
tokens_issued: "Οι ακόλουθες μάρκες που έχουν εκδοθεί για τις αιτήσεις στο όνομά σας"
|
data/config/locales/en.yml
CHANGED
@@ -25,6 +25,7 @@ en:
|
|
25
25
|
name_label: Name*
|
26
26
|
request_allowed: You have allowed this request
|
27
27
|
authorize_access_question: Would you like to authorize %{name}} (%{link}) to access your account?
|
28
|
+
sign_in_via_service: "Sign in through one of these services:"
|
28
29
|
you_are_already_connected_to: You are already Connected to %{service}
|
29
30
|
request_token_url: Request Token URL
|
30
31
|
application: Application
|
@@ -36,6 +37,7 @@ en:
|
|
36
37
|
authorize_access_label: authorize access
|
37
38
|
registered_successfully: Registered the information successfully
|
38
39
|
wrong_id: Wrong application id
|
40
|
+
add_another_service: "Add another service to sign in with:"
|
39
41
|
you_are_connected_to_the_following_services: "You are connected to the following services:"
|
40
42
|
authorize_url: Authorize URL
|
41
43
|
access_token_url: Access Token URL
|
data/config/locales/es.yml
CHANGED
@@ -3,6 +3,7 @@ es:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Token de acceso URL"
|
6
|
+
add_another_service: "Agregar a otro servicio para acceder a:"
|
6
7
|
application: Aplicación
|
7
8
|
application_developers: "Desarrolladores de Aplicaciones"
|
8
9
|
are_you_sure: "¿Estás seguro?"
|
@@ -44,6 +45,7 @@ es:
|
|
44
45
|
revoke: Revocar!
|
45
46
|
services: Servicios
|
46
47
|
show_label: Mostrar
|
48
|
+
sign_in_via_service: "Entra a través de uno de estos servicios:"
|
47
49
|
sign_up_prompt: "A fin de continuar por favor complete el siguiente."
|
48
50
|
support_url_label: "Apoyo URL"
|
49
51
|
tokens_issued: "Las fichas siguientes se han emitido a las aplicaciones en su nombre"
|
data/config/locales/et.yml
CHANGED
@@ -3,6 +3,7 @@ et:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Juurdepääs Token URL"
|
6
|
+
add_another_service: "Lisa teise teenuse sisse logida:"
|
6
7
|
application: Kohaldamine
|
7
8
|
application_developers: "Rakenduste arendajatele"
|
8
9
|
are_you_sure: "Oled sa kindel?"
|
@@ -44,6 +45,7 @@ et:
|
|
44
45
|
revoke: Tühistage!
|
45
46
|
services: Teenused
|
46
47
|
show_label: Näita
|
48
|
+
sign_in_via_service: "Logi sisse kaudu ühe neist teenused:"
|
47
49
|
sign_up_prompt: "Selleks, et jätkuvalt esitage allpool toodud andmed."
|
48
50
|
support_url_label: "Toetada URL"
|
49
51
|
tokens_issued: "Järgmised märgid on väljastatud taotluste su nimi"
|
data/config/locales/fa.yml
CHANGED
@@ -3,14 +3,15 @@ fa:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "آدرس دسترسی به نشانه"
|
6
|
+
add_another_service: "اضافه کردن یک سرویس دیگر برای ثبت در با :"
|
6
7
|
application: برنامه
|
7
8
|
application_developers: "برنامه گسترشدهندگان"
|
8
|
-
are_you_sure: "
|
9
|
+
are_you_sure: "شما مطمئن هستید؟"
|
9
10
|
auth_connect_error: "خطا رخ داده است در حالی که تلاش برای اتصال به سرویس."
|
10
11
|
authentication_success: "تایید موفقیت آمیز بود."
|
11
12
|
authorize_access: "اجازه دسترسی به حساب کاربری خود شوید"
|
12
13
|
authorize_access_label: "اجازه دسترسی"
|
13
|
-
authorize_access_question: "آیا می خواهید به اجازه (%{name})%{link}} حساب کاربری
|
14
|
+
authorize_access_question: "مانند آیا می خواهید به اجازه (%{name})%{link}} حساب کاربری شما اجازه دسترسی به؟"
|
14
15
|
authorize_url: "آدرس اجازه"
|
15
16
|
back: برگشت
|
16
17
|
back_label: برگشت
|
@@ -36,7 +37,7 @@ fa:
|
|
36
37
|
register_a_new_application: "ثبت نام نرم افزار جدید"
|
37
38
|
register_your_application: "ثبت نام درخواست خود را"
|
38
39
|
registered_successfully: "اطلاعات ثبت نام با موفقیت"
|
39
|
-
remove_authentication_confirm: "آیا
|
40
|
+
remove_authentication_confirm: "آیا شما مطمئنید که می خواهید برای حذف این گزینه خروج؟"
|
40
41
|
removed_authentication: "با موفقیت حذف و خروج."
|
41
42
|
request_allowed: "شما اجازه داده اند این درخواست"
|
42
43
|
request_disallowed: "شما مجاز این درخواست"
|
@@ -44,6 +45,7 @@ fa:
|
|
44
45
|
revoke: "را لغو کنید!"
|
45
46
|
services: خدمات
|
46
47
|
show_label: نمایش
|
48
|
+
sign_in_via_service: "ثبت نام از طریق یکی از این خدمات :"
|
47
49
|
sign_up_prompt: "برای ادامه لطفا اطلاعات زیر کلیک کنید."
|
48
50
|
support_url_label: "آدرس پشتیبانی"
|
49
51
|
tokens_issued: "آیات زیر شده به نام شما صادر شده به یک برنامه"
|
@@ -51,7 +53,7 @@ fa:
|
|
51
53
|
we_support_hmac_sha: "ما از hmac - sha1 (توصیه شده) و همچنین به عنوان متن ساده در حالت اس اس ال."
|
52
54
|
wrong_id: "نرم افزار اشتباه شناسه"
|
53
55
|
you_are_already_connected_to: "شما در حال حاضر به %{service} وصل"
|
54
|
-
you_are_connected_to_the_following_services: "شما به خدمات پس از
|
56
|
+
you_are_connected_to_the_following_services: "شما به خدمات پس از متصل :"
|
55
57
|
you_are_currently_not_connected_to_any_external_services: "شما در حال حاضر به هر گونه خدمات خارجی وصل نشده است."
|
56
58
|
you_can_connect_to_the_following_services: "شما می توانید به خدمات زیر در تماس باشید :"
|
57
59
|
you_have_the_following_client_applications_registered: "شما باید برنامه های زیر ثبت نام مشتری :"
|
data/config/locales/fi.yml
CHANGED
@@ -3,6 +3,7 @@ fi:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Access Token URL"
|
6
|
+
add_another_service: "Lisää toinen palvelu on kirjauduttava sisään:"
|
6
7
|
application: Soveltaminen
|
7
8
|
application_developers: "Sovellusten kehittäjille"
|
8
9
|
are_you_sure: "Oletko varma?"
|
@@ -44,6 +45,7 @@ fi:
|
|
44
45
|
revoke: Peruuta!
|
45
46
|
services: Palvelut
|
46
47
|
show_label: Näytä
|
48
|
+
sign_in_via_service: "Kirjaudu sisään johonkin näistä palveluista:"
|
47
49
|
sign_up_prompt: "Jotta voit jatkaa Antakaa tiedot alla."
|
48
50
|
support_url_label: "Tuki URL"
|
49
51
|
tokens_issued: "Seuraavat rahakkeilla on myönnetty hakemusten nimesi"
|
data/config/locales/fr.yml
CHANGED
@@ -3,6 +3,7 @@ fr:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Accès URL Token"
|
6
|
+
add_another_service: "Ajouter un autre service de signer avec:"
|
6
7
|
application: Application
|
7
8
|
application_developers: "Les développeurs d'applications"
|
8
9
|
are_you_sure: "Etes-vous sûr?"
|
@@ -44,6 +45,7 @@ fr:
|
|
44
45
|
revoke: Révoquer!
|
45
46
|
services: Services
|
46
47
|
show_label: Voir
|
48
|
+
sign_in_via_service: "Inscrivez-vous à travers un de ces services:"
|
47
49
|
sign_up_prompt: "Afin de continuer s'il vous plaît fournir les informations ci-dessous."
|
48
50
|
support_url_label: "URL du support technique"
|
49
51
|
tokens_issued: "Les items suivants ont été délivrés à des applications à votre nom"
|
data/config/locales/gl.yml
CHANGED
@@ -3,6 +3,7 @@ gl:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Acceso a URL Token"
|
6
|
+
add_another_service: "Engadir outro servizo para escribir:"
|
6
7
|
application: Aplicación
|
7
8
|
application_developers: "Desenvolvedores de aplicacións"
|
8
9
|
are_you_sure: "Está seguro?"
|
@@ -44,6 +45,7 @@ gl:
|
|
44
45
|
revoke: Revogar!
|
45
46
|
services: Servizos
|
46
47
|
show_label: Show
|
48
|
+
sign_in_via_service: "Rexístrate en medio dun destes servizos:"
|
47
49
|
sign_up_prompt: "Para continuar a proporcionar a información seguinte."
|
48
50
|
support_url_label: "URL de soporte"
|
49
51
|
tokens_issued: "Os seguintes símbolos foron emitidos para aplicacións no seu nome"
|
data/config/locales/hi.yml
CHANGED
@@ -3,6 +3,7 @@ hi:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "पहुँच टोकन यूआरएल"
|
6
|
+
add_another_service: "दूसरे के साथ साइन इन सर्विस जोड़ें:"
|
6
7
|
application: आवेदन
|
7
8
|
application_developers: "आवेदन डेवलपर्स"
|
8
9
|
are_you_sure: "तुम्हें यकीन है?"
|
@@ -44,6 +45,7 @@ hi:
|
|
44
45
|
revoke: रद्द!
|
45
46
|
services: सेवाएँ
|
46
47
|
show_label: दिखाएँ
|
48
|
+
sign_in_via_service: "एक इन सेवाओं के माध्यम से साइन इन करें:"
|
47
49
|
sign_up_prompt: "आदेश में जारी रखने के लिए नीचे दी गई जानकारी प्रदान करें."
|
48
50
|
support_url_label: "समर्थन यूआरएल"
|
49
51
|
tokens_issued: "निम्नलिखित टोकन अपने नाम में किया गया है अनुप्रयोगों के लिए जारी"
|
data/config/locales/hr.yml
CHANGED
@@ -3,6 +3,7 @@ hr:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Access Token URL"
|
6
|
+
add_another_service: "Dodaj još jedan servis za prijavu u sa:"
|
6
7
|
application: Primjena
|
7
8
|
application_developers: "Primjena programere"
|
8
9
|
are_you_sure: "Jeste li sigurni?"
|
@@ -44,6 +45,7 @@ hr:
|
|
44
45
|
revoke: Opoziv!
|
45
46
|
services: Usluge
|
46
47
|
show_label: Prikaži
|
48
|
+
sign_in_via_service: "Prijavite se kroz jedan od tih usluga:"
|
47
49
|
sign_up_prompt: "Da bi se nastaviti navedite informacije u nastavku."
|
48
50
|
support_url_label: "Podrška URL"
|
49
51
|
tokens_issued: "Sljedeći tokeni su izdane aplikacija u svoje ime"
|
data/config/locales/ht.yml
CHANGED
@@ -3,6 +3,7 @@ ht:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Aksè jton URL"
|
6
|
+
add_another_service: "Ajoute yon lòt sèvis nan siyen nan avèk:"
|
6
7
|
application: Aplikasyon
|
7
8
|
application_developers: "Aplikasyon Developers"
|
8
9
|
are_you_sure: "Èske ou asire?"
|
@@ -44,6 +45,7 @@ ht:
|
|
44
45
|
revoke: Revoke!
|
45
46
|
services: Sèvis
|
46
47
|
show_label: Montre
|
48
|
+
sign_in_via_service: "Siyen nan nan youn nan sèvis sa yo:"
|
47
49
|
sign_up_prompt: "Yo nan lòd yo kontinye tanpri bay enfòmasyon ki anba yo."
|
48
50
|
support_url_label: "URL Sipò"
|
49
51
|
tokens_issued: "marqueur sa yo yo te bay aplikasyon nan non ou"
|
data/config/locales/hu.yml
CHANGED
@@ -3,6 +3,7 @@ hu:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Access Token URL"
|
6
|
+
add_another_service: "Újabb szolgáltatás jelentkezzen:"
|
6
7
|
application: Alkalmazás
|
7
8
|
application_developers: Alkalmazás-fejlesztők
|
8
9
|
are_you_sure: "Biztos vagy benne?"
|
@@ -44,6 +45,7 @@ hu:
|
|
44
45
|
revoke: Visszavonja!
|
45
46
|
services: Szolgáltatások
|
46
47
|
show_label: Térkép
|
48
|
+
sign_in_via_service: "Jelentkezzen be, az egyik ilyen szolgáltatás:"
|
47
49
|
sign_up_prompt: "Annak érdekében, hogy továbbra is kérjük, adja meg az alábbi adatokat."
|
48
50
|
support_url_label: "Támogatás URL"
|
49
51
|
tokens_issued: "Az alábbi tokenek adtak ki az alkalmazásokra be a nevét"
|
data/config/locales/id.yml
CHANGED
@@ -3,6 +3,7 @@ id:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Akses Token URL"
|
6
|
+
add_another_service: "Tambahkan layanan lain untuk sign in dengan:"
|
6
7
|
application: Aplikasi
|
7
8
|
application_developers: "Aplikasi Pengembang"
|
8
9
|
are_you_sure: "Apakah Anda yakin?"
|
@@ -44,6 +45,7 @@ id:
|
|
44
45
|
revoke: Batalkan!
|
45
46
|
services: Layanan
|
46
47
|
show_label: Tampilkan
|
48
|
+
sign_in_via_service: "Sign in melalui salah satu layanan ini:"
|
47
49
|
sign_up_prompt: "Untuk melanjutkan silakan berikan informasi di bawah ini."
|
48
50
|
support_url_label: "Dukungan URL"
|
49
51
|
tokens_issued: "The token berikut telah diterbitkan ke aplikasi dalam nama Anda"
|
data/config/locales/it.yml
CHANGED
@@ -3,13 +3,14 @@ it:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Accesso URL Token"
|
6
|
+
add_another_service: "Aggiungi un altro servizio per accedere con:"
|
6
7
|
application: Applicazione
|
7
8
|
application_developers: "Sviluppatori di applicazioni"
|
8
9
|
are_you_sure: "Sei sicuro?"
|
9
10
|
auth_connect_error: "È verificato un errore durante il tentativo di connessione al servizio."
|
10
11
|
authentication_success: Autenticazione.
|
11
12
|
authorize_access: "Autorizzare l'accesso al tuo account"
|
12
|
-
authorize_access_label: "autorizzare
|
13
|
+
authorize_access_label: "autorizzare accesso"
|
13
14
|
authorize_access_question: "Volete autorizzare (%{name}) %{link}} per accedere al tuo account?"
|
14
15
|
authorize_url: "Autorizza URL"
|
15
16
|
back: Indietro
|
@@ -18,7 +19,7 @@ it:
|
|
18
19
|
connect_to_account_title: "Connettersi al proprio account %{service}"
|
19
20
|
consume_secret: "Consumer segreto:"
|
20
21
|
delete: Elimina
|
21
|
-
destroyed_successfully: "Distrutta la registrazione applicazione client"
|
22
|
+
destroyed_successfully: "Distrutta la registrazione dell'applicazione client"
|
22
23
|
disconnect: Scollegare
|
23
24
|
disconnect_or_reconnect: "%{disconnect}} %{reconnect} O se si è verificato un problema."
|
24
25
|
do_you_have_an_application_to_register: "Hai una applicazione che si desidera registrare per l'utilizzo con noi che utilizzano lo standard %{link}?"
|
@@ -27,7 +28,7 @@ it:
|
|
27
28
|
edit_label: Modifica
|
28
29
|
http_result_error: "C'è stato un problema con la tua richiesta %{error}"
|
29
30
|
issued: Rilasciato
|
30
|
-
main_application_label: "
|
31
|
+
main_application_label: "Main URL Applicazione *"
|
31
32
|
name_label: "Nome *"
|
32
33
|
or: o
|
33
34
|
problem_creating_account: "C'è stato un problema della creazione dell'account."
|
@@ -43,12 +44,13 @@ it:
|
|
43
44
|
request_token_url: "Richiesta URL Token"
|
44
45
|
revoke: Revoca!
|
45
46
|
services: Servizi
|
46
|
-
show_label:
|
47
|
+
show_label: Mostra
|
48
|
+
sign_in_via_service: "Entra attraverso uno di questi servizi:"
|
47
49
|
sign_up_prompt: "Per continuare si prega di fornire le informazioni qui di seguito."
|
48
50
|
support_url_label: "Supporto URL"
|
49
51
|
tokens_issued: "I token seguenti sono state rilasciate per le applicazioni a vostro nome"
|
50
52
|
updated_successfully: "Aggiornato le informazioni del client con successo"
|
51
|
-
we_support_hmac_sha: "
|
53
|
+
we_support_hmac_sha: "Noi sosteniamo HMAC-SHA1 (consigliato), così come testo normale in modalità SSL."
|
52
54
|
wrong_id: "Applicazione sbagliata id"
|
53
55
|
you_are_already_connected_to: "Si è già connessi a %{service}"
|
54
56
|
you_are_connected_to_the_following_services: "Si è collegati con i seguenti servizi:"
|
data/config/locales/iw.yml
CHANGED
@@ -3,6 +3,7 @@ iw:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "אסימון הגישה URL"
|
6
|
+
add_another_service: "הוסף עוד שירות להיכנס עם:"
|
6
7
|
application: יישום
|
7
8
|
application_developers: "יישום מפתחים"
|
8
9
|
are_you_sure: "האם אתה בטוח?"
|
@@ -44,6 +45,7 @@ iw:
|
|
44
45
|
revoke: בטל!
|
45
46
|
services: שירותים
|
46
47
|
show_label: הצג
|
48
|
+
sign_in_via_service: "הירשם דרך אחד השירותים האלה:"
|
47
49
|
sign_up_prompt: "כדי להמשיך נא לציין את הפרטים הבאים."
|
48
50
|
support_url_label: "תמיכה תכנית"
|
49
51
|
tokens_issued: "אסימונים הבאים ניתנו יישומים בשם שלך"
|
data/config/locales/ja.yml
CHANGED
@@ -3,6 +3,7 @@ ja:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: アクセストークンのURL
|
6
|
+
add_another_service: でログインするために別のサービスを追加:
|
6
7
|
application: アプリケーション
|
7
8
|
application_developers: アプリケーション開発者
|
8
9
|
are_you_sure: あなたはよろしいですか?
|
@@ -44,6 +45,7 @@ ja:
|
|
44
45
|
revoke: 取り消し!
|
45
46
|
services: サービス
|
46
47
|
show_label: 地図
|
48
|
+
sign_in_via_service: これらのサービスのいずれかを介してしましょう:
|
47
49
|
sign_up_prompt: ためには、以下の情報を提供して続行してください。
|
48
50
|
support_url_label: サポートURL
|
49
51
|
tokens_issued: 次のトークンがあなたの名前のアプリケーションに発行されている
|
data/config/locales/ko.yml
CHANGED
@@ -3,6 +3,7 @@ ko:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "액세스 토큰 URL"
|
6
|
+
add_another_service: "으로 로그인하는 다른 서비스를 추가합니다 :"
|
6
7
|
application: "응용 프로그램"
|
7
8
|
application_developers: "응용 프로그램 개발자"
|
8
9
|
are_you_sure: "당신은 확실한가요?"
|
@@ -44,6 +45,7 @@ ko:
|
|
44
45
|
revoke: 취소!
|
45
46
|
services: 서비스
|
46
47
|
show_label: 보기
|
48
|
+
sign_in_via_service: "이러한 서비스 중 하나를 통해 로그인 :"
|
47
49
|
sign_up_prompt: "위해서 아래의 정보를 입력해주십시오 계속합니다."
|
48
50
|
support_url_label: "지원 URL을"
|
49
51
|
tokens_issued: "다음의 토큰의 이름으로 응용 프로그램에 발행되었습니다"
|
data/config/locales/lt.yml
CHANGED
@@ -3,6 +3,7 @@ lt:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Prisijunkite ženklas URL"
|
6
|
+
add_another_service: "Pridėti dar vieną paslaugą prisijungti:"
|
6
7
|
application: Taikymas
|
7
8
|
application_developers: "Application Developers"
|
8
9
|
are_you_sure: "Ar tikrai?"
|
@@ -44,6 +45,7 @@ lt:
|
|
44
45
|
revoke: Atšaukti!
|
45
46
|
services: Paslaugos
|
46
47
|
show_label: Rodyti
|
48
|
+
sign_in_via_service: "Prisijungti, naudojant vieną iš šių paslaugų:"
|
47
49
|
sign_up_prompt: "Siekiant toliau pateikite informacijos žemiau."
|
48
50
|
support_url_label: "Pagalba URL"
|
49
51
|
tokens_issued: "Taip žetonų buvo išduoti programas į jūsų pavadinimas"
|
data/config/locales/lv.yml
CHANGED
@@ -3,6 +3,7 @@ lv:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Piekļuves pilnvara URL"
|
6
|
+
add_another_service: "Pievienot citu pakalpojumu, lai pierakstītos ar:"
|
6
7
|
application: Pieteikumu
|
7
8
|
application_developers: "Lietojumprogrammu izstrādātājiem"
|
8
9
|
are_you_sure: "Vai esat pārliecināts?"
|
@@ -44,6 +45,7 @@ lv:
|
|
44
45
|
revoke: Atsaukt!
|
45
46
|
services: Pakalpojumi
|
46
47
|
show_label: Rādīt
|
48
|
+
sign_in_via_service: "Pierakstieties, izmantojot vienu no šiem pakalpojumiem:"
|
47
49
|
sign_up_prompt: "Lai turpinātu, lūdzu, sniedziet informāciju."
|
48
50
|
support_url_label: "Atbalsta URL"
|
49
51
|
tokens_issued: "Šādus žetonus ir izsniegtas uz pieteikumiem, kas savu vārdu"
|
data/config/locales/mt.yml
CHANGED
@@ -3,6 +3,7 @@ mt:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Aċċess URL Token"
|
6
|
+
add_another_service: "Żid servizz ieħor li jiffirma ma ':"
|
6
7
|
application: Applikazzjoni
|
7
8
|
application_developers: "Application Developers"
|
8
9
|
are_you_sure: "Are you sure?"
|
@@ -44,6 +45,7 @@ mt:
|
|
44
45
|
revoke: Tirrevoka!
|
45
46
|
services: Servizzi
|
46
47
|
show_label: Uri
|
48
|
+
sign_in_via_service: "Sinjal permezz ta 'wieħed minn dawn is-servizzi:"
|
47
49
|
sign_up_prompt: "Sabiex ikompli jekk jogħġbok ipprovdi l-informazzjoni hawn taħt."
|
48
50
|
support_url_label: "URL Appoġġ"
|
49
51
|
tokens_issued: "Il-tokens li ġejjin ġew maħruġa għall-applikazzjonijiet fl-isem tiegħek"
|
data/config/locales/nl.yml
CHANGED
@@ -3,10 +3,11 @@ nl:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Toegangstoken URL"
|
6
|
+
add_another_service: "Voeg een andere dienst aan te melden met:"
|
6
7
|
application: Toepassing
|
7
8
|
application_developers: Applicatie-ontwikkelaars
|
8
9
|
are_you_sure: "Ben je zeker?"
|
9
|
-
auth_connect_error: "
|
10
|
+
auth_connect_error: "Er is een fout opgetreden tijdens het verbinding probeert te maken met de dienst."
|
10
11
|
authentication_success: "Authenticatie is geslaagd."
|
11
12
|
authorize_access: "Verleent hem toegang tot uw account"
|
12
13
|
authorize_access_label: "staan toegang tot de"
|
@@ -26,7 +27,7 @@ nl:
|
|
26
27
|
edit_application: "Bewerk uw aanvraag"
|
27
28
|
edit_label: Bewerken
|
28
29
|
http_result_error: "Er was een probleem met uw verzoek %{error}"
|
29
|
-
issued:
|
30
|
+
issued: Uitgegeven
|
30
31
|
main_application_label: "Belangrijkste toepassing URL *"
|
31
32
|
name_label: "Naam *"
|
32
33
|
or: of
|
@@ -35,7 +36,7 @@ nl:
|
|
35
36
|
register: Registreren
|
36
37
|
register_a_new_application: "Registreer een nieuwe aanvraag"
|
37
38
|
register_your_application: "Registreer uw aanvraag"
|
38
|
-
registered_successfully: "
|
39
|
+
registered_successfully: "Geregistreerd de informatie succesvol"
|
39
40
|
remove_authentication_confirm: "Ben je zeker dat je dit wilt authenticatie optie verwijderen?"
|
40
41
|
removed_authentication: "Succesvol verwijderd authenticatie."
|
41
42
|
request_allowed: "Je hebt toegestaan dit verzoek"
|
@@ -44,6 +45,7 @@ nl:
|
|
44
45
|
revoke: Trekken!
|
45
46
|
services: Diensten
|
46
47
|
show_label: Show
|
48
|
+
sign_in_via_service: "Aanmelden via een van deze diensten:"
|
47
49
|
sign_up_prompt: "Om te kunnen blijven dan de hieronder gevraagde informatie."
|
48
50
|
support_url_label: "URL voor ondersteuning"
|
49
51
|
tokens_issued: "De volgende tokens zijn afgegeven aan toepassingen in uw naam"
|
data/config/locales/no.yml
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
muck:
|
5
5
|
auth:
|
6
6
|
access_token_url: "Access Token URL"
|
7
|
+
add_another_service: "Legg en annen tjeneste for å logge inn med:"
|
7
8
|
application: Søknad
|
8
9
|
application_developers: "Søknad Utviklere"
|
9
10
|
are_you_sure: "Er du sikker?"
|
@@ -45,6 +46,7 @@
|
|
45
46
|
revoke: Opphev!
|
46
47
|
services: Tjenester
|
47
48
|
show_label: Vis
|
49
|
+
sign_in_via_service: "Logge på via en av disse tjenestene:"
|
48
50
|
sign_up_prompt: "For å fortsette må du oppgi informasjonen nedenfor."
|
49
51
|
support_url_label: "Støtte URL"
|
50
52
|
tokens_issued: "Følgende symboler er utstedt til applikasjoner i ditt navn"
|
data/config/locales/pl.yml
CHANGED
@@ -3,6 +3,7 @@ pl:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Access Token URL"
|
6
|
+
add_another_service: "Dodaj kolejny serwis do zalogowania się z:"
|
6
7
|
application: Zastosowanie
|
7
8
|
application_developers: Programistów
|
8
9
|
are_you_sure: "Czy na pewno?"
|
@@ -44,6 +45,7 @@ pl:
|
|
44
45
|
revoke: Odwołaj!
|
45
46
|
services: Usługi
|
46
47
|
show_label: Pokaż
|
48
|
+
sign_in_via_service: "Zaloguj się za pomocą jednej z tych usług:"
|
47
49
|
sign_up_prompt: "W celu kontynuacji należy podać poniższe informacje."
|
48
50
|
support_url_label: "Adres URL pomocy"
|
49
51
|
tokens_issued: "Następujące żetony zostały wydane do wniosków w nazwie"
|
data/config/locales/pt-PT.yml
CHANGED
@@ -3,6 +3,7 @@ pt-PT:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Acesso à URL Token"
|
6
|
+
add_another_service: "Adicionar outro serviço para entrar com:"
|
6
7
|
application: Aplicação
|
7
8
|
application_developers: "Desenvolvedores de aplicativos"
|
8
9
|
are_you_sure: "Você tem certeza?"
|
@@ -44,6 +45,7 @@ pt-PT:
|
|
44
45
|
revoke: Revogar!
|
45
46
|
services: Serviços
|
46
47
|
show_label: Show
|
48
|
+
sign_in_via_service: "Inscreva-se no meio de um desses serviços:"
|
47
49
|
sign_up_prompt: "Para continuar a fornecer as informações abaixo."
|
48
50
|
support_url_label: "URL de suporte"
|
49
51
|
tokens_issued: "Os seguintes símbolos foram emitidos para aplicações em seu nome"
|
data/config/locales/ro.yml
CHANGED
@@ -3,6 +3,7 @@ ro:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Acces Token URL"
|
6
|
+
add_another_service: "Adauga un alt serviciu pentru a semna în cu:"
|
6
7
|
application: Cerere
|
7
8
|
application_developers: "Cerere Dezvoltatori"
|
8
9
|
are_you_sure: "Esti sigur?"
|
@@ -44,6 +45,7 @@ ro:
|
|
44
45
|
revoke: Revocaţi!
|
45
46
|
services: Servicii
|
46
47
|
show_label: Arată
|
48
|
+
sign_in_via_service: "Înscrie-te în printr-una din aceste servicii:"
|
47
49
|
sign_up_prompt: "În scopul de a continua vă rugăm să furnizaţi informaţiile de mai jos."
|
48
50
|
support_url_label: "URL-ul de sprijin"
|
49
51
|
tokens_issued: "Jetoanele au fost emise la aplicaţii în numele dvs."
|
data/config/locales/ru.yml
CHANGED
@@ -3,6 +3,7 @@ ru:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Маркер доступа URL"
|
6
|
+
add_another_service: "Добавить еще один сервис для входа в систему:"
|
6
7
|
application: Применение
|
7
8
|
application_developers: "Разработчиков приложений"
|
8
9
|
are_you_sure: "Вы уверены?"
|
@@ -44,6 +45,7 @@ ru:
|
|
44
45
|
revoke: Отменить!
|
45
46
|
services: Услуги
|
46
47
|
show_label: Показать
|
48
|
+
sign_in_via_service: "Зарегистрируйтесь через одну из этих услуг:"
|
47
49
|
sign_up_prompt: "Для того, чтобы продолжать просьба представить информацию ниже."
|
48
50
|
support_url_label: "Поддержка URL"
|
49
51
|
tokens_issued: "Следующие маркеры были выданы приложения на ваше имя"
|
data/config/locales/sk.yml
CHANGED
@@ -3,6 +3,7 @@ sk:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Prístup Token URL"
|
6
|
+
add_another_service: "Pridať ďalšie služby prihláste sa:"
|
6
7
|
application: Aplikácia
|
7
8
|
application_developers: "Vývojári aplikácií"
|
8
9
|
are_you_sure: "Ste si istí?"
|
@@ -44,6 +45,7 @@ sk:
|
|
44
45
|
revoke: Odvolať!
|
45
46
|
services: Služby
|
46
47
|
show_label: Zobraziť
|
48
|
+
sign_in_via_service: "Prihláste sa cez jeden z týchto služieb:"
|
47
49
|
sign_up_prompt: "Aby bolo možné pokračovať, uveďte informácie nižšie."
|
48
50
|
support_url_label: "Podpora URL"
|
49
51
|
tokens_issued: "Nasledujúce žetóny boli vydané k aplikáciám v tvojom mene"
|
data/config/locales/sl.yml
CHANGED
@@ -3,6 +3,7 @@ sl:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Dostop žeton URL"
|
6
|
+
add_another_service: "Dodaj še eno storitev, da se prijavite z:"
|
6
7
|
application: Uporaba
|
7
8
|
application_developers: "Uporaba Razvijalci"
|
8
9
|
are_you_sure: "Ali ste prepričani?"
|
@@ -44,6 +45,7 @@ sl:
|
|
44
45
|
revoke: Prekliči!
|
45
46
|
services: Storitve
|
46
47
|
show_label: Prikaži
|
48
|
+
sign_in_via_service: "Prijavite se prek enega od teh storitev:"
|
47
49
|
sign_up_prompt: "Da bi še naprej navedite spodnje podatke."
|
48
50
|
support_url_label: "Podpora URL"
|
49
51
|
tokens_issued: "Naslednji žetoni so bile izdane do aplikacij na vaše ime"
|
data/config/locales/sq.yml
CHANGED
@@ -3,6 +3,7 @@ sq:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "URL Access Token"
|
6
|
+
add_another_service: "Shtoni një tjetër shërbim të nënshkruajë në me:"
|
6
7
|
application: Zbatim
|
7
8
|
application_developers: "Application Developers"
|
8
9
|
are_you_sure: "A jeni i sigurt?"
|
@@ -44,6 +45,7 @@ sq:
|
|
44
45
|
revoke: Revokojë!
|
45
46
|
services: Shërbimet
|
46
47
|
show_label: Tregojnë
|
48
|
+
sign_in_via_service: "Sign in përmes një nga këto shërbime:"
|
47
49
|
sign_up_prompt: "Në mënyrë që të vazhdojë lutem siguroni informacionet më poshtë."
|
48
50
|
support_url_label: "URL Support"
|
49
51
|
tokens_issued: "Argumentet e mëposhtme janë lëshuar për të aplikimeve në emrin tuaj"
|
data/config/locales/sr.yml
CHANGED
@@ -3,6 +3,7 @@ sr:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Приступ УРЛ адреса токена"
|
6
|
+
add_another_service: "Додајте још један сервис да се пријавите са:"
|
6
7
|
application: Апликација
|
7
8
|
application_developers: Апликација
|
8
9
|
are_you_sure: "Јесте ли сигурни?"
|
@@ -44,6 +45,7 @@ sr:
|
|
44
45
|
revoke: Опозови!
|
45
46
|
services: Услуге
|
46
47
|
show_label: Прикажи
|
48
|
+
sign_in_via_service: "Пријавите се преко једног од тих услуга:"
|
47
49
|
sign_up_prompt: "Да би се наставили Молимо вас да обезбедите податке испод."
|
48
50
|
support_url_label: "Подршка УРЛ адреса"
|
49
51
|
tokens_issued: "Следећи токени су издате на апликације у ваше име"
|
data/config/locales/sv.yml
CHANGED
@@ -3,6 +3,7 @@ sv:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Access Token URL"
|
6
|
+
add_another_service: "Lägg till ytterligare en tjänst för att logga in med:"
|
6
7
|
application: Ansökan
|
7
8
|
application_developers: Applikationsutvecklare
|
8
9
|
are_you_sure: "Är du säker?"
|
@@ -35,20 +36,21 @@ sv:
|
|
35
36
|
register: Registrera
|
36
37
|
register_a_new_application: "Registrera en ny ansökan"
|
37
38
|
register_your_application: "Registrera din ansökan"
|
38
|
-
registered_successfully: "
|
39
|
-
remove_authentication_confirm: "Är du säker att du vill ta bort denna autentisering alternativ?"
|
39
|
+
registered_successfully: "Registrerade uppgifter framgångsrikt"
|
40
|
+
remove_authentication_confirm: "Är du säker på att du vill ta bort denna autentisering alternativ?"
|
40
41
|
removed_authentication: "Tagits bort autentisering."
|
41
42
|
request_allowed: "Du har gjort denna begäran"
|
42
|
-
request_disallowed: "
|
43
|
+
request_disallowed: "Ni har underkänt denna begäran"
|
43
44
|
request_token_url: "Begär Token URL"
|
44
45
|
revoke: Återkalla!
|
45
46
|
services: Tjänster
|
46
47
|
show_label: Visa
|
48
|
+
sign_in_via_service: "Logga in genom ett av dessa tjänster:"
|
47
49
|
sign_up_prompt: "För att fortsätta ge följande information nedan."
|
48
50
|
support_url_label: "Support URL"
|
49
51
|
tokens_issued: "Följande variabler har utfärdats till program i ditt namn"
|
50
52
|
updated_successfully: "Uppdaterade kundinformation framgångsrikt"
|
51
|
-
we_support_hmac_sha: "Vi
|
53
|
+
we_support_hmac_sha: "Vi stödjer HMAC-SHA1 (rekommenderas) samt oformaterad text i SSL-läge."
|
52
54
|
wrong_id: "Fel program-ID"
|
53
55
|
you_are_already_connected_to: "Du är redan ansluten till %{service}"
|
54
56
|
you_are_connected_to_the_following_services: "Du är ansluten till följande tjänster:"
|
data/config/locales/th.yml
CHANGED
@@ -3,6 +3,7 @@ th:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "URL Access Token"
|
6
|
+
add_another_service: "เพิ่มบริการเพื่อเข้าสู่ระบบด้วยอื่น :"
|
6
7
|
application: ใบสมัคร
|
7
8
|
application_developers: พัฒนาโปรแกรมประยุกต์
|
8
9
|
are_you_sure: คุณแน่ใจหรือไม่?
|
@@ -44,6 +45,7 @@ th:
|
|
44
45
|
revoke: ยกเลิก!
|
45
46
|
services: การบริการ
|
46
47
|
show_label: แสดง
|
48
|
+
sign_in_via_service: เข้าสู่ระบบผ่านทางบริการนี้
|
47
49
|
sign_up_prompt: เพื่อที่จะดำเนินการต่อกรุณาระบุข้อมูลด้านล่าง
|
48
50
|
support_url_label: "URL การสนับสนุน"
|
49
51
|
tokens_issued: โทเคนต่อไปนี้มีการออกไปใช้งานในชื่อของคุณ
|
data/config/locales/tl.yml
CHANGED
@@ -3,6 +3,7 @@ tl:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Access Token URL"
|
6
|
+
add_another_service: "Magdagdag ng isa pang serbisyo sa mga mag-sign in sa:"
|
6
7
|
application: Application
|
7
8
|
application_developers: "Application Developers"
|
8
9
|
are_you_sure: "Sigurado ka ba?"
|
@@ -44,6 +45,7 @@ tl:
|
|
44
45
|
revoke: Bawiin!
|
45
46
|
services: "Mga Serbisyo"
|
46
47
|
show_label: Ipakita
|
48
|
+
sign_in_via_service: "Mag-sign in sa pamamagitan ng isa sa mga serbisyong ito:"
|
47
49
|
sign_up_prompt: "Upang magpatuloy mangyaring ibigay ang impormasyon sa ibaba."
|
48
50
|
support_url_label: "Support URL"
|
49
51
|
tokens_issued: "Ang mga sumusunod na mga token ay inisyu sa mga aplikasyon sa iyong pangalan"
|
data/config/locales/tr.yml
CHANGED
@@ -3,10 +3,11 @@ tr:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Erişim Token URL"
|
6
|
+
add_another_service: "ile giriş yapmak için başka bir servis ekleyin:"
|
6
7
|
application: Uygulama
|
7
8
|
application_developers: "Uygulama Geliştiriciler"
|
8
9
|
are_you_sure: "Emin misiniz?"
|
9
|
-
auth_connect_error: "Bir hata
|
10
|
+
auth_connect_error: "Bir hata servise bağlanmak için çalışırken oluştu."
|
10
11
|
authentication_success: "Kimlik doğrulama başarılı."
|
11
12
|
authorize_access: "Hesabınıza erişim yetkilendirme"
|
12
13
|
authorize_access_label: "erişim yetkisi"
|
@@ -15,7 +16,7 @@ tr:
|
|
15
16
|
back: Geri
|
16
17
|
back_label: Geri
|
17
18
|
callback_label: "Callback URL *"
|
18
|
-
connect_to_account_title: "senin %{service}
|
19
|
+
connect_to_account_title: "senin %{service} hesabınıza bağlayın"
|
19
20
|
consume_secret: "Tüketici Secret:"
|
20
21
|
delete: Silmek
|
21
22
|
destroyed_successfully: "istemci uygulaması kayıt Destroyed"
|
@@ -44,13 +45,14 @@ tr:
|
|
44
45
|
revoke: Iptal!
|
45
46
|
services: Hizmetleri
|
46
47
|
show_label: Göstermek
|
48
|
+
sign_in_via_service: "Bu hizmetlerden biri ile açın:"
|
47
49
|
sign_up_prompt: "amacıyla aşağıdaki bilgileri lütfen devam edin."
|
48
50
|
support_url_label: "Destek URL"
|
49
51
|
tokens_issued: "Aşağıdaki simge adınıza uygulamalar için yayınlanmış olan"
|
50
52
|
updated_successfully: "başarılı bir şekilde müşteri bilgi Güncelleme"
|
51
53
|
we_support_hmac_sha: "Biz hmac-sha1 (önerilir) yanı sıra ssl modda, düz metin desteği."
|
52
54
|
wrong_id: "Yanlış uygulama id"
|
53
|
-
you_are_already_connected_to: "Zaten %{service} bağlı
|
55
|
+
you_are_already_connected_to: "Zaten %{service} bağlı olup"
|
54
56
|
you_are_connected_to_the_following_services: "Aşağıdaki hizmetlere bağlıdır:"
|
55
57
|
you_are_currently_not_connected_to_any_external_services: "Şu anda herhangi bir dış hizmetlerine bağlı değildir."
|
56
58
|
you_can_connect_to_the_following_services: "Eğer aşağıdaki hizmetleri bağlanabilir:"
|
data/config/locales/uk.yml
CHANGED
@@ -3,6 +3,7 @@ uk:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Маркер доступу URL"
|
6
|
+
add_another_service: "Додати ще один сервіс для входу в систему:"
|
6
7
|
application: Застосування
|
7
8
|
application_developers: "Розробників додатків"
|
8
9
|
are_you_sure: "Ви впевнені?"
|
@@ -44,6 +45,7 @@ uk:
|
|
44
45
|
revoke: Скасувати!
|
45
46
|
services: Послуги
|
46
47
|
show_label: Показати
|
48
|
+
sign_in_via_service: "Увійдіть через одну з цих послуг:"
|
47
49
|
sign_up_prompt: "Для того, щоб продовжувати прохання представити інформацію нижче."
|
48
50
|
support_url_label: "Підтримка URL"
|
49
51
|
tokens_issued: "Наступні маркери були видані програми на ваше ім'я"
|
data/config/locales/vi.yml
CHANGED
@@ -3,6 +3,7 @@ vi:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: "Mã truy cập URL"
|
6
|
+
add_another_service: "Thêm một dịch vụ để đăng nhập vào với:"
|
6
7
|
application: "Ứng dụng"
|
7
8
|
application_developers: "Các nhà phát triển ứng dụng"
|
8
9
|
are_you_sure: "Bạn có chắc chắn?"
|
@@ -44,6 +45,7 @@ vi:
|
|
44
45
|
revoke: "Thu hồi!"
|
45
46
|
services: "Dịch vụ"
|
46
47
|
show_label: Show
|
48
|
+
sign_in_via_service: "Đăng nhập thông qua một trong những dịch vụ này:"
|
47
49
|
sign_up_prompt: "Để tiếp tục xin vui lòng cung cấp thông tin dưới đây."
|
48
50
|
support_url_label: "Hỗ trợ URL"
|
49
51
|
tokens_issued: "Các thẻ sau đây đã được phát hành cho các ứng dụng trong tên của bạn"
|
data/config/locales/zh-CN.yml
CHANGED
@@ -3,6 +3,7 @@ zh-CN:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: 访问令牌网址
|
6
|
+
add_another_service: 新增其他服务登录为:
|
6
7
|
application: 应用
|
7
8
|
application_developers: 应用开发人员
|
8
9
|
are_you_sure: 你肯定吗?
|
@@ -44,6 +45,7 @@ zh-CN:
|
|
44
45
|
revoke: 撤销!
|
45
46
|
services: 服务
|
46
47
|
show_label: 显示
|
48
|
+
sign_in_via_service: 想通过这些服务之一:
|
47
49
|
sign_up_prompt: 为了继续请提供以下信息。
|
48
50
|
support_url_label: 支持URL
|
49
51
|
tokens_issued: 下面的标记已发给你的名字申请
|
data/config/locales/zh-TW.yml
CHANGED
@@ -3,6 +3,7 @@ zh-TW:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: 訪問令牌網址
|
6
|
+
add_another_service: 新增其他服務登錄為:
|
6
7
|
application: 應用
|
7
8
|
application_developers: 應用開發人員
|
8
9
|
are_you_sure: 你肯定嗎?
|
@@ -44,6 +45,7 @@ zh-TW:
|
|
44
45
|
revoke: 撤銷!
|
45
46
|
services: 服務
|
46
47
|
show_label: 顯示
|
48
|
+
sign_in_via_service: 想通過這些服務之一:
|
47
49
|
sign_up_prompt: 為了繼續請提供以下信息。
|
48
50
|
support_url_label: 支持URL
|
49
51
|
tokens_issued: 下面的標記已發給你的名字申請
|
data/config/locales/zh.yml
CHANGED
@@ -3,6 +3,7 @@ zh:
|
|
3
3
|
muck:
|
4
4
|
auth:
|
5
5
|
access_token_url: 访问令牌网址
|
6
|
+
add_another_service: 新增其他服务登录为:
|
6
7
|
application: 应用
|
7
8
|
application_developers: 应用开发人员
|
8
9
|
are_you_sure: 你肯定吗?
|
@@ -44,6 +45,7 @@ zh:
|
|
44
45
|
revoke: 撤销!
|
45
46
|
services: 服务
|
46
47
|
show_label: 显示
|
48
|
+
sign_in_via_service: 想通过这些服务之一:
|
47
49
|
sign_up_prompt: 为了继续请提供以下信息。
|
48
50
|
support_url_label: 支持URL
|
49
51
|
tokens_issued: 下面的标记已发给你的名字申请
|
data/muck-auth.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{muck-auth}
|
8
|
-
s.version = "3.3.
|
8
|
+
s.version = "3.3.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Justin Ball"]
|
12
|
-
s.date = %q{2011-02-
|
12
|
+
s.date = %q{2011-02-24}
|
13
13
|
s.description = %q{A simple wrapper for the omniauth gem so that it is faster to include oauth in muck based applications.}
|
14
14
|
s.email = %q{justin@tatemae.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -26,6 +26,7 @@ Gem::Specification.new do |s|
|
|
26
26
|
"app/helpers/muck_auth_helper.rb",
|
27
27
|
"app/views/authentications/_available_services.html.erb",
|
28
28
|
"app/views/authentications/_current_services.html.erb",
|
29
|
+
"app/views/authentications/destroy.erb",
|
29
30
|
"app/views/authentications/failure.html.erb",
|
30
31
|
"app/views/authentications/index.html.erb",
|
31
32
|
"app/views/authentications/signup.html.erb",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: muck-auth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 3.3.
|
9
|
+
- 1
|
10
|
+
version: 3.3.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Justin Ball
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-02-
|
18
|
+
date: 2011-02-24 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -107,6 +107,7 @@ files:
|
|
107
107
|
- app/helpers/muck_auth_helper.rb
|
108
108
|
- app/views/authentications/_available_services.html.erb
|
109
109
|
- app/views/authentications/_current_services.html.erb
|
110
|
+
- app/views/authentications/destroy.erb
|
110
111
|
- app/views/authentications/failure.html.erb
|
111
112
|
- app/views/authentications/index.html.erb
|
112
113
|
- app/views/authentications/signup.html.erb
|