Version Description
Opportunity to sign up for emails on Google Apps and WordPress, from settings page.
Download this release
Release Info
Developer | danlester |
Plugin | Google Apps Login |
Version | 2.8.12 |
Comparing to | |
See all releases |
Code changes from version 2.8.11 to 2.8.12
- css/gal-admin.css +30 -0
- google_apps_login.php +52 -2
- js/gal-admin.js +11 -0
- lang/google-apps-login-it_IT.mo +0 -0
- lang/google-apps-login-it_IT.po +386 -0
- lang/google-apps-login-nl_NL.mo +0 -0
- lang/google-apps-login-nl_NL.po +334 -0
- lang/google-apps-login-sv_SE.mo +0 -0
- lang/google-apps-login-sv_SE.po +382 -0
- readme.txt +8 -1
css/gal-admin.css
CHANGED
@@ -147,3 +147,33 @@ a.gal_jsonkeytext {
|
|
147 |
#license-section table td {
|
148 |
padding-right: 8px;
|
149 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
#license-section table td {
|
148 |
padding-right: 8px;
|
149 |
}
|
150 |
+
|
151 |
+
/* Drip signup form in basic version */
|
152 |
+
|
153 |
+
#gal-drip-signup-form {
|
154 |
+
padding: 5px;
|
155 |
+
}
|
156 |
+
|
157 |
+
#gal-drip-signup-form div {
|
158 |
+
width: inherit;
|
159 |
+
}
|
160 |
+
|
161 |
+
#gal-drip-signup-form div label {
|
162 |
+
float: none;
|
163 |
+
font-weight: bold;
|
164 |
+
}
|
165 |
+
|
166 |
+
#gal-drip-signup-form div input[type=submit] {
|
167 |
+
float: none;
|
168 |
+
font-size: 120%;
|
169 |
+
width: 80px;
|
170 |
+
}
|
171 |
+
|
172 |
+
#gal-drip-signup-form div input[type=email] {
|
173 |
+
float: none;
|
174 |
+
width: 90%;
|
175 |
+
}
|
176 |
+
|
177 |
+
#gal-drip-signup-form p.gal-drip-unsubscribe {
|
178 |
+
font-size: 80%;
|
179 |
+
}
|
google_apps_login.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Google Apps Login
|
5 |
* Plugin URI: http://wp-glogin.com/
|
6 |
* Description: Simple secure login for Wordpress through users' Google Apps accounts (uses secure OAuth2, and MFA if enabled)
|
7 |
-
* Version: 2.8.
|
8 |
* Author: Dan Lester
|
9 |
* Author URI: http://wp-glogin.com/
|
10 |
* License: GPL3
|
@@ -17,7 +17,7 @@ require_once( plugin_dir_path(__FILE__).'/core/core_google_apps_login.php' );
|
|
17 |
|
18 |
class basic_google_apps_login extends core_google_apps_login {
|
19 |
|
20 |
-
protected $PLUGIN_VERSION = '2.8.
|
21 |
|
22 |
// Singleton
|
23 |
private static $instance = null;
|
@@ -41,6 +41,11 @@ class basic_google_apps_login extends core_google_apps_login {
|
|
41 |
$this->save_option_galogin($new_option);
|
42 |
}
|
43 |
}
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
protected function ga_section_text_end() {
|
46 |
?>
|
@@ -89,6 +94,8 @@ class basic_google_apps_login extends core_google_apps_login {
|
|
89 |
$startnum = (int)date('j');
|
90 |
|
91 |
echo '<div id="gal-tableright" class="gal-tablecell">';
|
|
|
|
|
92 |
|
93 |
for ($i=0 ; $i<2 ; $i++) {
|
94 |
echo $adverts[($startnum+$i) % 4];
|
@@ -97,6 +104,49 @@ class basic_google_apps_login extends core_google_apps_login {
|
|
97 |
echo '</div>';
|
98 |
|
99 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
|
101 |
protected function ga_domainsection_text() {
|
102 |
echo '<div id="domain-section" class="galtab">';
|
4 |
* Plugin Name: Google Apps Login
|
5 |
* Plugin URI: http://wp-glogin.com/
|
6 |
* Description: Simple secure login for Wordpress through users' Google Apps accounts (uses secure OAuth2, and MFA if enabled)
|
7 |
+
* Version: 2.8.12
|
8 |
* Author: Dan Lester
|
9 |
* Author URI: http://wp-glogin.com/
|
10 |
* License: GPL3
|
17 |
|
18 |
class basic_google_apps_login extends core_google_apps_login {
|
19 |
|
20 |
+
protected $PLUGIN_VERSION = '2.8.12';
|
21 |
|
22 |
// Singleton
|
23 |
private static $instance = null;
|
41 |
$this->save_option_galogin($new_option);
|
42 |
}
|
43 |
}
|
44 |
+
|
45 |
+
protected function add_actions() {
|
46 |
+
parent::add_actions();
|
47 |
+
add_action('wp_ajax_gal_drip_submitted', array($this, 'gal_drip_submitted'));
|
48 |
+
}
|
49 |
|
50 |
protected function ga_section_text_end() {
|
51 |
?>
|
94 |
$startnum = (int)date('j');
|
95 |
|
96 |
echo '<div id="gal-tableright" class="gal-tablecell">';
|
97 |
+
|
98 |
+
$this->output_drip_form();
|
99 |
|
100 |
for ($i=0 ; $i<2 ; $i++) {
|
101 |
echo $adverts[($startnum+$i) % 4];
|
104 |
echo '</div>';
|
105 |
|
106 |
}
|
107 |
+
|
108 |
+
protected function output_drip_form() {
|
109 |
+
$userdata = wp_get_current_user();
|
110 |
+
if (!$userdata) {
|
111 |
+
return;
|
112 |
+
}
|
113 |
+
$signedup = get_user_meta($userdata->ID, 'gal_user_signedup_to_drip', true);
|
114 |
+
|
115 |
+
if (!$signedup) {
|
116 |
+
|
117 |
+
$useremail = $userdata->user_email;
|
118 |
+
|
119 |
+
?>
|
120 |
+
<div>
|
121 |
+
<form action="https://www.getdrip.com/forms/9468024/submissions" method="post" target="_blank" data-drip-embedded-form="9468024" id="gal-drip-signup-form">
|
122 |
+
<h3 data-drip-attribute="headline">Get the most out of Google Apps and WordPress</h3>
|
123 |
+
<p data-drip-attribute="description">
|
124 |
+
Register your email address to receive information on building a WordPress site
|
125 |
+
that truly integrates Google Apps and WordPress.
|
126 |
+
</p>
|
127 |
+
<div>
|
128 |
+
<label for="fields[email]">Email Address</label>
|
129 |
+
<br />
|
130 |
+
<input type="email" name="fields[email]" value="<?php echo esc_js($useremail); ?>" />
|
131 |
+
<br />
|
132 |
+
<input type="submit" name="submit" value="Sign Up" data-drip-attribute="sign-up-button" class="gal-drip-signup-button" />
|
133 |
+
</div>
|
134 |
+
<p class="gal-drip-unsubscribe">
|
135 |
+
You can unsubscribe at any time, and we will never share your email address.
|
136 |
+
</p>
|
137 |
+
</form>
|
138 |
+
</div>
|
139 |
+
<?php
|
140 |
+
}
|
141 |
+
}
|
142 |
+
|
143 |
+
public function gal_drip_submitted() {
|
144 |
+
$userdata = wp_get_current_user();
|
145 |
+
if (!$userdata) {
|
146 |
+
return;
|
147 |
+
}
|
148 |
+
update_user_meta($userdata->ID, 'gal_user_signedup_to_drip', true);
|
149 |
+
}
|
150 |
|
151 |
protected function ga_domainsection_text() {
|
152 |
echo '<div id="domain-section" class="galtab">';
|
js/gal-admin.js
CHANGED
@@ -100,4 +100,15 @@ jQuery(document).ready(function() {
|
|
100 |
jQuery('.gal-admin-scopes-list').on('click', function(e) {
|
101 |
selectText(e.target);
|
102 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
});
|
100 |
jQuery('.gal-admin-scopes-list').on('click', function(e) {
|
101 |
selectText(e.target);
|
102 |
});
|
103 |
+
|
104 |
+
// Drip signup form in basic version
|
105 |
+
jQuery('.gal-drip-signup-button').on('click', function(e) {
|
106 |
+
jQuery('#gal-drip-signup-form').submit(function() {
|
107 |
+
jQuery('#gal-drip-signup-form div').hide().after(jQuery('<div><p>Thank you!</p></div>'));
|
108 |
+
// Mark WP user as signed up
|
109 |
+
jQuery.post(ajaxurl, {action: 'gal_drip_submitted'}, function(response) {
|
110 |
+
|
111 |
+
});
|
112 |
+
});
|
113 |
+
});
|
114 |
});
|
lang/google-apps-login-it_IT.mo
ADDED
Binary file
|
lang/google-apps-login-it_IT.po
ADDED
@@ -0,0 +1,386 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014
|
2 |
+
# This file is distributed under the same license as the package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Google Apps Login\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/googleappslogin\n"
|
7 |
+
"POT-Creation-Date: 2014-04-28 18:15:50+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2015-10-31 18:01+0100\n"
|
12 |
+
"Last-Translator: David <david@closemarketing.es>\n"
|
13 |
+
"Language-Team: tipinoncomuni.it <giorgio@tipinoncomuni.it>\n"
|
14 |
+
"X-Generator: Poedit 1.8.6\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"Language: it_IT\n"
|
17 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
|
19 |
+
#: basic_google_apps_login.php:47
|
20 |
+
msgid ""
|
21 |
+
"For full support, and premium features that greatly simplify WordPress user "
|
22 |
+
"management for admins, please visit:"
|
23 |
+
msgstr ""
|
24 |
+
"Per ottenere supporto completo e le funzioni premium che semplificano agli "
|
25 |
+
"amministratori la gestione degli utenti in Wordpress, visitare:"
|
26 |
+
|
27 |
+
#: basic_google_apps_login.php:80
|
28 |
+
msgid ""
|
29 |
+
"The Domain Control section is only applicable to the premium version of this "
|
30 |
+
"plugin."
|
31 |
+
msgstr ""
|
32 |
+
"La sezione “Controllo Dominio” è disponibile solo nella versione premium di "
|
33 |
+
"questo plugin."
|
34 |
+
|
35 |
+
#: basic_google_apps_login.php:82
|
36 |
+
msgid ""
|
37 |
+
"In this basic version of the plugin, any <i>existing</i> WordPress account "
|
38 |
+
"corresponding to a Google email address can authenticate via Google."
|
39 |
+
msgstr ""
|
40 |
+
"In questa versione base del plugin, qualsiasi <i>esistente</i> account "
|
41 |
+
"Wordpress che corrisponda ad un indirizzo email di Google, può autenticarsi "
|
42 |
+
"via Google."
|
43 |
+
|
44 |
+
#: basic_google_apps_login.php:132
|
45 |
+
msgid ""
|
46 |
+
"Completely forget about WordPress user management - upgrade to <a href=\"%s"
|
47 |
+
"\">Google Apps Login premium</a> to automatically sync users from your Google "
|
48 |
+
"Apps domain"
|
49 |
+
msgstr ""
|
50 |
+
"Abbandona la gestione degli utenti di Wordpress - con l’upgrade a <a href=\"%s"
|
51 |
+
"\">Google Apps Login</a> premiun ottieni la sincronizzazione degli utenti del "
|
52 |
+
"tuo dominio Google Apps."
|
53 |
+
|
54 |
+
#: basic_google_apps_login.php:134
|
55 |
+
msgid "Purchase"
|
56 |
+
msgstr "Compra"
|
57 |
+
|
58 |
+
#: basic_google_apps_login.php:135
|
59 |
+
msgid "No Thanks"
|
60 |
+
msgstr "No Grazie"
|
61 |
+
|
62 |
+
#: core/commercial_google_apps_login.php:43
|
63 |
+
msgid "User with email address %s must use Login with Google"
|
64 |
+
msgstr "L’utente con indirizzo email %s deve usare “Login con Google”"
|
65 |
+
|
66 |
+
#: core/commercial_google_apps_login.php:71
|
67 |
+
msgid "User %s does not exist"
|
68 |
+
msgstr "L’utente %s non esiste"
|
69 |
+
|
70 |
+
#: core/commercial_google_apps_login.php:80
|
71 |
+
msgid "Invalid email address"
|
72 |
+
msgstr "Indirizzo email non valido"
|
73 |
+
|
74 |
+
#: core/commercial_google_apps_login.php:88
|
75 |
+
msgid "Email address needs to be in %s."
|
76 |
+
msgstr "L’indirizzo email deve essere in %s."
|
77 |
+
|
78 |
+
#: core/commercial_google_apps_login.php:91
|
79 |
+
msgid ""
|
80 |
+
"%s not authorized - <a href=\"https://accounts.google.com/Logout\" target="
|
81 |
+
"\"_blank\">Sign out of Google</a> to switch accounts"
|
82 |
+
msgstr ""
|
83 |
+
"%s non autorizzato - <a href=\"https://accounts.google.com/Logout\" target="
|
84 |
+
"\"_blank\">Logout da Google </a> per cambiare l’account"
|
85 |
+
|
86 |
+
#: core/commercial_google_apps_login.php:149
|
87 |
+
msgid ""
|
88 |
+
"By default, any existing account can authenticate either via Google (if a "
|
89 |
+
"Gmail/Google Apps account), or by WordPress username/password."
|
90 |
+
msgstr ""
|
91 |
+
"Per default, gli account esistenti possono autenticarsi con Google (se usano "
|
92 |
+
"un account Gmail/Google Apps), o attraverso l’account/password WordPress."
|
93 |
+
|
94 |
+
#: core/commercial_google_apps_login.php:151
|
95 |
+
msgid ""
|
96 |
+
"To allow special behaviour on your Google Apps domain (auto-create users who "
|
97 |
+
"don't yet exist, or disable regular WordPress username/password access for "
|
98 |
+
"your users), fill in the following section."
|
99 |
+
msgstr ""
|
100 |
+
"Compilando la sezione che segue, si permette il funzionamento speciale basato "
|
101 |
+
"sul dominio Google Apps: creazione automatica degli utenti che non esistono, "
|
102 |
+
"disabilitazione dell’accesso username/password di Wordpress."
|
103 |
+
|
104 |
+
#: core/commercial_google_apps_login.php:153
|
105 |
+
msgid ""
|
106 |
+
"Please read the <a href=\"%s\" target=\"gainstr\">instructions here</a> first."
|
107 |
+
msgstr ""
|
108 |
+
"Si prega di leggere le <a href=\"%s\" target=\"gainstr\">istruzioni</a> prima "
|
109 |
+
"di continuare."
|
110 |
+
|
111 |
+
#: core/commercial_google_apps_login.php:158
|
112 |
+
msgid "My Google Apps domain"
|
113 |
+
msgstr "Il mio dominio Google Apps"
|
114 |
+
|
115 |
+
#: core/commercial_google_apps_login.php:163
|
116 |
+
msgid "Auto-create new users on my domain"
|
117 |
+
msgstr "Crea automaticamente nuovi utenti del mio dominio"
|
118 |
+
|
119 |
+
#: core/commercial_google_apps_login.php:167
|
120 |
+
msgid "Default role for new users"
|
121 |
+
msgstr "Ruolo di default per i nuovi utenti"
|
122 |
+
|
123 |
+
#: core/commercial_google_apps_login.php:175
|
124 |
+
msgid "Disable WordPress username/password login for my domain"
|
125 |
+
msgstr "Disabilita la login username/password di WordPress per il mio dominio"
|
126 |
+
|
127 |
+
#: core/commercial_google_apps_login.php:180
|
128 |
+
msgid "Completely hide WordPress username and password boxes"
|
129 |
+
msgstr "Nascondi completamente le caselle username e password di WordPress"
|
130 |
+
|
131 |
+
#: core/commercial_google_apps_login.php:185
|
132 |
+
msgid ""
|
133 |
+
"Tick the last two with caution - leave unchecked until you are confident "
|
134 |
+
"Google Login is working for your own admin account"
|
135 |
+
msgstr ""
|
136 |
+
"Selezionare gli ultimi due con precauzione - lasciarli deselezionati fino a "
|
137 |
+
"quando non si ha certezza del perfetto funzionamento di Google Login nel "
|
138 |
+
"proprio account di amministrazione."
|
139 |
+
|
140 |
+
#: core/commercial_google_apps_login.php:207
|
141 |
+
msgid ""
|
142 |
+
"You should have received a license key when you purchased the premium version "
|
143 |
+
"of Google Apps Login."
|
144 |
+
msgstr ""
|
145 |
+
"Dovresti aver ricevuto una chiave di licenza quando hai acquistato la versione "
|
146 |
+
"premium di Google Apps Login."
|
147 |
+
|
148 |
+
#: core/commercial_google_apps_login.php:209
|
149 |
+
msgid ""
|
150 |
+
"Please enter it below to enable automatic updates, or <a href=\"mailto:"
|
151 |
+
"contact@wp-glogin.com\">email us</a> if you do not have one."
|
152 |
+
msgstr ""
|
153 |
+
"Si prega di inserirlo qui sotto per abilitare l’aggiornamento automatico, o <a "
|
154 |
+
"href=\"mailto:contact@wp-glogin.com\">scriveteci</a> se non ne avete uno"
|
155 |
+
|
156 |
+
#: core/commercial_google_apps_login.php:213
|
157 |
+
msgid "License Key"
|
158 |
+
msgstr "License Key"
|
159 |
+
|
160 |
+
#: core/commercial_google_apps_login.php:272
|
161 |
+
msgid ""
|
162 |
+
"Domain name should be a space-separated list of valid domains, in lowercase "
|
163 |
+
"letters (or blank)"
|
164 |
+
msgstr ""
|
165 |
+
"Il nome di dominio deve essere una lista di nomi di dominio validi, separata "
|
166 |
+
"con spazio, in lettere minuscole"
|
167 |
+
|
168 |
+
#: core/commercial_google_apps_login.php:273
|
169 |
+
msgid "License key is too short"
|
170 |
+
msgstr "La License Key è troppo corta"
|
171 |
+
|
172 |
+
#: core/commercial_google_apps_login.php:274
|
173 |
+
msgid "License key failed to activate"
|
174 |
+
msgstr "È fallita l’inizializzazione della License Key"
|
175 |
+
|
176 |
+
#: core/commercial_google_apps_login.php:275
|
177 |
+
msgid "Group names must be valid email addresses"
|
178 |
+
msgstr "Il nome del gruppo deve essere un indirizzo email valido"
|
179 |
+
|
180 |
+
#: core/core_google_apps_login.php:163
|
181 |
+
msgid "Redirecting to <a href=\"%s\">Login via Google</a>..."
|
182 |
+
msgstr "Ridirigere alla <a href=\"%s\">Login via Google</a>..."
|
183 |
+
|
184 |
+
#: core/core_google_apps_login.php:173
|
185 |
+
msgid "Login with Google"
|
186 |
+
msgstr "Login via Google"
|
187 |
+
|
188 |
+
#: core/core_google_apps_login.php:177
|
189 |
+
msgid "Powered by "
|
190 |
+
msgstr "Creato da "
|
191 |
+
|
192 |
+
#: core/core_google_apps_login.php:191
|
193 |
+
msgid "or"
|
194 |
+
msgstr "o"
|
195 |
+
|
196 |
+
#: core/core_google_apps_login.php:223
|
197 |
+
msgid "You did not grant access"
|
198 |
+
msgstr "Non hai garantito l’accesso"
|
199 |
+
|
200 |
+
#: core/core_google_apps_login.php:245
|
201 |
+
msgid "Session mismatch - try again, but there could be a problem setting state"
|
202 |
+
msgstr ""
|
203 |
+
"Session mismatch - prova nuovamente, ma potrebbe esserci un problema nella "
|
204 |
+
"impostazione dello stato"
|
205 |
+
|
206 |
+
#: core/core_google_apps_login.php:251
|
207 |
+
msgid "Session mismatch - try again, but there could be a problem passing state"
|
208 |
+
msgstr ""
|
209 |
+
"Session mismatch - prova nuovamente, ma potrebbe esserci un problema nel "
|
210 |
+
"passaggio di stato"
|
211 |
+
|
212 |
+
#: core/core_google_apps_login.php:258
|
213 |
+
msgid ""
|
214 |
+
"Session mismatch - try again, but there could be a problem setting cookies"
|
215 |
+
msgstr ""
|
216 |
+
"Session mismatch - prova nuovamente, ma potrebbe esserci un problema "
|
217 |
+
"nell’impostare i cookie"
|
218 |
+
|
219 |
+
#: core/core_google_apps_login.php:287
|
220 |
+
msgid "Email needs to be verified on your Google Account"
|
221 |
+
msgstr "L’indirizzo email deve essere verificato nel tuo Account Google"
|
222 |
+
|
223 |
+
#: core/core_google_apps_login.php:308
|
224 |
+
msgid "User authenticated OK, but error fetching user details from Google"
|
225 |
+
msgstr ""
|
226 |
+
"L’utente si è autenticato correttamente, ma c’è un errore nel raccogliere le "
|
227 |
+
"informazioni utente da Google"
|
228 |
+
|
229 |
+
#: core/core_google_apps_login.php:327
|
230 |
+
msgid "User %s not registered in Wordpress"
|
231 |
+
msgstr "L’utente %s non è registrato in WordPress"
|
232 |
+
|
233 |
+
#: core/core_google_apps_login.php:412
|
234 |
+
msgid ""
|
235 |
+
"You will need to complete Google Apps Login <a href=\"%s\">Settings</a> in "
|
236 |
+
"order for the plugin to work"
|
237 |
+
msgstr ""
|
238 |
+
"Devi completare la <a href=\"%s\">configurazione di Google Apps Login</a> "
|
239 |
+
"perché il plug possa funzionare"
|
240 |
+
|
241 |
+
#: core/core_google_apps_login.php:444 core/core_google_apps_login.php:449
|
242 |
+
msgid "Google Apps Login settings"
|
243 |
+
msgstr "Configurazione di Google Apps Login"
|
244 |
+
|
245 |
+
#: core/core_google_apps_login.php:444 core/core_google_apps_login.php:449
|
246 |
+
msgid "Google Apps Login"
|
247 |
+
msgstr "Google Apps Login"
|
248 |
+
|
249 |
+
#: core/core_google_apps_login.php:469
|
250 |
+
msgid "Google Apps Login setup"
|
251 |
+
msgstr "Configura Google Apps Login"
|
252 |
+
|
253 |
+
#: core/core_google_apps_login.php:475
|
254 |
+
msgid ""
|
255 |
+
"To set up your website to enable Google logins, you will need to follow "
|
256 |
+
"instructions specific to your website."
|
257 |
+
msgstr ""
|
258 |
+
"Per abilituare nel tuo sito web la Login via Google, devi seguire le "
|
259 |
+
"istruzioni specifiche del suo sito."
|
260 |
+
|
261 |
+
#: core/core_google_apps_login.php:478
|
262 |
+
msgid "Click here to open your personalized instructions in a new window"
|
263 |
+
msgstr ""
|
264 |
+
"Fare click qui per aprire le istruzioni personalizzate in una nuova finestra"
|
265 |
+
|
266 |
+
#: core/core_google_apps_login.php:504
|
267 |
+
msgid "Save Changes"
|
268 |
+
msgstr "Salva modifiche"
|
269 |
+
|
270 |
+
#: core/core_google_apps_login.php:533
|
271 |
+
msgid "Settings saved."
|
272 |
+
msgstr "Configurazione salvata."
|
273 |
+
|
274 |
+
#: core/core_google_apps_login.php:560
|
275 |
+
msgid ""
|
276 |
+
"The <a href='%s'>instructions</a> above will guide you to Google's Cloud "
|
277 |
+
"Console where you will enter two URLs, and also obtain two codes (Client ID "
|
278 |
+
"and Client Secret) which you will need to enter in the boxes below."
|
279 |
+
msgstr ""
|
280 |
+
"Le <a href='%s'>istruzioni</a> qui sopra, guidano nella Google Cloud Console, "
|
281 |
+
"dove è possibile inserire due URL e ottenere due codici (Client ID e Client "
|
282 |
+
"Secret) che devono poi essere inseriti nelle caselle sottostanti."
|
283 |
+
|
284 |
+
#: core/core_google_apps_login.php:565
|
285 |
+
msgid "Client ID"
|
286 |
+
msgstr "Client ID"
|
287 |
+
|
288 |
+
#: core/core_google_apps_login.php:568 core/core_google_apps_login.php:574
|
289 |
+
msgid "Normally something like %s"
|
290 |
+
msgstr "Normalmente simile a %s"
|
291 |
+
|
292 |
+
#: core/core_google_apps_login.php:571
|
293 |
+
msgid "Client Secret"
|
294 |
+
msgstr "Client Secret"
|
295 |
+
|
296 |
+
#: core/core_google_apps_login.php:591
|
297 |
+
msgid ""
|
298 |
+
"Once you have the plugin working, you can try these settings to customize the "
|
299 |
+
"login flow for your users."
|
300 |
+
msgstr ""
|
301 |
+
"Quando il plugin è attivo, puoi provare a personalizzare queste configurazioni "
|
302 |
+
"a seconda del flusso di login dei tuoi utenti."
|
303 |
+
|
304 |
+
#: core/core_google_apps_login.php:592
|
305 |
+
msgid "See <a href=\"%s\" target=\"gainstr\">instructions here</a>."
|
306 |
+
msgstr "Vedere <a href=\"%s\" target=\"gainstr\">le istruzioni</a> ."
|
307 |
+
|
308 |
+
#: core/core_google_apps_login.php:600
|
309 |
+
msgid "Force user to confirm Google permissions every time"
|
310 |
+
msgstr "Forza l’utente a confermare i permessi Google ogni volta"
|
311 |
+
|
312 |
+
#: core/core_google_apps_login.php:608
|
313 |
+
msgid "Automatically redirect to Google from login page"
|
314 |
+
msgstr "Redirigi automaticamente a Google dalla pagina di login"
|
315 |
+
|
316 |
+
#: core/core_google_apps_login.php:616
|
317 |
+
msgid "Display 'Powered By wp-glogin.com' on Login form"
|
318 |
+
msgstr "Visualizza 'Powered By wp-glogin.com' nella maschera di Login"
|
319 |
+
|
320 |
+
#: core/core_google_apps_login.php:622
|
321 |
+
msgid "Multisite Options"
|
322 |
+
msgstr "Opzioni Multisito"
|
323 |
+
|
324 |
+
#: core/core_google_apps_login.php:623
|
325 |
+
msgid ""
|
326 |
+
"This setting is for multisite admins only. See <a href=\"%s\" target=\"gainstr"
|
327 |
+
"\">instructions here</a>."
|
328 |
+
msgstr ""
|
329 |
+
"Questa configurazione è solamente per amministrare siti multipli. Vedere le <a "
|
330 |
+
"href=\"%s\" target=\"gainstr\">istruzioni</a> ."
|
331 |
+
|
332 |
+
#: core/core_google_apps_login.php:628
|
333 |
+
msgid "Use sub-site specific callback from Google"
|
334 |
+
msgstr "Utilizzare callback da Google specifici per i siti secondari"
|
335 |
+
|
336 |
+
#: core/core_google_apps_login.php:632
|
337 |
+
msgid "Leave unchecked if in doubt"
|
338 |
+
msgstr "Lasciare deselezionato se si hanno dubbi"
|
339 |
+
|
340 |
+
#: core/core_google_apps_login.php:669
|
341 |
+
msgid "The Client ID should be longer than that"
|
342 |
+
msgstr "Il Client ID non dovrebbe essere più lungo di così"
|
343 |
+
|
344 |
+
#: core/core_google_apps_login.php:670
|
345 |
+
msgid "The Client Secret should be longer than that"
|
346 |
+
msgstr "Il Client Secret non dovrebbe essere più lungo di così"
|
347 |
+
|
348 |
+
#: core/core_google_apps_login.php:675
|
349 |
+
msgid "Unspecified error"
|
350 |
+
msgstr "Errore non specificato"
|
351 |
+
|
352 |
+
#: core/core_google_apps_login.php:772
|
353 |
+
msgid "Settings"
|
354 |
+
msgstr "Configurazioni"
|
355 |
+
|
356 |
+
#: enterprise_google_apps_login.php:211
|
357 |
+
msgid "Default role"
|
358 |
+
msgstr "Ruolo di Default"
|
359 |
+
|
360 |
+
#: enterprise_google_apps_login.php:219
|
361 |
+
msgid "Check and reset roles on every login"
|
362 |
+
msgstr "Controlla e resetta i ruoli ad ogni login"
|
363 |
+
|
364 |
+
#: enterprise_google_apps_login.php:318
|
365 |
+
msgid "There are no logs to view."
|
366 |
+
msgstr "Non ci sono Logs da visualizzare"
|
367 |
+
|
368 |
+
# wordpress plugin description
|
369 |
+
msgid ""
|
370 |
+
"Simple secure login for Wordpress through users' Google Apps accounts (uses "
|
371 |
+
"secure OAuth2, and MFA if enabled)"
|
372 |
+
msgstr ""
|
373 |
+
"Accesso semplice e sicuro per WordPress usando gli account Google Apps "
|
374 |
+
"(utilizza la sicurezza OAuth2, e MFA se abilitato)"
|
375 |
+
|
376 |
+
# wordpress plugin description
|
377 |
+
msgid ""
|
378 |
+
"Simple secure login and user management for Wordpress through your Google Apps "
|
379 |
+
"domain (uses secure OAuth2, and MFA if enabled)"
|
380 |
+
msgstr ""
|
381 |
+
"Accesso e gestione utenti semplice e sicura per WordPress usando gli account "
|
382 |
+
"Google Apps (utilizza la sicurezza OAuth2, e MFA se abilitato)"
|
383 |
+
|
384 |
+
# wordpress plugin description
|
385 |
+
msgid "Google Apps Login Premium"
|
386 |
+
msgstr "Google Apps Login Premium"
|
lang/google-apps-login-nl_NL.mo
ADDED
Binary file
|
lang/google-apps-login-nl_NL.po
ADDED
@@ -0,0 +1,334 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014
|
2 |
+
# This file is distributed under the same license as the package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: \n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/googleappslogin\n"
|
7 |
+
"POT-Creation-Date: 2014-04-28 18:15:50+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2015-09-21 16:21+0100\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
"X-Generator: Poedit 1.5.7\n"
|
15 |
+
|
16 |
+
#: basic_google_apps_login.php:47
|
17 |
+
msgid ""
|
18 |
+
"For full support, and premium features that greatly simplify WordPress user "
|
19 |
+
"management for admins, please visit:"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: basic_google_apps_login.php:80
|
23 |
+
msgid ""
|
24 |
+
"The Domain Control section is only applicable to the premium version of this "
|
25 |
+
"plugin."
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: basic_google_apps_login.php:82
|
29 |
+
msgid ""
|
30 |
+
"In this basic version of the plugin, any <i>existing</i> WordPress account "
|
31 |
+
"corresponding to a Google email address can authenticate via Google."
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: basic_google_apps_login.php:132
|
35 |
+
msgid ""
|
36 |
+
"Completely forget about WordPress user management - upgrade to <a href=\"%s"
|
37 |
+
"\">Google Apps Login premium</a> to automatically sync users from your "
|
38 |
+
"Google Apps domain"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: basic_google_apps_login.php:134
|
42 |
+
msgid "Purchase"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: basic_google_apps_login.php:135
|
46 |
+
msgid "No Thanks"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: core/commercial_google_apps_login.php:43
|
50 |
+
msgid "User with email address %s must use Login with Google"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: core/commercial_google_apps_login.php:71
|
54 |
+
msgid "User %s does not exist"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: core/commercial_google_apps_login.php:80
|
58 |
+
msgid "Invalid email address"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: core/commercial_google_apps_login.php:88
|
62 |
+
msgid "Email address needs to be in %s."
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: core/commercial_google_apps_login.php:91
|
66 |
+
msgid ""
|
67 |
+
"%s not authorized - <a href=\"https://accounts.google.com/Logout\" target="
|
68 |
+
"\"_blank\">Sign out of Google</a> to switch accounts"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: core/commercial_google_apps_login.php:149
|
72 |
+
msgid ""
|
73 |
+
"By default, any existing account can authenticate either via Google (if a "
|
74 |
+
"Gmail/Google Apps account), or by WordPress username/password."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: core/commercial_google_apps_login.php:151
|
78 |
+
msgid ""
|
79 |
+
"To allow special behaviour on your Google Apps domain (auto-create users who "
|
80 |
+
"don't yet exist, or disable regular WordPress username/password access for "
|
81 |
+
"your users), fill in the following section."
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: core/commercial_google_apps_login.php:153
|
85 |
+
msgid ""
|
86 |
+
"Please read the <a href=\"%s\" target=\"gainstr\">instructions here</a> "
|
87 |
+
"first."
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: core/commercial_google_apps_login.php:158
|
91 |
+
msgid "My Google Apps domain"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: core/commercial_google_apps_login.php:163
|
95 |
+
msgid "Auto-create new users on my domain"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: core/commercial_google_apps_login.php:167
|
99 |
+
msgid "Default role for new users"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: core/commercial_google_apps_login.php:175
|
103 |
+
msgid "Disable WordPress username/password login for my domain"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: core/commercial_google_apps_login.php:180
|
107 |
+
msgid "Completely hide WordPress username and password boxes"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: core/commercial_google_apps_login.php:185
|
111 |
+
msgid ""
|
112 |
+
"Tick the last two with caution - leave unchecked until you are confident "
|
113 |
+
"Google Login is working for your own admin account"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: core/commercial_google_apps_login.php:207
|
117 |
+
msgid ""
|
118 |
+
"You should have received a license key when you purchased the premium "
|
119 |
+
"version of Google Apps Login."
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: core/commercial_google_apps_login.php:209
|
123 |
+
msgid ""
|
124 |
+
"Please enter it below to enable automatic updates, or <a href=\"mailto:"
|
125 |
+
"contact@wp-glogin.com\">email us</a> if you do not have one."
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: core/commercial_google_apps_login.php:213
|
129 |
+
msgid "License Key"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: core/commercial_google_apps_login.php:272
|
133 |
+
msgid ""
|
134 |
+
"Domain name should be a space-separated list of valid domains, in lowercase "
|
135 |
+
"letters (or blank)"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: core/commercial_google_apps_login.php:273
|
139 |
+
msgid "License key is too short"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: core/commercial_google_apps_login.php:274
|
143 |
+
msgid "License key failed to activate"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: core/commercial_google_apps_login.php:275
|
147 |
+
msgid "Group names must be valid email addresses"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: core/core_google_apps_login.php:163
|
151 |
+
msgid "Redirecting to <a href=\"%s\">Login via Google</a>..."
|
152 |
+
msgstr "Doorsturen naar <a href=\"%s\">Google</a>..."
|
153 |
+
|
154 |
+
#: core/core_google_apps_login.php:173
|
155 |
+
msgid "Login with Google"
|
156 |
+
msgstr "Inloggen via Google"
|
157 |
+
|
158 |
+
#: core/core_google_apps_login.php:177
|
159 |
+
msgid "Powered by "
|
160 |
+
msgstr "Mogelijk gemaakt door"
|
161 |
+
|
162 |
+
#: core/core_google_apps_login.php:191
|
163 |
+
msgid "or"
|
164 |
+
msgstr " "
|
165 |
+
|
166 |
+
#: core/core_google_apps_login.php:223
|
167 |
+
msgid "You did not grant access"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: core/core_google_apps_login.php:245
|
171 |
+
msgid ""
|
172 |
+
"Session mismatch - try again, but there could be a problem setting state"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: core/core_google_apps_login.php:251
|
176 |
+
msgid ""
|
177 |
+
"Session mismatch - try again, but there could be a problem passing state"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: core/core_google_apps_login.php:258
|
181 |
+
msgid ""
|
182 |
+
"Session mismatch - try again, but there could be a problem setting cookies"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: core/core_google_apps_login.php:287
|
186 |
+
msgid "Email needs to be verified on your Google Account"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: core/core_google_apps_login.php:308
|
190 |
+
msgid "User authenticated OK, but error fetching user details from Google"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: core/core_google_apps_login.php:327
|
194 |
+
msgid "User %s not registered in Wordpress"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: core/core_google_apps_login.php:412
|
198 |
+
msgid ""
|
199 |
+
"You will need to complete Google Apps Login <a href=\"%s\">Settings</a> in "
|
200 |
+
"order for the plugin to work"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: core/core_google_apps_login.php:444 core/core_google_apps_login.php:449
|
204 |
+
msgid "Google Apps Login settings"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: core/core_google_apps_login.php:444 core/core_google_apps_login.php:449
|
208 |
+
msgid "Google Apps Login"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: core/core_google_apps_login.php:469
|
212 |
+
msgid "Google Apps Login setup"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: core/core_google_apps_login.php:475
|
216 |
+
msgid ""
|
217 |
+
"To set up your website to enable Google logins, you will need to follow "
|
218 |
+
"instructions specific to your website."
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: core/core_google_apps_login.php:478
|
222 |
+
msgid "Click here to open your personalized instructions in a new window"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: core/core_google_apps_login.php:504
|
226 |
+
msgid "Save Changes"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: core/core_google_apps_login.php:533
|
230 |
+
msgid "Settings saved."
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: core/core_google_apps_login.php:560
|
234 |
+
msgid ""
|
235 |
+
"The <a href='%s'>instructions</a> above will guide you to Google's Cloud "
|
236 |
+
"Console where you will enter two URLs, and also obtain two codes (Client ID "
|
237 |
+
"and Client Secret) which you will need to enter in the boxes below."
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: core/core_google_apps_login.php:565
|
241 |
+
msgid "Client ID"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: core/core_google_apps_login.php:568 core/core_google_apps_login.php:574
|
245 |
+
msgid "Normally something like %s"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: core/core_google_apps_login.php:571
|
249 |
+
msgid "Client Secret"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: core/core_google_apps_login.php:591
|
253 |
+
msgid ""
|
254 |
+
"Once you have the plugin working, you can try these settings to customize "
|
255 |
+
"the login flow for your users."
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: core/core_google_apps_login.php:592
|
259 |
+
msgid "See <a href=\"%s\" target=\"gainstr\">instructions here</a>."
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: core/core_google_apps_login.php:600
|
263 |
+
msgid "Force user to confirm Google permissions every time"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: core/core_google_apps_login.php:608
|
267 |
+
msgid "Automatically redirect to Google from login page"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: core/core_google_apps_login.php:616
|
271 |
+
msgid "Display 'Powered By wp-glogin.com' on Login form"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: core/core_google_apps_login.php:622
|
275 |
+
msgid "Multisite Options"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: core/core_google_apps_login.php:623
|
279 |
+
msgid ""
|
280 |
+
"This setting is for multisite admins only. See <a href=\"%s\" target="
|
281 |
+
"\"gainstr\">instructions here</a>."
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: core/core_google_apps_login.php:628
|
285 |
+
msgid "Use sub-site specific callback from Google"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: core/core_google_apps_login.php:632
|
289 |
+
msgid "Leave unchecked if in doubt"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: core/core_google_apps_login.php:669
|
293 |
+
msgid "The Client ID should be longer than that"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: core/core_google_apps_login.php:670
|
297 |
+
msgid "The Client Secret should be longer than that"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: core/core_google_apps_login.php:675
|
301 |
+
msgid "Unspecified error"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: core/core_google_apps_login.php:772
|
305 |
+
msgid "Settings"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: enterprise_google_apps_login.php:211
|
309 |
+
msgid "Default role"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: enterprise_google_apps_login.php:219
|
313 |
+
msgid "Check and reset roles on every login"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: enterprise_google_apps_login.php:318
|
317 |
+
msgid "There are no logs to view."
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
# wordpress plugin description
|
321 |
+
msgid ""
|
322 |
+
"Simple secure login for Wordpress through users' Google Apps accounts (uses "
|
323 |
+
"secure OAuth2, and MFA if enabled)"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
# wordpress plugin description
|
327 |
+
msgid ""
|
328 |
+
"Simple secure login and user management for Wordpress through your Google "
|
329 |
+
"Apps domain (uses secure OAuth2, and MFA if enabled)"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
# wordpress plugin description
|
333 |
+
msgid "Google Apps Login Premium"
|
334 |
+
msgstr ""
|
lang/google-apps-login-sv_SE.mo
ADDED
Binary file
|
lang/google-apps-login-sv_SE.po
ADDED
@@ -0,0 +1,382 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014
|
2 |
+
# This file is distributed under the same license as the package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: \n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/googleappslogin\n"
|
7 |
+
"POT-Creation-Date: 2015-10-27 22:58+0100\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2015-10-31 12:48+0100\n"
|
12 |
+
"Language-Team: \n"
|
13 |
+
"X-Generator: Poedit 1.8.6\n"
|
14 |
+
"Last-Translator: \n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"Language: sv_SE\n"
|
17 |
+
|
18 |
+
#: basic_google_apps_login.php:47
|
19 |
+
msgid ""
|
20 |
+
"For full support, and premium features that greatly simplify WordPress user "
|
21 |
+
"management for admins, please visit:"
|
22 |
+
msgstr ""
|
23 |
+
"För full support och utökad funktion av hantering av användarkonton besök: "
|
24 |
+
|
25 |
+
#: basic_google_apps_login.php:80
|
26 |
+
msgid ""
|
27 |
+
"The Domain Control section is only applicable to the premium version of this "
|
28 |
+
"plugin."
|
29 |
+
msgstr ""
|
30 |
+
"Domänkontrollen är endast tillgänglig i premiumversionen av detta tillägg."
|
31 |
+
|
32 |
+
#: basic_google_apps_login.php:82
|
33 |
+
msgid ""
|
34 |
+
"In this basic version of the plugin, any <i>existing</i> WordPress account "
|
35 |
+
"corresponding to a Google email address can authenticate via Google."
|
36 |
+
msgstr ""
|
37 |
+
"I denna grundversion av Glogin kan alla <i>existerande</i> Wordpresskonton "
|
38 |
+
"med matchande Google-mejl autentisera sig via Google"
|
39 |
+
|
40 |
+
#: basic_google_apps_login.php:132
|
41 |
+
msgid ""
|
42 |
+
"Completely forget about WordPress user management - upgrade to <a href=\"%s"
|
43 |
+
"\">Google Apps Login premium</a> to automatically sync users from your "
|
44 |
+
"Google Apps domain"
|
45 |
+
msgstr ""
|
46 |
+
"Strunta helt i Wordpressanvändarhantering - uppgradera till <a href=\"%s"
|
47 |
+
"\">Google Apps Login premium</a> för att automatiskt synkronisera användare "
|
48 |
+
"från din Google Apps domän "
|
49 |
+
|
50 |
+
#: basic_google_apps_login.php:134
|
51 |
+
msgid "Purchase"
|
52 |
+
msgstr "Köp"
|
53 |
+
|
54 |
+
#: basic_google_apps_login.php:135
|
55 |
+
msgid "No Thanks"
|
56 |
+
msgstr "Nej tack"
|
57 |
+
|
58 |
+
#: core/commercial_google_apps_login.php:43
|
59 |
+
msgid "User with email address %s must use Login with Google"
|
60 |
+
msgstr "Användare med e-postadress %s måste använda Google-inloggning"
|
61 |
+
|
62 |
+
#: core/commercial_google_apps_login.php:71
|
63 |
+
msgid "User %s does not exist"
|
64 |
+
msgstr "Användare %s finns inte"
|
65 |
+
|
66 |
+
#: core/commercial_google_apps_login.php:80
|
67 |
+
msgid "Invalid email address"
|
68 |
+
msgstr "Ogiltig e-postadress"
|
69 |
+
|
70 |
+
#: core/commercial_google_apps_login.php:88
|
71 |
+
msgid "Email address needs to be in %s."
|
72 |
+
msgstr "E-postadressen måste vara i %s."
|
73 |
+
|
74 |
+
#: core/commercial_google_apps_login.php:91
|
75 |
+
msgid ""
|
76 |
+
"%s not authorized - <a href=\"https://accounts.google.com/Logout\" target="
|
77 |
+
"\"_blank\">Sign out of Google</a> to switch accounts"
|
78 |
+
msgstr ""
|
79 |
+
"%s är inte gilltigt - <a href=\"https://accounts.google.com/Logout\" target="
|
80 |
+
"\"_blank\">Logga ut från Google</a> för att byta konto"
|
81 |
+
|
82 |
+
#: core/commercial_google_apps_login.php:149
|
83 |
+
msgid ""
|
84 |
+
"By default, any existing account can authenticate either via Google (if a "
|
85 |
+
"Gmail/Google Apps account), or by WordPress username/password."
|
86 |
+
msgstr ""
|
87 |
+
"Som standard kan alla konton autentiseras antingen via Google (Gmail/Google "
|
88 |
+
"Apps konto) eller med ett Wordpresskonto"
|
89 |
+
|
90 |
+
#: core/commercial_google_apps_login.php:151
|
91 |
+
msgid ""
|
92 |
+
"To allow special behaviour on your Google Apps domain (auto-create users who "
|
93 |
+
"don't yet exist, or disable regular WordPress username/password access for "
|
94 |
+
"your users), fill in the following section."
|
95 |
+
msgstr ""
|
96 |
+
"För att tillåta särskilda egenskaper på din Google Apps domän (autoskapa "
|
97 |
+
"användare som ännu inte finns, eller inaktivera inloggning med Wordpress "
|
98 |
+
"konton), fyll i följande avsnitt."
|
99 |
+
|
100 |
+
#: core/commercial_google_apps_login.php:153
|
101 |
+
msgid ""
|
102 |
+
"Please read the <a href=\"%s\" target=\"gainstr\">instructions here</a> "
|
103 |
+
"first."
|
104 |
+
msgstr "Läs <a href=\"%s\" target=\"gainstr\">instruktionerna här</a> först."
|
105 |
+
|
106 |
+
#: core/commercial_google_apps_login.php:158
|
107 |
+
msgid "My Google Apps domain"
|
108 |
+
msgstr "Min Google Apps domän"
|
109 |
+
|
110 |
+
#: core/commercial_google_apps_login.php:163
|
111 |
+
msgid "Auto-create new users on my domain"
|
112 |
+
msgstr "Skapa användare automatiskt i min domän"
|
113 |
+
|
114 |
+
#: core/commercial_google_apps_login.php:167
|
115 |
+
msgid "Default role for new users"
|
116 |
+
msgstr "Standardroll för nya användare"
|
117 |
+
|
118 |
+
#: core/commercial_google_apps_login.php:175
|
119 |
+
msgid "Disable WordPress username/password login for my domain"
|
120 |
+
msgstr "Inaktivera inloggning av Wordpresskonton för min domän"
|
121 |
+
|
122 |
+
#: core/commercial_google_apps_login.php:180
|
123 |
+
msgid "Completely hide WordPress username and password boxes"
|
124 |
+
msgstr "Dölj Wordpressinloggningen"
|
125 |
+
|
126 |
+
#: core/commercial_google_apps_login.php:185
|
127 |
+
msgid ""
|
128 |
+
"Tick the last two with caution - leave unchecked until you are confident "
|
129 |
+
"Google Login is working for your own admin account"
|
130 |
+
msgstr ""
|
131 |
+
"Innan du kryssar i de två sista rutorna måste du vara helt säker på att "
|
132 |
+
"Googleinloggningen fungerar för ditt administratörskonto"
|
133 |
+
|
134 |
+
#: core/commercial_google_apps_login.php:207
|
135 |
+
msgid ""
|
136 |
+
"You should have received a license key when you purchased the premium "
|
137 |
+
"version of Google Apps Login."
|
138 |
+
msgstr ""
|
139 |
+
"Du bör ha fått en licensnyckel när du köpte premiumversionen av Google Apps "
|
140 |
+
"Login"
|
141 |
+
|
142 |
+
#: core/commercial_google_apps_login.php:209
|
143 |
+
msgid ""
|
144 |
+
"Please enter it below to enable automatic updates, or <a href=\"mailto:"
|
145 |
+
"contact@wp-glogin.com\">email us</a> if you do not have one."
|
146 |
+
msgstr ""
|
147 |
+
"För att aktivera automatiskuppdatering fyll i det nedan eller <a href="
|
148 |
+
"\"mailto:contact@wp-glogin.com\"> mejla oss </a> om du inte har något."
|
149 |
+
|
150 |
+
#: core/commercial_google_apps_login.php:213
|
151 |
+
msgid "License Key"
|
152 |
+
msgstr "Licensenyckel"
|
153 |
+
|
154 |
+
#: core/commercial_google_apps_login.php:272
|
155 |
+
msgid ""
|
156 |
+
"Domain name should be a space-separated list of valid domains, in lowercase "
|
157 |
+
"letters (or blank)"
|
158 |
+
msgstr ""
|
159 |
+
"Domännamnen måste vara i en mellanslagsseparerad lista innehållande giltiga "
|
160 |
+
"domäner skrivna med gemener. Kan även vara blankt"
|
161 |
+
|
162 |
+
#: core/commercial_google_apps_login.php:273
|
163 |
+
msgid "License key is too short"
|
164 |
+
msgstr "Licensnyckeln är för kort"
|
165 |
+
|
166 |
+
#: core/commercial_google_apps_login.php:274
|
167 |
+
msgid "License key failed to activate"
|
168 |
+
msgstr "Aktiveringen av licensnyckeln misslyckades"
|
169 |
+
|
170 |
+
#: core/commercial_google_apps_login.php:275
|
171 |
+
msgid "Group names must be valid email addresses"
|
172 |
+
msgstr "Gruppnamn måste vara en giltiga e-postadresser"
|
173 |
+
|
174 |
+
#: core/core_google_apps_login.php:163
|
175 |
+
msgid "Redirecting to <a href=\"%s\">Login via Google</a>..."
|
176 |
+
msgstr "Peka om till <a href=\"%s\">Logga in via Google</a>..."
|
177 |
+
|
178 |
+
#: core/core_google_apps_login.php:173
|
179 |
+
msgid "Login with Google"
|
180 |
+
msgstr "Logga in med Google"
|
181 |
+
|
182 |
+
#: core/core_google_apps_login.php:177
|
183 |
+
msgid "Powered by "
|
184 |
+
msgstr "Drivs av"
|
185 |
+
|
186 |
+
#: core/core_google_apps_login.php:191
|
187 |
+
msgid "or"
|
188 |
+
msgstr "eller"
|
189 |
+
|
190 |
+
#: core/core_google_apps_login.php:223
|
191 |
+
msgid "You did not grant access"
|
192 |
+
msgstr "Du har inte godkänt åtkomsten"
|
193 |
+
|
194 |
+
#: core/core_google_apps_login.php:245
|
195 |
+
msgid ""
|
196 |
+
"Session mismatch - try again, but there could be a problem setting state"
|
197 |
+
msgstr ""
|
198 |
+
"Sessionsfel (session mismatch) - försök igen men det kan vara problem med "
|
199 |
+
"inställningarna i \"setting state\""
|
200 |
+
|
201 |
+
#: core/core_google_apps_login.php:251
|
202 |
+
msgid ""
|
203 |
+
"Session mismatch - try again, but there could be a problem passing state"
|
204 |
+
msgstr ""
|
205 |
+
"Sessionsfel (session mismatch) - försök igen men det kan vara problem med "
|
206 |
+
"inställningarna i \"passing state\""
|
207 |
+
|
208 |
+
#: core/core_google_apps_login.php:258
|
209 |
+
msgid ""
|
210 |
+
"Session mismatch - try again, but there could be a problem setting cookies"
|
211 |
+
msgstr ""
|
212 |
+
"Sessionsfel (session mismatch) - försök igen men det kan vara problem med "
|
213 |
+
"cookies inställningarna"
|
214 |
+
|
215 |
+
#: core/core_google_apps_login.php:287
|
216 |
+
msgid "Email needs to be verified on your Google Account"
|
217 |
+
msgstr "Mejlet måste verifieras på ditt Googlekonto"
|
218 |
+
|
219 |
+
#: core/core_google_apps_login.php:308
|
220 |
+
msgid "User authenticated OK, but error fetching user details from Google"
|
221 |
+
msgstr ""
|
222 |
+
"Användarautentisering lyckades, men hämtningen av användaruppgifter från "
|
223 |
+
"Google misslyckades"
|
224 |
+
|
225 |
+
#: core/core_google_apps_login.php:327
|
226 |
+
msgid "User %s not registered in Wordpress"
|
227 |
+
msgstr "Användaren %s är inte registrerad i Wordpress"
|
228 |
+
|
229 |
+
#: core/core_google_apps_login.php:412
|
230 |
+
msgid ""
|
231 |
+
"You will need to complete Google Apps Login <a href=\"%s\">Settings</a> in "
|
232 |
+
"order for the plugin to work"
|
233 |
+
msgstr ""
|
234 |
+
"Du måste göra klart konfigurationen av Google Apps Login <a href=\"%s"
|
235 |
+
"\">Inställningar</a> för att applikationen ska fungera"
|
236 |
+
|
237 |
+
#: core/core_google_apps_login.php:444 core/core_google_apps_login.php:449
|
238 |
+
msgid "Google Apps Login settings"
|
239 |
+
msgstr "Inställningar Google Apps Login"
|
240 |
+
|
241 |
+
#: core/core_google_apps_login.php:444 core/core_google_apps_login.php:449
|
242 |
+
msgid "Google Apps Login"
|
243 |
+
msgstr "Google Apps Login"
|
244 |
+
|
245 |
+
#: core/core_google_apps_login.php:469
|
246 |
+
msgid "Google Apps Login setup"
|
247 |
+
msgstr "Konfiguration av Google Apps Login"
|
248 |
+
|
249 |
+
#: core/core_google_apps_login.php:475
|
250 |
+
msgid ""
|
251 |
+
"To set up your website to enable Google logins, you will need to follow "
|
252 |
+
"instructions specific to your website."
|
253 |
+
msgstr ""
|
254 |
+
"För att förbereda din hemsida för aktivering av Google-inloggning måste du "
|
255 |
+
"följa dina hemsidespecifika instruktioner."
|
256 |
+
|
257 |
+
#: core/core_google_apps_login.php:478
|
258 |
+
msgid "Click here to open your personalized instructions in a new window"
|
259 |
+
msgstr ""
|
260 |
+
"Klicka här för att öppna dina personliga instruktioner i ett nytt fönster"
|
261 |
+
|
262 |
+
#: core/core_google_apps_login.php:504
|
263 |
+
msgid "Save Changes"
|
264 |
+
msgstr "Spara ändringar"
|
265 |
+
|
266 |
+
#: core/core_google_apps_login.php:533
|
267 |
+
msgid "Settings saved."
|
268 |
+
msgstr "Inställningar sparade"
|
269 |
+
|
270 |
+
#: core/core_google_apps_login.php:560
|
271 |
+
msgid ""
|
272 |
+
"The <a href='%s'>instructions</a> above will guide you to Google's Cloud "
|
273 |
+
"Console where you will enter two URLs, and also obtain two codes (Client ID "
|
274 |
+
"and Client Secret) which you will need to enter in the boxes below."
|
275 |
+
msgstr ""
|
276 |
+
"Ovanstående <a href='%s'>instruktioner</a>tar dig till Google's molnkonsol "
|
277 |
+
"\"Cloud Console\" där du ska fylla i 2 st URL:er och få 2 st koder (Klient-"
|
278 |
+
"ID (Client ID och Klienthemlighet (Client Secret) som fylls i nedan."
|
279 |
+
|
280 |
+
#: core/core_google_apps_login.php:565
|
281 |
+
msgid "Client ID"
|
282 |
+
msgstr "Klient-ID \"Client ID\""
|
283 |
+
|
284 |
+
#: core/core_google_apps_login.php:568 core/core_google_apps_login.php:574
|
285 |
+
msgid "Normally something like %s"
|
286 |
+
msgstr "Liknar normalt %s"
|
287 |
+
|
288 |
+
#: core/core_google_apps_login.php:571
|
289 |
+
msgid "Client Secret"
|
290 |
+
msgstr "Klienthemlighet \"Client Secret\""
|
291 |
+
|
292 |
+
#: core/core_google_apps_login.php:591
|
293 |
+
msgid ""
|
294 |
+
"Once you have the plugin working, you can try these settings to customize "
|
295 |
+
"the login flow for your users."
|
296 |
+
msgstr ""
|
297 |
+
"När Glogin är aktiverad och fungerande, kan du pröva dessa inställningar för "
|
298 |
+
"att anpassa inloggningen för dina användare"
|
299 |
+
|
300 |
+
#: core/core_google_apps_login.php:592
|
301 |
+
msgid "See <a href=\"%s\" target=\"gainstr\">instructions here</a>."
|
302 |
+
msgstr "Se <a href=\"%s\" target=\"gainstr\">instruktioner här</a>."
|
303 |
+
|
304 |
+
#: core/core_google_apps_login.php:600
|
305 |
+
msgid "Force user to confirm Google permissions every time"
|
306 |
+
msgstr "Tvinga användarna att godkänna Google's åtkomst varje gång"
|
307 |
+
|
308 |
+
#: core/core_google_apps_login.php:608
|
309 |
+
msgid "Automatically redirect to Google from login page"
|
310 |
+
msgstr "Från inloggningssidan peka om till Google automatiskt"
|
311 |
+
|
312 |
+
#: core/core_google_apps_login.php:616
|
313 |
+
msgid "Display 'Powered By wp-glogin.com' on Login form"
|
314 |
+
msgstr "Visa 'Drivs av wp-glogin.com' på inloggningssidan"
|
315 |
+
|
316 |
+
#: core/core_google_apps_login.php:622
|
317 |
+
msgid "Multisite Options"
|
318 |
+
msgstr "Inställningar för multisite"
|
319 |
+
|
320 |
+
#: core/core_google_apps_login.php:623
|
321 |
+
msgid ""
|
322 |
+
"This setting is for multisite admins only. See <a href=\"%s\" target="
|
323 |
+
"\"gainstr\">instructions here</a>."
|
324 |
+
msgstr ""
|
325 |
+
"Dessa inställningar är endast för multisitesadministratörer. Se <a href=\"%s"
|
326 |
+
"\" target=\"gainstr\">instruktioner här</a>."
|
327 |
+
|
328 |
+
#: core/core_google_apps_login.php:628
|
329 |
+
msgid "Use sub-site specific callback from Google"
|
330 |
+
msgstr "Använd subdomänspecifik tillbakaringning \"callback\" från Google"
|
331 |
+
|
332 |
+
#: core/core_google_apps_login.php:632
|
333 |
+
msgid "Leave unchecked if in doubt"
|
334 |
+
msgstr "Kryssa ej i om du är osäker"
|
335 |
+
|
336 |
+
#: core/core_google_apps_login.php:669
|
337 |
+
msgid "The Client ID should be longer than that"
|
338 |
+
msgstr "Klient-ID bör vara längre än så"
|
339 |
+
|
340 |
+
#: core/core_google_apps_login.php:670
|
341 |
+
msgid "The Client Secret should be longer than that"
|
342 |
+
msgstr "Klienthemligheten bör vara längre än så"
|
343 |
+
|
344 |
+
#: core/core_google_apps_login.php:675
|
345 |
+
msgid "Unspecified error"
|
346 |
+
msgstr "Ospecificerat fel"
|
347 |
+
|
348 |
+
#: core/core_google_apps_login.php:772
|
349 |
+
msgid "Settings"
|
350 |
+
msgstr "Inställningar"
|
351 |
+
|
352 |
+
#: enterprise_google_apps_login.php:211
|
353 |
+
msgid "Default role"
|
354 |
+
msgstr "Standardroll"
|
355 |
+
|
356 |
+
#: enterprise_google_apps_login.php:219
|
357 |
+
msgid "Check and reset roles on every login"
|
358 |
+
msgstr "Kontrollera och återställ roller vid varje inloggning"
|
359 |
+
|
360 |
+
#: enterprise_google_apps_login.php:318
|
361 |
+
msgid "There are no logs to view."
|
362 |
+
msgstr "Det finns inga loggar att visa."
|
363 |
+
|
364 |
+
# wordpress plugin description
|
365 |
+
msgid ""
|
366 |
+
"Simple secure login for Wordpress through users' Google Apps accounts (uses "
|
367 |
+
"secure OAuth2, and MFA if enabled)"
|
368 |
+
msgstr ""
|
369 |
+
"Enkel och säker inloggning för Wordpress med användarnas Google Apps "
|
370 |
+
"(använder säker OAuth2 och MFA om aktiverat)"
|
371 |
+
|
372 |
+
# wordpress plugin description
|
373 |
+
msgid ""
|
374 |
+
"Simple secure login and user management for Wordpress through your Google "
|
375 |
+
"Apps domain (uses secure OAuth2, and MFA if enabled)"
|
376 |
+
msgstr ""
|
377 |
+
"Enkel och säker inloggning samt användarhantering för Wordpress med din "
|
378 |
+
"Google Apps domän (använder säker OAuth2 och MFA om aktiverat)"
|
379 |
+
|
380 |
+
# wordpress plugin description
|
381 |
+
msgid "Google Apps Login Premium"
|
382 |
+
msgstr "Google Apps Login premium"
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: danlester
|
|
3 |
Tags: login, google, authentication, oauth2, oauth, google login, google apps, sso, single-sign-on, auth, intranet
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.3
|
6 |
-
Stable tag: 2.8.
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -74,6 +74,9 @@ This plugin currently operates in the following languages:
|
|
74 |
* Serbo-Croatian (sr_RS) - translated by Borisa Djuraskovic of [Web Hosting Hub](http://www.webhostinghub.com/)
|
75 |
* Arabic (ar_SA) - translated by [Jeremy Varnham](http://profiles.wordpress.org/jvarn13)
|
76 |
* Ukrainian (uk_UA) - translated by Serj Kondrashov
|
|
|
|
|
|
|
77 |
|
78 |
We are looking for volunteers to translate into their own language. If you would like to contribute a translation, please
|
79 |
use the template POT file in the 'lang' folder, then email PO and MO files to contact@wp-glogin.com.
|
@@ -226,6 +229,10 @@ please [click here](http://wp-glogin.com/installing-google-apps-login/basic-setu
|
|
226 |
|
227 |
== Changelog ==
|
228 |
|
|
|
|
|
|
|
|
|
229 |
= 2.8.11 =
|
230 |
|
231 |
Service Account Client ID is imported from JSON key file so user can copy and paste it into admin.google.com
|
3 |
Tags: login, google, authentication, oauth2, oauth, google login, google apps, sso, single-sign-on, auth, intranet
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.3
|
6 |
+
Stable tag: 2.8.12
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
74 |
* Serbo-Croatian (sr_RS) - translated by Borisa Djuraskovic of [Web Hosting Hub](http://www.webhostinghub.com/)
|
75 |
* Arabic (ar_SA) - translated by [Jeremy Varnham](http://profiles.wordpress.org/jvarn13)
|
76 |
* Ukrainian (uk_UA) - translated by Serj Kondrashov
|
77 |
+
* Dutch (nl_NL) - translated by Noell Taravati of [Peppix](http://www.peppix.nl/)
|
78 |
+
* Swedish (sv_SE) - translated by Johan Linde of [S/Y ELLEN](http://syellen.se/)
|
79 |
+
* Italian (it_IT) translated by Giorgio Draghetti of [tipinoncomuni](http://tipinoncomuni.it/)
|
80 |
|
81 |
We are looking for volunteers to translate into their own language. If you would like to contribute a translation, please
|
82 |
use the template POT file in the 'lang' folder, then email PO and MO files to contact@wp-glogin.com.
|
229 |
|
230 |
== Changelog ==
|
231 |
|
232 |
+
= 2.8.12 =
|
233 |
+
|
234 |
+
Opportunity to sign up for emails on Google Apps and WordPress, from settings page.
|
235 |
+
|
236 |
= 2.8.11 =
|
237 |
|
238 |
Service Account Client ID is imported from JSON key file so user can copy and paste it into admin.google.com
|