You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$message = '<p>' . __( 'Random User IDs plugin has been successfully activated.', 'dfx-random-user-id' ) . '</p>';
105
+
$message = '<p>' . __( 'Random User IDs plugin has been successfully activated.', 'random-user-ids' ) . '</p>';
102
106
103
107
if ( ! $first_user_new_id ) {
104
-
$message .= '<p>' . __( 'There was no user with ID=1 already, so no user ID has been randomized.', 'dfx-random-user-id' ) . '</p>';
108
+
$message .= '<p>' . __( 'There was no user with ID=1 already, so no user ID has been randomized.', 'random-user-ids' ) . '</p>';
105
109
} else {
106
110
107
111
$admin_user = get_userdata( $first_user_new_id );
108
112
109
-
$message .= sprintf( '<p>' . __( 'The ID for user `%s` has been moved from 1 to %d.', 'dfx-random-user-id' ) . '</p>', $admin_user->nickname, $first_user_new_id );
113
+
$message .= sprintf( '<p>' . __( 'The ID for user `%s` has been moved from 1 to %d.', 'random-user-ids' ) . '</p>', $admin_user->nickname, $first_user_new_id );
110
114
111
-
$message .= '<p>' . __( 'This plugin is designed to better being activated in first place, before any other plugin or theme', 'dfx-random-user-id' ) . '</p>';
115
+
$message .= '<p>' . __( 'This plugin is designed to better being activated in first place, before any other plugin or theme', 'random-user-ids' ) . '</p>';
112
116
113
-
$message .= '<p>' . sprintf( __( 'If there are any previously installed theme or plugin that added tables to the database, you should check if any field in these tables includes user_ids, and manually replace all the rows referencing user_id 1 with the new user_id %d', 'dfx-random-user-id' ), $first_user_new_id ) . '</p>';
117
+
$message .= '<p>' . sprintf( __( 'If there are any previously installed theme or plugin that added tables to the database, you should check if any field in these tables includes user_ids, and manually replace all the rows referencing user_id 1 with the new user_id %d', 'random-user-ids' ), $first_user_new_id ) . '</p>';
# Translation of Plugins - Random User IDs - Stable (latest release) in Spanish (Spain)
2
+
# This file is distributed under the same license as the Plugins - Random User IDs - Stable (latest release) package.
3
+
msgid ""
4
+
msgstr ""
5
+
"PO-Revision-Date: +0000\n"
6
+
"MIME-Version: 1.0\n"
7
+
"Content-Type: text/plain; charset=UTF-8\n"
8
+
"Content-Transfer-Encoding: 8bit\n"
9
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+
"X-Generator: GlotPress/2.4.0-alpha\n"
11
+
"Language: es\n"
12
+
"Project-Id-Version: Plugins - Random User IDs - Stable (latest release)\n"
13
+
14
+
#. Author URI of the plugin/theme
15
+
msgid"https://davefx.com"
16
+
msgstr"https://davefx.com"
17
+
18
+
#. Author of the plugin/theme
19
+
msgid"David Marín Carreño (DaveFX)"
20
+
msgstr"David Marín Carreño (DaveFX)"
21
+
22
+
#. Description of the plugin/theme
23
+
msgid"Sets random user IDs for created users. Randomizes the user ID for the default user, if it exists."
24
+
msgstr"Establece IDs de usuario aleatorios para los usuarios que se creen. Aleatoriza el ID del usuario predeterminado, si existe."
25
+
26
+
#. Plugin URI of the plugin/theme
27
+
msgid"https://davefx.com/random-user-id"
28
+
msgstr"https://davefx.com/random-user-id"
29
+
30
+
#. Plugin Name of the plugin/theme
31
+
msgid"Random User IDs"
32
+
msgstr"IDs de usuario aleatorios"
33
+
34
+
#:dfx-random-user-id.php:120
35
+
msgid"Dismiss"
36
+
msgstr"Descartar"
37
+
38
+
#:dfx-random-user-id.php:113
39
+
msgid"If there are any previously installed theme or plugin that added tables to the database, you should check if any field in these tables includes user_ids, and manually replace all the rows referencing user_id 1 with the new user_id %d"
40
+
msgstr"Si hay algún tema o plugin instalado que añada tablas a la base de datos, deberías comprobar si algún campo de esas tablas incluye identificadores de usuario, y reemplazar manualmente todas las filas que hagan referencia al usuario con ID 1 con el nuevo ID de usuario %d"
41
+
42
+
#:dfx-random-user-id.php:111
43
+
msgid"This plugin is designed to better being activated in first place, before any other plugin or theme"
44
+
msgstr"Este plugin está diseñado para ser activado en primer lugar, antes que ningún otro plugin o tema."
45
+
46
+
#:dfx-random-user-id.php:109
47
+
msgid"The ID for user `%s` has been moved from 1 to %d."
48
+
msgstr"El ID de usuario `%s`se ha movido desde 1 hasta %d."
49
+
50
+
#:dfx-random-user-id.php:104
51
+
msgid"There was no user with ID=1 already, so no user ID has been randomized."
52
+
msgstr"No existía ningún usuario con ID=1, por lo que no se ha aleatorizado ningún ID de usuario."
53
+
54
+
#:dfx-random-user-id.php:101
55
+
msgid"Random User IDs plugin has been successfully activated."
56
+
msgstr"El plugin «IDs de usuario aleatorios» ha sido activado con éxito."
This WordPress plugin randomizes the user_id for the user created on WordPress setup,
12
-
removing one potential attack factor from the site.
11
+
This WordPress plugin randomizes the user_id for the user created on WordPress setup, removing one potential attack factor from the site.
12
+
13
+
It also randomizes the ID for all other users created after its setup. At this moment, this feature requires the patch from WP Issue https://core.trac.wordpress.org/ticket/40545
14
+
15
+
== Changelog ==
16
+
17
+
= 20170526 =
18
+
19
+
* Now the maximum generated ID is Javascript's MAX_SAFE_INTEGER / 2, so we shouldn't
20
+
generate problems with the Javascript layer
21
+
22
+
13
23
14
-
It also randomizes the ID for all other users created after its setup. At this moment,
15
-
this feature requires the patch from WP Issue https://core.trac.wordpress.org/ticket/40545
0 commit comments